/* ============================================================
   ParentLead — Shared Stylesheet
   Company: K12 Assist LLC  |  help@parentlead.com
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #1B2B5E;
  --navy-dark:   #131F47;
  --gold:        #C4962B;
  --gold-light:  #E8C74A;
  --green:       #2E7D32;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --gray-50:     #F7F7F7;
  --gray-100:    #EFEFEF;
  --gray-300:    #D0D0D0;
  --gray-500:    #888888;
  --text:        #222222;
  --text-muted:  #666666;
  --border:      #E3E3E3;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.07);
  --shadow:      0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --max-w:       900px;
  --max-w-lg:    1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.18;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--gold); }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-lg {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-disabled {
  background: var(--gray-100);
  color: var(--gray-500);
  border-color: var(--gray-300);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.nav-logo-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-links .nav-cta a:hover { background: var(--navy-dark); color: var(--white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}
.footer-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-body { font-size: 1.1rem; color: var(--text-muted); max-width: 620px; margin-bottom: 28px; }
.hero-quote {
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  background: rgba(196,150,43,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-subcopy {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ── BANNER AD CARD ── */
.banner-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
  background: #b8c9a3; /* fallback color while image loads */
}
.banner-card-wrapper img.banner-bg {
  width: 100%;
  height: auto;
  display: block;
}
/* Green box overlay — adjust top/left to align with your image's green box */
.banner-text-overlay {
  position: absolute;
  /* ── EDITABLE: adjust these to align with the green box in the image ── */
  top: 40%;
  left: 37%;
  width: 53%;
  /* ────────────────────────────────────────────────────────────────────── */
  transform: translateY(-50%);
  text-align: center;
  padding: 10px 16px;
  pointer-events: none;
}
.banner-text-overlay .overlay-line1 {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  line-height: 1.3;
}
.banner-text-overlay .overlay-line2 {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  margin-top: 4px;
}

/* ── PROBLEM SECTION ── */
.section-problem { background: var(--white); }
.problem-bullets {
  list-style: none;
  margin: 24px 0 32px;
}
.problem-bullets li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
}
.problem-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1.4;
}
.callout-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.social-channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.channel-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.channel-item:last-child { border-bottom: none; }
.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.channel-icon.fb  { background: #1877F2; color: #fff; }
.channel-icon.ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.channel-icon.g   { background: var(--white); color: #4285F4; border: 1px solid var(--border); font-size: 1.1rem; }
.channel-content h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.channel-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ── HOW IT WORKS ── */
.section-how { background: var(--cream); }
.how-steps { display: flex; flex-direction: column; gap: 72px; margin-top: 56px; }
.how-step { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.how-step-image {
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.how-step-image img { width: 100%; height: auto; }
.how-step-text { max-width: 600px; text-align: center; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.how-step-text h3 { color: var(--gold); margin-bottom: 8px; }
.how-step-text p { color: var(--text-muted); font-size: 1rem; }

/* ── STATS SECTION ── */
.section-stats { background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
}
.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.stat-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── WEBINAR CTA ── */
.section-webinar {
  background: var(--cream);
  text-align: center;
  padding: 60px 24px;
}
.webinar-eyebrow {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.webinar-eyebrow span { color: var(--navy); }
.webinar-headline {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 24px;
}

/* ── ROLEPLAY SECTION ── */
.section-roleplay { background: var(--white); }
.roleplay-steps { display: flex; flex-direction: column; gap: 60px; margin-top: 48px; }
.roleplay-step { }
.roleplay-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.roleplay-step h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.roleplay-step p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.98rem; }
.roleplay-visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 620px;
}

/* ── SMS MOCKUP ── */
.sms-mockup {
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}
.sms-header {
  background: var(--white);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sms-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.sms-header-info { display: flex; flex-direction: column; }
.sms-header-number { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.sms-header-label { font-size: 0.75rem; color: var(--text-muted); }
.sms-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 160px; }
.sms-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.sms-bubble.incoming {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.sms-bubble.outgoing {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.sms-bubble.system {
  background: rgba(196,150,43,0.1);
  color: var(--text-muted);
  border: 1px solid rgba(196,150,43,0.25);
  border-radius: 10px;
  font-size: 0.82rem;
  align-self: center;
  text-align: center;
  max-width: 90%;
  padding: 8px 14px;
}
.sms-sender {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 3px;
  display: block;
}

/* Group text header */
.group-header {
  background: var(--white);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.group-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.group-subtitle { font-size: 0.75rem; color: var(--text-muted); }

/* ── BANNER CARD (hero + roleplay step 1) ── */
.banner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 480px;
}
.banner-card-eyebrow {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.banner-card h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
}
.banner-card-action {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
/* ── EDITABLE: phone number & keyword below ── */
.banner-card-keyword {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.banner-card-number {
  font-size: 0.95rem;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}
/* ─────────────────────────────────────────── */
.banner-card-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.banner-card-bullets li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.banner-card-bullets li span { line-height: 1.5; }
.banner-card-fine {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── HERO WITH IMAGE BACKGROUND ── */
.hero-with-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
}
.hero-with-image img { width: 100%; height: auto; display: block; }
.hero-image-card-overlay {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 52%;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.hero-image-card-overlay .card-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hero-image-card-overlay h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.3;
}
.hero-green-box {
  background: var(--green);
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  margin-bottom: 14px;
}
/* ── EDITABLE keyword/number in hero image card ── */
.hero-green-box .keyword {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-green-box .phone {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  margin-top: 3px;
}
/* ─────────────────────────────────────────────── */
.hero-image-card-overlay .mini-bullets { list-style: none; margin-bottom: 10px; }
.hero-image-card-overlay .mini-bullets li {
  font-size: 0.75rem;
  padding: 4px 0;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
}
.hero-image-card-overlay .fine-print {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── REPORTS TABLE (How It Works Step 4) ── */
.reports-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}
.reports-card h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.reports-table { width: 100%; border-collapse: collapse; }
.reports-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 12px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.reports-table td {
  padding: 12px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.reports-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.review-link { color: var(--navy); text-decoration: underline; font-size: 0.85rem; }
.table-placeholder { height: 10px; background: var(--gray-100); border-radius: 4px; margin: 4px 0; }

/* ── MATCHING DIAGRAM ── */
.match-diagram {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.match-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.match-circle svg { width: 70px; height: 70px; }
.match-circle-label {
  font-weight: 700;
  font-size: 0.9rem;
}
.match-circle-label.navy { color: var(--navy); }
.match-circle-label.gold { color: var(--gold); }
.match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.match-center svg { width: 100%; max-width: 180px; }

/* ── PHONE SCREENS ── */
.phones-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 580px;
  margin: 0 auto;
}
.phone-mock {
  background: var(--white);
  border: 3px solid var(--navy-dark);
  border-radius: 28px;
  padding: 20px 16px;
  width: 170px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
}
.phone-mock.gold-phone { border-color: var(--gold); }
.phone-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.phone-mock:not(.gold-phone) .phone-avatar { border: 2px solid var(--navy); }
.phone-mock.gold-phone .phone-avatar { border: 2px solid var(--gold); }
.phone-text {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}
.phone-mock.gold-phone .phone-text { color: var(--navy); }
.phone-divider {
  width: 30px;
  height: 2px;
  border-radius: 2px;
}
.phone-mock:not(.gold-phone) .phone-divider { background: var(--gold); }
.phone-mock.gold-phone .phone-divider { background: var(--gold); }
.phone-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.phone-chat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.phone-mock:not(.gold-phone) .phone-chat-icon { background: var(--navy); }
.phone-mock.gold-phone .phone-chat-icon { background: var(--gold); }
.phones-arrow {
  color: var(--navy-dark);
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ── LAPTOP MOCKUP ── */
.laptop-mockup {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.laptop-screen {
  background: var(--navy);
  border-radius: 14px 14px 0 0;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.laptop-inner {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.laptop-topbar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.laptop-logo-box {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 6px;
}
.laptop-school-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.laptop-menu { margin-left: auto; display: flex; flex-direction: column; gap: 3px; }
.laptop-menu span { display: block; width: 18px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 1px; }
.laptop-content {
  padding: 24px 20px 20px;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e4dc 100%);
  position: relative;
  min-height: 200px;
}
.laptop-headline { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.laptop-subtext { font-size: 0.82rem; color: var(--navy); }
.laptop-subtext span { color: var(--gold); font-weight: 700; }
.laptop-popup {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.78rem;
  min-width: 160px;
  box-shadow: var(--shadow);
}
.laptop-popup .popup-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 6px;
}
.laptop-popup p { margin-bottom: 4px; line-height: 1.4; }
.laptop-base {
  background: var(--navy);
  height: 14px;
  border-radius: 0 0 8px 8px;
}
.laptop-stand {
  width: 40%;
  height: 8px;
  background: #9aa0b5;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* ── PRICING PAGE ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-card.featured { border-color: var(--navy); box-shadow: var(--shadow); }
.pricing-card h3 { font-size: 1.2rem; color: var(--navy); }
.pricing-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }

/* ── FORM ── */
.form-section { background: var(--cream); padding: 80px 0; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group input.error,
.form-group select.error { border-color: #C62828; }
.error-msg { font-size: 0.78rem; color: #C62828; display: none; }
.form-group.has-error .error-msg { display: block; }
.form-submit-row { margin-top: 28px; }
.form-submit-row .btn { width: 100%; padding: 16px; font-size: 1rem; }

/* ── FAQ PAGE ── */
.faq-section { padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer.open { max-height: 500px; padding: 0 24px 20px; }

/* ── LEGAL PAGES (terms/privacy) ── */
.legal-section { padding: 80px 0; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.1rem; color: var(--navy); margin: 36px 0 12px; font-family: 'Inter', sans-serif; font-weight: 700; }
.legal-content h3 { font-size: 0.95rem; color: var(--navy); margin: 24px 0 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.legal-content p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content ul li { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.65; }
.legal-last-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px; }

/* ── CONFIRMATION ── */
.confirmation-section { padding: 120px 0; text-align: center; }
.confirm-icon { font-size: 4rem; margin-bottom: 20px; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-image-card-overlay { width: 65%; right: 4%; padding: 14px; }
  .hero-image-card-overlay h4 { font-size: 0.85rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .match-diagram { gap: 10px; }
  .phones-diagram { flex-direction: column; gap: 16px; }
  .phone-mock { width: 150px; }
  .how-step-image { max-width: 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-image-card-overlay { position: static; transform: none; width: 100%; border-radius: 0 0 var(--radius) var(--radius); }
  .hero-with-image { border-radius: var(--radius); }
  .form-card { padding: 28px 20px; }
}

/* ══════════════════════════════════════════════
   NEW COMPONENTS — conversion improvements
══════════════════════════════════════════════ */

/* ── URGENCY BANNER (top of page) ── */
.urgency-bar {
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  text-align: center;
}
.urgency-bar-text { color: rgba(255,255,255,0.9); }
.urgency-bar-text strong { color: var(--gold-light); }
.urgency-bar-cta {
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.15s;
}
.urgency-bar-cta:hover { background: var(--gold-light); color: var(--navy); }

/* ── TESTIMONIALS SECTION ── */
.section-testimonials {
  background: var(--cream);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── INLINE FAQ OBJECTIONS ── */
.section-inline-faq {
  background: var(--white);
  padding: 80px 0;
}
.inline-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.inline-faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inline-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.inline-faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.inline-faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.inline-faq-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  margin-top: 6px;
}
.inline-faq-link:hover { color: var(--gold); }

/* ── STICKY BOTTOM CTA BAR ── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 14px 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-w-lg);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta-text strong {
  color: var(--white);
  font-size: 0.95rem;
}
.sticky-cta-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.sticky-cta-btn {
  background: var(--gold);
  color: var(--white);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s;
}
.sticky-cta-btn:hover { background: var(--gold-light); color: var(--navy); }
.sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.15s;
  flex-shrink: 0;
}
.sticky-cta-close:hover { color: var(--white); }

@media (max-width: 600px) {
  .urgency-bar { gap: 10px; font-size: 0.78rem; }
  .sticky-cta-inner { justify-content: center; text-align: center; }
  .sticky-cta-text { align-items: center; }
  .testimonials-grid { grid-template