@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

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

:root {
  --navy: #1A3A4A;
  --teal: #3A7D8C;
  --cream: #F8F2E4;
  --gold: #FFBC00;
  --white: #FFFFFF;
  --light-teal: #E8F4F6;
  --text: #333333;
  --muted: #666666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

a { color: inherit; }

/* Buttons */
.btn-primary, .btn-gold, .btn-outline {
  display: inline-block;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, background 0.2s;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: #2d6474; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: #e6a800; }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: white; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.logo-img { height: 36px; width: auto; display: block; }

.footer-logo-link { display: inline-block; text-decoration: none; }
.footer-logo-badge { display: inline-flex; align-items: center; background: var(--cream); border-radius: 12px; padding: 9px 16px; margin-bottom: 16px; }
.footer-logo-img { height: 26px; width: auto; display: block; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { text-decoration: none; color: #333; font-weight: 500; font-size: 14.5px; white-space: nowrap; }
.nav-download { padding: 10px 24px !important; font-size: 14px !important; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }
.mobile-menu { display: none; background: white; padding: 20px 24px; border-top: 1px solid #eee; flex-direction: column; gap: 20px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: #333; font-weight: 500; }

/* Hero */
.hero {
  background: linear-gradient(160deg, #F8F2E4 0%, #EDE5D0 100%);
  min-height: 100vh;
  display: flex; align-items: center; padding-top: 100px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,125,140,0.1); border: 1px solid rgba(58,125,140,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.eyebrow span { font-size: 12px; color: var(--teal); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.hero h1 { font-size: 56px; margin-bottom: 20px; }
.hero h1 .accent { color: var(--teal); }
.hero p.sub { font-size: 20px; color: #555; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-note { font-size: 13px; color: #888; margin-top: 16px; }

.download-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.download-buttons.centered { justify-content: center; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy); color: white;
  border-radius: 12px; padding: 12px 20px;
  text-decoration: none; min-width: 160px;
}
.store-btn .store-label { font-size: 10px; opacity: 0.7; }
.store-btn .store-name { font-size: 15px; font-weight: 700; }

/* Phone mockup */
.phone-mock {
  width: 280px; height: 560px; background: var(--navy); border-radius: 40px;
  border: 8px solid #0D2233; box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  overflow: hidden; display: flex; flex-direction: column; margin: 0 auto;
}
.phone-status { background: var(--navy); height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.phone-status span { color: rgba(255,255,255,0.6); font-size: 11px; }
.phone-screen { flex: 1; background: var(--cream); padding: 13px; display: flex; flex-direction: column; gap: 8px; }
.phone-child-row { display: flex; align-items: center; gap: 8px; }
.phone-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--navy); }
.phone-chips { display: flex; gap: 4px; }
.phone-chip { background: var(--light-teal); color: var(--teal); font-size: 10px; padding: 2px 6px; border-radius: 100px; }
.phone-win { background: var(--navy); border-radius: 12px; padding: 12px; }
.phone-win-label { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.phone-win-text { font-size: 13px; color: white; font-weight: 500; line-height: 1.4; }
.phone-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.phone-stat { background: white; border-radius: 10px; padding: 8px; text-align: center; }
.phone-stat-icon { font-size: 16px; }
.phone-stat-num { font-weight: 700; font-size: 16px; color: var(--teal); }
.phone-stat-label { font-size: 9px; color: #888; }
.phone-nav { background: white; height: 50px; display: flex; justify-content: space-around; align-items: center; border-top: 0.5px solid #eee; }
.phone-nav-icon { font-size: 18px; opacity: 0.4; }
.phone-nav-icon.active { font-size: 20px; opacity: 1; }

/* Problem section */
.problem { background: var(--navy); }
.problem h2 { color: white; }
.problem-intro { text-align: center; margin-bottom: 60px; }
.problem-intro p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 16px auto 0; line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 60px; }
.stat-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.06); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.stat-label { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.quote-box { position: relative; text-align: center; background: linear-gradient(160deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 56px 48px 44px; max-width: 700px; margin: 0 auto; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.quote-box::before { content: '\201C'; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 96px; line-height: 1; color: var(--gold); }
.quote-box p.quote { position: relative; font-family: 'Playfair Display', serif; font-style: italic; font-size: 23px; color: white; line-height: 1.6; margin-top: 16px; }
.quote-box p.attribution { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 20px; }

/* Section eyebrow (reusable) */
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; background: rgba(58,125,140,0.1); border: 1px solid rgba(58,125,140,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 16px;
}
.section-eyebrow span { font-size: 12px; color: var(--teal); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.section-head h2 { font-size: 42px; margin-bottom: 16px; }
.section-head p { font-size: 18px; color: #666; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* Features */
.feature-card { background: white; border-radius: 20px; padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); border: 0.5px solid #e0d8c8; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.feature-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.feature-card p.desc { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.feature-bullets { display: flex; flex-direction: column; gap: 8px; }
.feature-bullet { display: flex; align-items: center; gap: 10px; }
.feature-bullet .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.feature-bullet span.text { font-size: 14px; color: #555; }

/* How it works */
.how-it-works { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; }
.step { display: flex; gap: 24px; }
.step-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 48px; color: var(--gold); line-height: 1; flex-shrink: 0; width: 60px; }
.step h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: #666; line-height: 1.7; }

/* Pricing */
.pricing { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.plan-card { border-radius: 20px; padding: 36px; position: relative; }
.plan-card.regular { background: white; border: 0.5px solid #e0d8c8; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.plan-card.highlight { background: var(--navy); box-shadow: 0 20px 60px rgba(26,58,74,0.25); transform: scale(1.04); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan-card.regular .plan-name { color: #888; }
.plan-card.highlight .plan-name { color: rgba(255,255,255,0.5); }
.plan-price-row { display: flex; align-items: baseline; gap: 4px; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; }
.plan-period { font-size: 14px; }
.plan-card.regular .plan-period { color: #888; }
.plan-card.highlight .plan-period { color: rgba(255,255,255,0.5); }
.plan-annual { font-size: 13px; margin-top: 4px; }
.plan-card.regular .plan-annual { color: #aaa; }
.plan-card.highlight .plan-annual { color: rgba(255,255,255,0.4); }
.plan-features { margin: 28px 0; display: flex; flex-direction: column; gap: 10px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; }
.plan-feature .check { color: #1D9E75; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-feature .missing { color: #ccc; flex-shrink: 0; }
.plan-feature span.text { font-size: 14px; line-height: 1.5; }
.plan-card.regular .plan-feature span.text { color: #555; }
.plan-card.highlight .plan-feature span.text { color: rgba(255,255,255,0.8); }
.plan-feature.missing-item span.text { color: #bbb; }
.plan-cta { display: block; text-align: center; border-radius: 100px; padding: 14px 24px; font-weight: 700; font-size: 15px; text-decoration: none; }
.plan-cta.regular-cta { background: var(--teal); color: white; }
.plan-cta.highlight-cta { background: var(--gold); color: var(--navy); }
.pricing-footnote { text-align: center; font-size: 13px; color: #888; margin-top: 40px; }

/* Testimonials */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: 20px; padding: 32px; border: 0.5px solid #e0d8c8; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.quote-mark { font-size: 40px; color: var(--gold); margin-bottom: 16px; font-family: 'Playfair Display', serif; line-height: 1; }
.testimonial-quote { font-size: 16px; color: #333; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 14px; }
.testimonial-role { font-size: 13px; color: #888; margin-top: 2px; }

/* Download CTA */
.download-cta { background: var(--teal); text-align: center; }
.download-cta h2 { color: white; font-size: 48px; margin-bottom: 16px; }
.download-cta p { font-size: 20px; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.download-cta .footnote { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px; }

/* Footer */
.footer { background: var(--navy); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; }
.footer-tag { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 12px; font-style: italic; }
.footer-col-label { font-size: 12px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-link { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.2); font-style: italic; }

/* Legal pages */
.legal-page { padding-top: 100px; padding-bottom: 80px; min-height: 100vh; background: var(--cream); }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.legal-container h1 { font-size: 42px; margin-bottom: 8px; }
.legal-meta { color: #888; font-size: 14px; margin-bottom: 8px; }
.legal-intro { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 48px; }
.legal-section { margin-bottom: 28px; background: white; border: 0.5px solid #e0d8c8; border-radius: 12px; padding: 24px; }
.legal-section.alert { background: #fff3f3; border: 1px solid #fcc; }
.legal-section h2 { font-size: 20px; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.legal-section.alert h2 { color: #A32D2D; }
.legal-section p { font-size: 15px; color: #444; line-height: 1.8; }
.legal-section.alert p { color: #A32D2D; font-weight: 600; }

/* Lighthouse SVG sizing helper */
.lh-icon { flex-shrink: 0; }

/* Utility backgrounds (for section zebra-striping) */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ─── What BxLight Does (overview cards with live mini phone mockups) ── */
/* Row-gap 0 so the row-1 text block and row-2 phone cell touch with no visible
   seam, reading as one continuous card per column, while column-gap keeps the
   24px spacing between the 3 features. Alignment still comes from the grid
   (row 1 = text, row 2 = phone), so phones still start on the same line. */
.what-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: auto; column-gap: 24px; row-gap: 0; }
.what-card { display: flex; flex-direction: column; text-align: left; padding: 28px 28px 16px; height: 100%; background: white; border: 0.5px solid #e0d8c8; border-bottom: none; border-radius: 20px 20px 0 0; box-shadow: none; }
.what-card .feature-bullets { margin-bottom: 0; }

/* Explicit placement (rather than relying on auto-flow) so the 3 text cards
   are always row 1 and the 3 phones are always row 2, in matching columns.
   Overridden below for the single-column mobile layout. */
.what-grid > *:nth-child(1) { grid-column: 1; grid-row: 1; }
.what-grid > *:nth-child(2) { grid-column: 2; grid-row: 1; }
.what-grid > *:nth-child(3) { grid-column: 3; grid-row: 1; }
.what-grid > *:nth-child(4) { grid-column: 1; grid-row: 2; }
.what-grid > *:nth-child(5) { grid-column: 2; grid-row: 2; }
.what-grid > *:nth-child(6) { grid-column: 3; grid-row: 2; }

/* Mini phone mockup: reuses the exact .phone-status / .phone-screen / .phone-win /
   .phone-pattern / .phone-stats / .phone-chip / .phone-child-row / .phone-avatar /
   .phone-nav components from the hero mockup so every screenshot on the site
   shares one identical design system (fonts, colors, spacing, shadows, status
   bar). No fixed aspect-ratio: height comes from each card's own real content
   instead of a forced crop, which is what actually removes dead space. */
.mini-phone { width: 280px; height: 560px; margin: 0 auto; background: var(--navy); border-radius: 40px; border: 8px solid #0D2233; box-shadow: 0 26px 56px rgba(26,58,74,0.22); overflow: hidden; display: flex; flex-direction: column; }

/* Bottom half of the card: sits directly under .what-card in row 2 of the
   same grid column, with matching border/background and row-gap:0 so the two
   pieces read as one continuous box (like before), while the grid still
   guarantees every phone starts on the same horizontal line. */
.what-phone-cell { display: flex; justify-content: center; background: white; border: 0.5px solid #e0d8c8; border-top: none; border-radius: 0 0 20px 20px; padding: 8px 16px 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.what-phone-cell .mini-phone { margin-top: 16px; }

.phone-screen-header { display: flex; justify-content: space-between; align-items: center; }
.phone-screen-title { font-weight: 800; font-size: 15px; color: var(--navy); }
.phone-session-pill { background: var(--light-teal); color: var(--teal); font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.phone-section-sub { font-size: 9.5px; color: #999; margin-top: -4px; }

.phone-section-label { font-weight: 700; font-size: 12.5px; color: var(--navy); margin-top: 2px; }

.phone-strategy-card { background: white; border-radius: 12px; padding: 8px 11px; }
.phone-strategy-top { display: flex; justify-content: space-between; align-items: center; }
.phone-strategy-pill { background: var(--light-teal); color: var(--teal); font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.phone-strategy-speaker { color: var(--teal); font-size: 11px; }
.phone-strategy-title { font-weight: 700; font-size: 12px; color: var(--navy); margin-top: 6px; }
.phone-strategy-sub { font-size: 9.5px; color: #999; margin-top: 2px; }

.phone-trigger-label { font-size: 10.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; display: block; }
.phone-trigger-select { background: white; border: 1.5px solid #e0d8c8; border-radius: 10px; padding: 9px 12px; font-size: 10.5px; color: #999; display: flex; justify-content: space-between; align-items: center; }
.phone-trigger-select .chev { color: var(--teal); font-weight: 700; }

.phone-pattern-row { display: flex; align-items: center; gap: 8px; background: white; border-radius: 10px; padding: 7px 10px; }
.phone-pattern-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.phone-pattern-row-title { font-size: 10.5px; font-weight: 700; color: var(--navy); }
.phone-section-header-row { display: flex; justify-content: space-between; align-items: center; margin-top: 2px; }
.phone-graph-badge { background: var(--light-teal); color: var(--teal); font-size: 9px; font-weight: 700; padding: 4px 9px; border-radius: 100px; white-space: nowrap; }
.phone-skill-row { background: white; border-radius: 10px; padding: 7px 10px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.phone-skill-row-title { font-size: 10.5px; font-weight: 700; color: var(--navy); }
.phone-skill-row-sub { font-size: 9px; color: #999; margin-top: 1px; }
.phone-skill-pct { background: #E3F5EA; color: #1D9E75; font-size: 9.5px; font-weight: 700; padding: 3px 9px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.phone-pattern-row-sub { font-size: 9px; color: #999; margin-top: 1px; }

.phone-voice-btn { background: var(--teal); border-radius: 12px; padding: 9px 12px; display: flex; align-items: center; gap: 10px; }
.phone-voice-icon { font-size: 15px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-voice-title { color: white; font-weight: 700; font-size: 12px; }
.phone-voice-sub { color: rgba(255,255,255,0.75); font-size: 9.5px; margin-top: 1px; }
.phone-chips.wrap { flex-wrap: wrap; gap: 5px; }
.phone-chip.alt { background: white; color: var(--navy); border: 1px solid #e0d8c8; }

.phone-skill-header { display: flex; align-items: center; gap: 8px; }
.phone-level-pill { background: white; color: var(--navy); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.phone-skill-domain { color: #7a7a7a; font-size: 10.5px; }
.phone-skill-title { font-weight: 700; font-size: 13.5px; color: var(--navy); line-height: 1.3; }
.phone-trial-buttons { display: flex; gap: 6px; }
.phone-trial-btn { flex: 1; text-align: center; font-size: 9.5px; font-weight: 700; color: white; padding: 8px 4px; border-radius: 8px; }
.phone-trial-btn.did { background: #1D9E75; }
.phone-trial-btn.help { background: #E69138; }
.phone-trial-btn.not { background: #5A6270; }

/* ─── About ────────────────────────────────────────────────── */
.about-prose { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.about-prose p { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: white; border: 0.5px solid #e0d8c8; border-radius: 20px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.value-card .feature-icon { margin: 0 auto 18px; }
.value-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border: 0.5px solid #e0d8c8; border-radius: 16px; padding: 22px 26px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.faq-item summary { cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--teal); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: #666; font-size: 14.5px; line-height: 1.7; }

/* ─── Contact ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 820px; margin: 0 auto 48px; }
.contact-info-card { background: white; border: 0.5px solid #e0d8c8; border-radius: 20px; padding: 32px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.contact-info-card .feature-icon { margin: 0 auto 18px; }
.contact-info-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.contact-info-card p { font-size: 14px; color: #666; line-height: 1.6; margin: 0 0 4px; }
.contact-info-card a { color: var(--teal); font-weight: 600; text-decoration: none; }
.contact-form-card { background: white; border-radius: 24px; padding: 44px; max-width: 600px; margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,0.06); border: 0.5px solid #e0d8c8; }
.contact-form-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #e0d8c8; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14.5px; color: var(--navy); background: var(--cream); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: block !important; }
  .logo-img { height: 30px; }
  section { padding: 60px 0; }
  .hero h1 { font-size: 36px !important; }
  .section-head h2 { font-size: 30px !important; }
  .hero-grid, .stats-grid, .steps-grid, .pricing-grid, .testimonials-grid, .footer-grid,
  .what-grid, .value-grid, .contact-grid {
    grid-template-columns: 1fr !important;
  }
  /* Single column: each feature's text card immediately followed by its own
     phone (1,4,2,5,3,6) instead of all 3 text cards then all 3 phones. */
  .what-grid > *:nth-child(1) { grid-column: 1; grid-row: 1; }
  .what-grid > *:nth-child(4) { grid-column: 1; grid-row: 2; }
  .what-grid > *:nth-child(2) { grid-column: 1; grid-row: 3; }
  .what-grid > *:nth-child(5) { grid-column: 1; grid-row: 4; }
  .what-grid > *:nth-child(3) { grid-column: 1; grid-row: 5; }
  .what-grid > *:nth-child(6) { grid-column: 1; grid-row: 6; }
  .plan-card.highlight { transform: none !important; }
  .phone-mock { display: none; }
  .contact-form-card { padding: 28px 22px; }
}
