/* =============================================================
   FORESIGHTHQ — styles.css
   Brand: Purple gradient hero, teal CTAs, gold primary CTA
   ============================================================= */

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-purple-dark:   #5B0E91;
  --color-purple-mid:    #7C3AED;
  --color-purple-light:  #A855F7;
  --color-purple-bg:     #F3E8FF;
  --color-teal:          #14B8A6;
  --color-teal-dark:     #0D9488;
  --color-gold:          #F59E0B;
  --color-gold-dark:     #D97706;
  --color-white:         #FFFFFF;
  --color-gray-light:    #F9FAFB;
  --color-gray-mid:      #E5E7EB;
  --color-gray-text:     #6B7280;
  --color-text-dark:     #111827;
  --color-text-body:     #374151;

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #4C0080 0%, #6B21A8 40%, #7C3AED 100%);
  --gradient-pricing: linear-gradient(135deg, #5B0E91 0%, #7C3AED 100%);

  /* Typography */
  --font-base: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;

  /* Spacing */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 7.5rem;

  /* Layout */
  --container-max: 1100px;
  --nav-height:    72px;

  /* Borders */
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.16);
  --shadow-nav:  0 2px 12px rgba(0,0,0,0.10);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-mid:  0.25s ease;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
--------------------------------------------------------------- */
.text-center { text-align: center; }
.text-upper  { text-transform: uppercase; letter-spacing: 0.08em; }

h1, h2, h3, h4 {
  font-family: var(--font-base);
  line-height: 1.25;
  color: var(--color-text-dark);
}

/* ---------------------------------------------------------------
   4. CONTAINER
--------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------------------------------------------------------------
   5. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

/* Teal filled */
.btn--teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn--teal:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

/* Gold filled (primary hero CTA) */
.btn--gold {
  background: var(--color-gold);
  color: #1C1100;
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

/* Outline dark (on white bg) */
.btn--outline-dark {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

/* Outline light (on dark/purple bg) */
.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

/* Size modifiers */
.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ---------------------------------------------------------------
   6. NAV & FOOTER LOGO
--------------------------------------------------------------- */
.nav__logo-img {
  display: block;
  height: 36px;
  width: auto;
}

.footer__logo-img {
  display: block;
  height: 32px;
  width: auto;
  /* Tint white so it's visible on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   7. IMAGE PLACEHOLDER SYSTEM
   Shows clearly-labeled boxes when real images haven't been uploaded
   yet. The bottom bar shows the exact filename + dimensions to drop in.
   Once a real image file exists at that path, main.js adds .loaded
   to the <img> and the placeholder hides automatically.
--------------------------------------------------------------- */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--color-purple-bg) 0%, #EDE9FE 100%);
  border: 2px dashed var(--color-purple-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 200px;
  gap: 0.5rem;
}

/* Bottom label: filename + dimensions */
.img-placeholder::after {
  content: attr(data-filename) " · " attr(data-dimensions);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--color-purple-dark);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.75rem;
  border-top: 1px dashed var(--color-purple-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center icon — generic image upload icon via CSS */
.img-placeholder::before {
  content: "🖼";
  font-size: 2rem;
  opacity: 0.45;
  line-height: 1;
}

/* Hide the <img> by default — show when real file is loaded */
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.img-placeholder img.loaded {
  display: block;
}

/* When image loaded, hide the placeholder chrome */
.img-placeholder:has(img.loaded)::before,
.img-placeholder:has(img.loaded)::after {
  display: none;
}

/* ---- Variant: hero dashboard ---- */
.img-placeholder--dashboard {
  min-height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(124,58,237,0.3) 100%);
  border-color: rgba(255,255,255,0.45);
}

.img-placeholder--dashboard::before {
  content: "📊";
  font-size: 2.5rem;
  opacity: 0.65;
}

.img-placeholder--dashboard::after {
  background: rgba(0,0,0,0.40);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}

/* ---- Variant: pain-points woman photo ---- */
.img-placeholder--woman {
  min-height: 420px;
}

.img-placeholder--woman::before {
  content: "👤";
  font-size: 2.5rem;
  opacity: 0.4;
}

/* ---- Variant: founder portrait ---- */
.img-placeholder--founder {
  min-height: 460px;
}

.img-placeholder--founder::before {
  content: "👤";
  font-size: 2.5rem;
  opacity: 0.4;
}

/* ---------------------------------------------------------------
   7. NAVIGATION
--------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-mid);
  transition: box-shadow var(--transition-mid);
}

.site-header--scrolled {
  box-shadow: var(--shadow-nav);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: var(--space-md);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   8. HERO
--------------------------------------------------------------- */
.hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero__preheadline {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-md);
}

.hero__brand {
  font-family: var(--font-base);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.hero__brand sup {
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: 0;
}

.hero__subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 0;
}

.hero__description {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__cta {
  display: inline-block;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------------
   9. PAIN POINTS
--------------------------------------------------------------- */
.pain-points {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.pain-points__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.pain-points__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.pain-points__subhead {
  font-size: 1rem;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.checklist--unchecked li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--color-text-body);
}

.checklist--unchecked li::before {
  content: "☐";
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--color-gray-text);
  margin-top: 0.05rem;
}

/* ---------------------------------------------------------------
   10. SOLUTION CALLOUT
--------------------------------------------------------------- */
.solution-callout {
  background: var(--color-gray-light);
  padding: var(--space-xl) 0;
}

.solution-callout__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.solution-callout__lede {
  font-family: var(--font-base);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-purple-dark);
  margin-bottom: var(--space-md);
}

.solution-callout__body {
  font-size: 1.0625rem;
  color: var(--color-text-body);
  line-height: 1.75;
}

/* ---------------------------------------------------------------
   11. FOUNDER STORY
--------------------------------------------------------------- */
.founder {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.founder__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.founder__headline {
  font-size: clamp(1.4rem, 2.8vw, 1.875rem);
  margin-bottom: var(--space-md);
  color: var(--color-purple-dark);
  line-height: 1.3;
}

.founder__byline {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-text);
  margin-bottom: var(--space-md);
}

.founder__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.founder__body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* ---------------------------------------------------------------
   12. WHY IT MATTERS
--------------------------------------------------------------- */
.why-matters {
  padding: var(--space-xl) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-mid);
}

.why-matters__inner {
  max-width: 760px;
  margin: 0 auto;
}

.why-matters__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
}

.why-matters__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.why-matters__body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-body);
}

/* ---------------------------------------------------------------
   13. THREE REASONS
--------------------------------------------------------------- */
.three-reasons {
  padding: var(--space-xl) 0;
  background: var(--color-gray-light);
}

.three-reasons__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: var(--space-xs);
  color: var(--color-text-dark);
}

.three-reasons__subtitle {
  text-align: center;
  color: var(--color-gray-text);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}

.three-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.reason-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-mid), transform var(--transition-mid);
}

.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.reason-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.reason-card__title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: var(--space-sm);
}

.reason-card__body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-body);
}

/* ---------------------------------------------------------------
   14. FEATURES
--------------------------------------------------------------- */
.features {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.features__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text-dark);
}

.features__box {
  border: 2px solid var(--color-purple-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 820px;
  margin: 0 auto;
}

.features__box-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-purple-bg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.feature-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-teal);
}

.feature-list__item strong {
  font-size: 1rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.feature-list__item span {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

.features__bonus {
  background: var(--color-purple-bg);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-purple-light);
}

.features__bonus-label {
  display: inline-block;
  background: var(--color-gold);
  color: #1C1100;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.features__bonus p {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

.features__bonus p + p {
  margin-top: var(--space-xs);
}

/* ---------------------------------------------------------------
   15. PRICING CTA
--------------------------------------------------------------- */
.pricing-cta {
  background: var(--gradient-pricing);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.pricing-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.pricing-cta__headline {
  font-family: var(--font-base);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--color-white);
  line-height: 1.3;
}

.pricing-cta__subhead {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.pricing-cta__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ---------------------------------------------------------------
   16. FAQ — 2-column card layout (matches screenshot)
--------------------------------------------------------------- */
.faq {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

.faq__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-purple-dark);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq__list {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.faq__item {
  background: #3730A3;   /* indigo-800 — matches screenshot */
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-mid);
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
  line-height: 1.4;
  transition: opacity var(--transition-fast);
}

.faq__question:hover {
  opacity: 0.85;
}

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-white);
  margin-top: 0.1rem;
  transition: transform var(--transition-mid);
}

.faq__icon::before {
  content: '∧';   /* caret-up — all shown open in screenshot */
}

.faq__item--open .faq__icon {
  transform: none;
}

/* Items default to closed; icon shows ∨ when closed */
.faq__item:not(.faq__item--open) .faq__icon::before {
  content: '∨';
}

.faq__answer {
  padding: 0 var(--space-md) var(--space-md);
}

.faq__answer p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.faq__answer p + p {
  margin-top: var(--space-sm);
}

/* ---------------------------------------------------------------
   17. MAKE NO MISTAKE
--------------------------------------------------------------- */
.make-no-mistake {
  padding: var(--space-xl) 0;
  background: var(--color-gray-light);
}

.make-no-mistake__inner {
  max-width: 760px;
  margin: 0 auto;
}

.make-no-mistake__headline {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: var(--space-md);
}

.make-no-mistake__body {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.make-no-mistake__inner > p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
}

.make-no-mistake__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.choice {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.choice--bad {
  background: #FEF2F2;
  border: 2px solid #FECACA;
}

.choice--good {
  background: #F0FDF4;
  border: 2px solid #BBF7D0;
}

.choice__label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.choice--bad .choice__label { color: #DC2626; }
.choice--good .choice__label { color: #16A34A; }

.choice p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-body);
}

.make-no-mistake__cta-line {
  text-align: center;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.make-no-mistake__cta-subhead {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-purple-dark);
  margin-bottom: var(--space-md);
}

.make-no-mistake__inner > .btn {
  display: block;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------
   18. FOOTER
--------------------------------------------------------------- */
.site-footer {
  background: var(--color-text-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.site-footer__copy {
  font-size: 0.8rem;
  max-width: 640px;
  line-height: 1.6;
}

.site-footer__copy a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

.site-footer__copy a:hover {
  color: var(--color-white);
}

.site-footer__contact {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
}

.site-footer__contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.site-footer__contact a:hover {
  color: var(--color-teal);
}

/* ---------------------------------------------------------------
   19. RESPONSIVE — MOBILE
--------------------------------------------------------------- */
@media (max-width: 900px) {
  .three-reasons__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3.5rem;
    --space-lg: 2rem;
  }

  /* Nav */
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 0;
    gap: 0.75rem;
  }

  .nav__actions {
    gap: 0.5rem;
  }

  .nav__actions .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  /* Pain points */
  .pain-points__inner {
    grid-template-columns: 1fr;
  }

  .pain-points__image-col {
    max-width: 380px;
    margin: 0 auto;
  }

  /* Founder */
  .founder__inner {
    grid-template-columns: 1fr;
  }

  .founder__image-col {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }

  /* Features box */
  .features__box {
    padding: var(--space-md);
  }

  /* FAQ 2-col → 1-col */
  .faq__list {
    grid-template-columns: 1fr;
  }

  /* Make no mistake choices */
  .make-no-mistake__choices {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer__contact {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  .hero__cta {
    width: 100%;
    text-align: center;
  }
}
