/* =====================================================
   ALOUD — Landing Page Stylesheet (lp.css)
   Shared by screen-time.html, school-ready.html, gift.html
   Imports brand tokens from the same root as style.css
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #2F6FED;
  --orange: #E8822A;
  --navy:   #1C2B3A;
  --cream:  #FDF6EC;
  --teal:   #2A9D8F;
  --sand:   #F5EFE6;
  --text:   #1A2332;
  --muted:  #6B7A8D;
  --border: #E8DDD0;
  --white:  #FFFFFF;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(28,43,58,0.10);
  --shadow-lg: 0 12px 48px rgba(28,43,58,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(1.75rem, 5vw, 2.8rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.1rem, 3vw, 1.35rem); font-weight: 600; color: var(--muted); margin-bottom: 20px; line-height: 1.45; }
p  { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ─── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #d4741e;
  border-color: #d4741e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,130,42,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ─── LP HEADER ─────────────────────────────── */
.lp-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.lp-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-logo-img {
  height: 36px;
  width: auto;
}
.lp-logo-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.lp-header-cta {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ─── HERO ──────────────────────────────────── */
.lp-hero {
  padding: 52px 0 44px;
  text-align: center;
}
.lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ─── IMAGE ─────────────────────────────────── */
.lp-img-wrap {
  width: 100%;
  max-width: 560px;
  margin: 32px auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ─── BODY COPY ─────────────────────────────── */
.lp-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}

/* ─── CTA GROUP ─────────────────────────────── */
.lp-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lp-trust {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lp-trust::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* ─── FOOTER ────────────────────────────────── */
.lp-footer {
  margin-top: 64px;
  background: var(--navy);
  padding: 40px 0 0;
}
.lp-footer-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-footer-brand {}
.lp-footer-logo {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 8px;
  opacity: 0.88;
  margin-bottom: 10px;
}
.lp-footer-address {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}
.lp-footer-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 10px;
}
.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-links a:hover { color: var(--orange); }
.lp-footer-contact {}
.lp-footer-contact-item {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 6px;
}
.lp-footer-contact-item a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-contact-item a:hover { color: var(--orange); }
.lp-footer-bottom {
  text-align: center;
  padding: 14px 24px;
}
.lp-footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.lp-footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-bottom a:hover { color: var(--orange); }

@media (max-width: 600px) {
  .lp-footer-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── SOCIAL PROOF STRIP ────────────────────── */
.lp-proof {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px auto 0;
  max-width: 620px;
  text-align: center;
}
.lp-proof-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-stat {
  padding: 8px 28px;
  border-right: 1px solid var(--border);
}
.lp-stat:last-child { border-right: none; }
.lp-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.lp-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 600px) {
  .lp-hero { padding: 36px 0 32px; }
  .lp-img-wrap img { height: 240px; }
  .lp-ctas { flex-direction: column; align-items: center; }
  .lp-ctas .btn { width: 100%; max-width: 320px; }
  .lp-logo-tagline { display: none; }
  .lp-header-cta { display: none; }
  .lp-stat { padding: 8px 18px; }
  .lp-stat-num { font-size: 1.3rem; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 20px; }
}
