/* ============================================================
   HILARY PHELPS & THE RIGHT ROOM
   Website Redesign — Final Build
   Brand Identity System — February 2026
   ============================================================ */

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

:root {
  --navy: #1E2A3A;
  --navy-deep: #162230;
  --gold: #B8963E;
  --gold-soft: #D4B96A;
  --alabaster: #F5F0E8;
  --cream: #FAF7F2;
  --sage: #8B9E8B;
  --text: #1E2A3A;
  --text-soft: #4A5568;
  --border: rgba(30,42,58,0.08);
  --shadow-sm: 0 2px 8px rgba(30,42,58,0.04);
  --shadow-md: 0 8px 32px rgba(30,42,58,0.06);
  --shadow-lg: 0 20px 60px rgba(30,42,58,0.08);
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Lato', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--alabaster);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 400; line-height: 1.25; color: var(--navy); }
h1 { font-size: 48px; letter-spacing: 4px; }
h2 { font-size: 32px; letter-spacing: 2px; }
h3 { font-size: 22px; font-style: italic; }
h4 { font-size: 18px; letter-spacing: 1px; }

p { margin-bottom: 1.5em; max-width: 640px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.large-text { font-size: 18px; line-height: 1.9; color: var(--text-soft); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }
.section--alabaster { background: var(--alabaster); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--navy p { color: var(--alabaster); }
.section--navy .eyebrow { color: var(--gold); }
.section--book { background: #C4A08A; }
.section--book h1, .section--book h2, .section--book h3, .section--book h4 { color: var(--navy); }
.section--book p { color: rgba(30,42,58,0.8); }
.section--book .eyebrow { color: var(--navy); }
.section--book .divider { background: var(--navy); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.divider { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }
.divider.center { margin: 24px auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(245,240,232,1);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { width: 36px; height: 36px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.nav-logo-name {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--alabaster);
  transition: color 0.4s;
}

.nav-logo-sub {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav.scrolled .nav-logo-name { color: #1E2A3A !important; }
.nav.scrolled .nav-logo-sub { color: #1E2A3A !important; opacity: 0.6; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  position: relative;
}

.nav.scrolled .nav-links a { color: #1E2A3A !important; opacity: 1 !important; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a:hover { color: var(--gold); opacity: 1; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav.scrolled .nav-cta {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
}
.nav.scrolled .nav-cta:hover {
  background: var(--navy) !important;
  color: var(--alabaster) !important;
  border-color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--alabaster);
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: 48px;
  background: #B8963E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.announcement-bar.hidden {
  display: none;
}

.announcement-bar-content {
  flex: 1;
  text-align: center;
}

.announcement-bar-content p {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  color: #1E2A3A;
  margin: 0;
  line-height: 48px;
}

.announcement-bar-link {
  color: #1E2A3A !important;
  text-decoration: underline !important;
  font-weight: 700;
}

.announcement-bar-link:hover {
  opacity: 0.8;
}

.announcement-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #1E2A3A;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  font-family: var(--font-b);
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.announcement-bar-close:hover {
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,62,0.25); }

.btn-ghost { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; border: 1px solid rgba(245,240,232,0.4); color: var(--alabaster); }
.btn-ghost-light:hover { background: var(--alabaster); color: var(--navy); }

.btn-navy { background: var(--navy); color: var(--alabaster); }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,62,0.25); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PRICING CARDS ===== */
.pricing-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.pricing-card { background: white; padding: 48px 40px; }
.pricing-card.featured { background: var(--alabaster); }
.pricing-name { font-family: var(--font-h); font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-h); font-size: 48px; color: var(--navy); line-height: 1; }
.pricing-period { font-size: 14px; color: var(--text-soft); margin-bottom: 32px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px 0; }
.pricing-features li { padding: 10px 0 10px 24px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text); position: relative; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.btn-outline { background: transparent; border: 1px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--alabaster); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--medium { min-height: 70vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,58,0.6) 0%, rgba(30,42,58,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 80px 80px;
}

.hero-content h1 { color: var(--alabaster); margin-bottom: 24px; }
.hero-content p { color: rgba(245,240,232,0.88); font-size: 18px; margin-bottom: 32px; max-width: 600px; }
.hero-content .eyebrow { margin-bottom: 20px; }

/* Hero centered variant */
.hero-content.centered { text-align: center; margin: 0 auto; }
.hero-content.centered p { margin-left: auto; margin-right: auto; }

/* ===== AUTHORITY BAR ===== */
.authority-bar {
  background: var(--alabaster);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.authority-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.as-seen-label {
  font-family: var(--font-b);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.4;
  margin-right: 24px;
  white-space: nowrap;
}

.authority-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.authority-logos img {
  height: 72px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.authority-logos img:hover { opacity: 0.85; }

/* ===== TWO-COLUMN CARDS ===== */
.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.path-card {
  padding: 60px 48px;
  background: var(--cream);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
}

.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.path-card--sage { background: rgba(139,158,139,0.08); }
.path-card .eyebrow { margin-bottom: 16px; }
.path-card h3 { font-style: normal; font-size: 26px; margin-bottom: 20px; }
.path-card p { margin-bottom: 28px; }
.sanctuary-founding-text {
  font-family: var(--font-b);
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}

/* ===== SPLIT LAYOUT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 500px; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.split-content h2 { margin-bottom: 24px; }
.split-content p { margin-bottom: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.testimonial-card {
  padding: 48px 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 28px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 24px;
}

.testimonial-card cite {
  font-family: var(--font-b);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Single centered testimonial */
.testimonial-single {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-single blockquote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 24px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 24px;
}

.testimonial-single cite {
  font-family: var(--font-b);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== PRICING TIERS ===== */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }

.tier {
  padding: 56px 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.tier--featured .founding-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--cream);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
}

.tier-name {
  font-family: var(--font-h);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-h);
  font-size: 42px;
  color: var(--navy);
  margin: 20px 0 4px;
}

.tier-period {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.tier-features li {
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ===== FOUNDING BANNER ===== */
.founding-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.founding-banner h2 { color: var(--alabaster); margin-bottom: 20px; }
.founding-banner p { color: rgba(245,240,232,0.8); max-width: 600px; margin: 0 auto 32px; }

/* ===== APPLICATION GATE ===== */
.application-gate {
  background: var(--cream);
  padding: 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.gate-statement {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 32px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.checkbox-row label {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== SIGNATURE TALKS ===== */
.talk {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.talk:last-child { border-bottom: none; }
.talk h3 { margin-bottom: 8px; }
.talk-audience {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== CREDENTIALS ===== */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  padding: 40px 0;
}

.credential {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  white-space: nowrap;
}

.credential + .credential::before {
  content: '·';
  margin-right: 28px;
  color: var(--gold);
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(30,42,58,0.12);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { min-height: 140px; resize: vertical; }

.form-inline { display: flex; gap: 0; }
.form-inline input { flex: 1; border-right: none; }
.form-inline .btn { white-space: nowrap; border: 1px solid var(--gold); }
.form-inline button[type="submit"] {
  padding: 16px 32px; background: var(--gold); color: white;
  font-family: var(--font-b); font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; border: 1px solid var(--gold); cursor: pointer;
  transition: all 0.3s; white-space: nowrap;
}
.form-inline button[type="submit"]:hover { opacity: 0.9; }

.form-success {
  text-align: center; padding: 40px 24px;
}
.form-success p {
  font-family: var(--font-h); font-size: 20px; color: var(--navy);
  line-height: 1.6; margin: 0;
}
.section--navy .form-success p { color: var(--alabaster); }

.form-error {
  text-align: center; font-size: 14px; color: #c0392b; margin-top: 12px;
}
.form-error a { color: #c0392b; text-decoration: underline; font-weight: 400; }
.form-error a:hover { color: var(--navy); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(245,240,232,0.6);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 32px; height: 32px; opacity: 0.7; }

.footer-brand-name {
  font-family: var(--font-h);
  font-size: 16px;
  color: var(--alabaster);
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer h4 {
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer p { color: rgba(245,240,232,0.6); font-size: 14px; }
.footer a { color: rgba(245,240,232,0.6); font-size: 14px; }
.footer a:hover { color: var(--gold); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: rgba(245,240,232,0.35); }

/* ===== SAMHSA ===== */
.samhsa {
  text-align: center;
  padding: 32px 0;
  font-size: 13px;
  color: var(--navy);
  opacity: 0.55;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

/* ===== THE QUIET COLLAPSE SECTION ===== */
.quiet-collapse {
  position: relative;
  padding: 100px 0;
  background: #1E2A3A;
  overflow: hidden;
}

.quiet-collapse-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.quiet-collapse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,42,58,0.92) 0%, rgba(30,42,58,0.7) 60%, rgba(30,42,58,0.4) 100%);
}

.quiet-collapse-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 80px;
}

.quiet-collapse-content .eyebrow {
  color: var(--gold);
}

.quiet-collapse-headline {
  font-family: var(--font-h);
  font-size: 38px;
  color: var(--alabaster);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.quiet-collapse-content .divider {
  margin-bottom: 32px;
}

.quiet-collapse-content p {
  color: var(--alabaster);
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  max-width: 800px;
}

.quiet-collapse-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.quiet-collapse-link:hover {
  text-decoration: underline;
  color: var(--gold-soft);
}

.quiet-collapse-secondary {
  margin-top: 32px;
}

.quiet-collapse-tagline {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 17px;
  color: rgba(245,240,232,0.75);
  margin-bottom: 12px;
}

.quiet-collapse-begin {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--alabaster);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.quiet-collapse-begin:hover {
  text-decoration: underline;
  color: var(--gold);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 38px; letter-spacing: 2px; }
  h2 { font-size: 28px; }
  .container { padding: 0 32px; }
  .container-narrow { padding: 0 32px; }
  .section { padding: 80px 0; }
  .two-cards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-image { min-height: 400px; }
  .split-content { padding: 60px 40px; }
  .tiers { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-grid-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .quiet-collapse { padding: 80px 0; }
  .quiet-collapse-content { padding: 0 40px; }
  .quiet-collapse-overlay { background: linear-gradient(90deg, rgba(30,42,58,0.95) 0%, rgba(30,42,58,0.85) 100%); }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; letter-spacing: 1px; }
  h2 { font-size: 24px; letter-spacing: 1px; }
  .section { padding: 64px 0; }
  .container { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }

  .announcement-bar { padding: 0 40px 0 16px; height: auto; min-height: 48px; padding-top: 8px; padding-bottom: 8px; }
  .announcement-bar-content p { font-size: 12px; line-height: 1.3; white-space: normal; }

  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open a { color: var(--alabaster) !important; font-size: 14px; }
  .nav-links.open .nav-cta { color: var(--gold) !important; border-color: var(--gold) !important; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-content p { font-size: 16px; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }
  .split-content { padding: 48px 24px; }
  .path-card { padding: 40px 28px; }
  .authority-logos { gap: 24px; }
  .authority-logos img { height: 48px; }
  .form-inline { flex-direction: column; }
  .form-inline input { border-right: 1px solid rgba(30,42,58,0.12); }
  .application-gate { padding: 40px 24px; }
  .testimonial-card { padding: 36px 28px; }
  .quiet-collapse { padding: 64px 0; }
  .quiet-collapse-content { padding: 0 24px; max-width: 100%; }
  .quiet-collapse-headline { font-size: 28px; }
  .quiet-collapse-bg { opacity: 0.1; }
  .quiet-collapse-overlay { background: rgba(30,42,58,0.95); }
}

/* ============================================================
   FOUNDING 50 PAGE
   /founding-50 — standalone landing + application page
   ============================================================ */

/* -- Variables -- */
.f50-body {
  background: #1E2A3A;
}

/* -- Logo-Only Header -- */
.f50-header {
  padding: 40px 0;
  text-align: center;
}

.f50-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.f50-logo img {
  width: 36px;
  height: 36px;
}

.f50-logo .nav-logo-name {
  color: var(--alabaster);
}

/* -- 1.1 Hero (Two-Column) -- */
.f50-hero {
  background: #1E2A3A;
}

.f50-hero-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 90vh;
}

.f50-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  text-align: left;
}

.f50-hero-image {
  position: relative;
  overflow: hidden;
}

.f50-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.f50-eyebrow {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.f50-headline {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--alabaster);
  margin-bottom: 32px;
}

.f50-hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 32px;
  opacity: 0.6;
}

.f50-orientation {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.65);
  max-width: 560px;
  margin: 0 0 28px;
}

.f50-subheadline {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--alabaster);
  max-width: 600px;
  margin: 0 0 24px;
}

/* -- Counter Text (plain, no badge) -- */
.f50-counter-text {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* -- Buttons -- */
.f50-btn-primary {
  display: inline-block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1E2A3A;
  background: var(--gold);
  padding: 20px 48px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 24px;
  text-decoration: none;
}

.f50-btn-primary:hover {
  background: #A07835;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,62,0.25);
}

.f50-btn-secondary {
  display: inline-block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 20px 48px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.f50-btn-secondary:hover {
  background: var(--gold);
  color: #1E2A3A;
  transform: translateY(-2px);
}

/* -- Recognition Section -- */
.f50-recognition {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}

.f50-recognition p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.9;
  color: var(--alabaster);
}

/* -- 1.2 Personal Letter -- */
.f50-letter {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 96px;
}

.f50-letter p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--alabaster);
  max-width: none;
  margin-bottom: 1.6em;
}

.f50-letter p:last-of-type {
  margin-bottom: 0;
}

.f50-signature {
  margin-top: 32px;
}

.f50-signature-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.f50-signature-closing {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--alabaster);
  margin-bottom: 8px;
  text-align: center;
}

.f50-signature-name {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  display: block;
  text-align: center;
}

/* -- 1.3 What's Included -- */
.f50-benefits {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
  border-top: 1px solid var(--gold);
}

.f50-benefits-headline {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--alabaster);
  text-align: center;
  margin-bottom: 40px;
}

.f50-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.f50-checklist--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.f50-checklist li {
  padding: 10px 0 10px 28px;
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--alabaster);
  position: relative;
}

.f50-checklist li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.7;
}

.f50-benefits-closing {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--alabaster);
  text-align: center;
  margin-bottom: 40px;
}

.f50-pricing-display {
  text-align: center;
  margin-top: 40px;
}

.f50-founding-price {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
}

.f50-future-price {
  font-family: var(--font-b);
  font-size: 14px;
  color: #B0A898;
}

/* -- 1.4 Testimonials -- */
.f50-testimonials {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.f50-testimonials-heading {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--alabaster);
  text-align: center;
  margin-bottom: 48px;
}

.f50-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.f50-testimonial-card {
  background: #243447;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.f50-testimonial-card::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.5;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.f50-testimonial-card blockquote {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--alabaster);
  margin: 24px 0 20px;
}

.f50-testimonial-card cite {
  font-family: var(--font-b);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* -- Second CTA Section -- */
.f50-second-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}

.f50-second-cta h2 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 400;
  color: var(--alabaster);
  margin-bottom: 24px;
  line-height: 1.3;
}

/* -- Form Intro -- */
.f50-form-intro {
  text-align: center;
  padding: 0 40px 32px;
}

.f50-form-intro p {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--alabaster);
}

/* -- Application Form -- */
.f50-form-section {
  padding: 0 40px 80px;
}

.f50-form-panel {
  max-width: 780px;
  margin: 0 auto;
  background: #243447;
  border-radius: 16px;
  padding: 48px;
}

.f50-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.f50-form-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  display: block;
}

.f50-form-header p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.6);
  max-width: none;
}

/* -- Form Fields -- */
.f50-form-group {
  margin-bottom: 28px;
}

.f50-form-group label {
  display: block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.f50-form-group input[type="text"],
.f50-form-group input[type="email"],
.f50-form-group select,
.f50-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 300;
  color: var(--alabaster);
  background: #1E2A3A;
  border: 1px solid #3D4F63;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.f50-form-group input::placeholder,
.f50-form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.f50-form-group input:focus,
.f50-form-group select:focus,
.f50-form-group textarea:focus {
  border-color: var(--gold);
}

.f50-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.f50-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5F0E8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.f50-form-group select option {
  background: #1E2A3A;
  color: var(--alabaster);
}

.f50-form-group .f50-field-error {
  font-family: var(--font-b);
  font-size: 13px;
  color: #E8A87C;
  margin-top: 6px;
  display: none;
}

.f50-form-group.has-error .f50-field-error {
  display: block;
}

.f50-form-group.has-error input,
.f50-form-group.has-error select,
.f50-form-group.has-error textarea {
  border-color: #E8A87C;
}

/* -- Custom Checkboxes -- */
.f50-checkbox-group {
  margin-bottom: 28px;
}

.f50-checkbox-group > label:not(.f50-checkbox) {
  display: block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.f50-checkbox-group .f50-field-error {
  font-family: var(--font-b);
  font-size: 13px;
  color: #E8A87C;
  margin-top: 6px;
  display: none;
}

.f50-checkbox-group.has-error .f50-field-error {
  display: block;
}

.f50-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #2A3A4A;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.f50-checkbox:last-of-type {
  border-bottom: none;
}

.f50-checkbox:has(input:checked) {
  background: rgba(184, 150, 62, 0.08);
}

.f50-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.f50-checkbox-mark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--gold);
  background: transparent;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}

.f50-checkbox input:checked + .f50-checkbox-mark {
  background: var(--gold);
  border-color: var(--gold);
}

.f50-checkbox input:checked + .f50-checkbox-mark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid #1E2A3A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.f50-checkbox-text {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 14px;
  color: var(--alabaster);
  line-height: 1.5;
}

/* -- Custom Radio Buttons (square, matching checkboxes) -- */
.f50-radio-group {
  margin-bottom: 28px;
}

.f50-radio-group > label:not(.f50-radio) {
  display: block;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.f50-radio-intro-panel {
  background: #1A2535;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  margin-bottom: 20px;
}

.f50-radio-group .f50-radio-intro {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  color: var(--alabaster);
  line-height: 1.7;
  margin-bottom: 0;
}

.f50-radio-group .f50-field-error {
  font-family: var(--font-b);
  font-size: 13px;
  color: #E8A87C;
  margin-top: 6px;
  display: none;
}

.f50-radio-group.has-error .f50-field-error {
  display: block;
}

.f50-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #2A3A4A;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.f50-radio:last-of-type {
  border-bottom: none;
}

.f50-radio:has(input:checked) {
  background: rgba(184, 150, 62, 0.08);
}

.f50-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.f50-radio-mark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--gold);
  background: transparent;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}

.f50-radio input:checked + .f50-radio-mark {
  background: var(--gold);
  border-color: var(--gold);
}

.f50-radio input:checked + .f50-radio-mark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid #1E2A3A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.f50-radio-text {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 16px;
  color: var(--alabaster);
  line-height: 1.5;
}

/* -- Conditional Question Field -- */
.f50-question-field {
  display: none;
  margin-top: 16px;
  margin-bottom: 0;
}

.f50-question-field.visible {
  display: block;
}

/* -- Submit Button -- */
.f50-submit-btn {
  width: auto;
  min-width: 320px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1E2A3A;
  background: var(--gold);
  padding: 20px 48px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 8px;
}

.f50-submit-btn:hover {
  background: #A07835;
}

.f50-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.f50-submit-btn .f50-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #1E2A3A;
  border-top-color: transparent;
  border-radius: 50%;
  animation: f50-spin 0.7s linear infinite;
}

.f50-submit-btn.loading .f50-spinner {
  display: inline-block;
}

@keyframes f50-spin {
  to { transform: rotate(360deg); }
}

.f50-reassurance {
  font-family: var(--font-b);
  font-size: 13px;
  color: #8B9E8B;
  text-align: left;
  margin-top: 16px;
  line-height: 1.6;
}

/* -- Form Error (global) -- */
.f50-form-error-msg {
  font-family: var(--font-b);
  font-size: 14px;
  color: #E8A87C;
  text-align: center;
  margin-top: 16px;
  display: none;
}

/* -- Confirmation B (inline) -- */
.f50-confirmation-b {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.f50-confirmation-b.visible {
  display: block;
}

.f50-confirmation-b p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--alabaster);
  max-width: none;
}

/* -- 1.7 Waitlist / Sold-Out -- */
.f50-waitlist {
  display: none;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.f50-waitlist.visible {
  display: block;
}

.f50-waitlist h2 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 400;
  color: var(--alabaster);
  margin-bottom: 20px;
  line-height: 1.3;
}

.f50-waitlist > p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--alabaster);
  max-width: none;
  margin-bottom: 32px;
}

.f50-waitlist-form {
  max-width: 400px;
  margin: 0 auto;
}

.f50-waitlist-success {
  display: none;
  text-align: center;
}

.f50-waitlist-success.visible {
  display: block;
}

.f50-waitlist-success p {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 22px;
  color: var(--alabaster);
  line-height: 1.5;
}

/* -- Minimal Footer -- */
.f50-footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(245,240,232,0.08);
}

.f50-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.f50-footer-logo img {
  width: 28px;
  height: 28px;
  opacity: 0.6;
}

.f50-footer-logo .footer-brand-name {
  font-family: var(--font-h);
  font-size: 14px;
  color: rgba(245,240,232,0.6);
}

.f50-footer p {
  font-family: var(--font-b);
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  margin-bottom: 4px;
  max-width: none;
}

.f50-footer a {
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.f50-footer a:hover {
  color: var(--gold);
}

/* -- Confirmation A Page -- */
.f50-confirm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.f50-confirm-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.f50-confirm-inner {
  max-width: 640px;
  text-align: center;
}

.f50-confirm-inner h1 {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 400;
  color: var(--alabaster);
  margin-bottom: 16px;
}

.f50-confirm-inner .f50-confirm-subtitle {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 40px;
}

.f50-confirm-inner .f50-confirm-body {
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}

.f50-confirm-inner .f50-confirm-body p {
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.9;
  color: var(--alabaster);
  max-width: none;
  margin-bottom: 1.5em;
}

.f50-confirm-inner .f50-confirm-body strong {
  font-weight: 400;
  color: var(--alabaster);
}

.f50-confirm-inner .f50-confirm-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}

.f50-confirm-inner .f50-confirm-body ul li {
  padding: 8px 0 8px 24px;
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--alabaster);
  position: relative;
}

.f50-confirm-inner .f50-confirm-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== FOUNDING 50 RESPONSIVE ===== */
@media (max-width: 1024px) {
  .f50-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Hero: single column, image above text */
  .f50-hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .f50-hero-image {
    order: -1;
    height: 50vh;
    width: 100%;
  }

  .f50-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 58, 0.4);
  }

  .f50-hero-text {
    padding: 40px 24px 60px;
  }

  .f50-headline {
    font-size: 36px;
  }

  .f50-subheadline {
    font-size: 18px;
  }

  .f50-orientation {
    font-size: 15px;
  }

  .f50-counter-text {
    font-size: 13px;
  }

  .f50-hero .f50-btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Recognition */
  .f50-recognition {
    padding: 60px 40px;
  }

  /* Letter */
  .f50-letter {
    padding: 60px 24px 64px;
  }

  .f50-letter p {
    font-size: 16px;
  }

  /* Benefits */
  .f50-benefits {
    padding: 48px 24px;
  }

  .f50-checklist--two-col {
    grid-template-columns: 1fr;
  }

  .f50-checklist li {
    font-size: 16px;
  }

  /* Testimonials */
  .f50-testimonials {
    padding: 48px 24px;
  }

  .f50-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .f50-testimonial-card {
    padding: 24px;
    border-radius: 12px;
  }

  .f50-testimonial-card blockquote {
    font-size: 16px;
  }

  /* Second CTA */
  .f50-second-cta {
    padding: 48px 24px;
  }

  .f50-second-cta h2 {
    font-size: 28px;
  }

  /* Form */
  .f50-form-intro {
    padding: 0 24px 24px;
  }

  .f50-form-section {
    padding: 0 24px 60px;
  }

  .f50-form-panel {
    padding: 20px;
    border-radius: 12px;
  }

  .f50-form-group input[type="text"],
  .f50-form-group input[type="email"],
  .f50-form-group select {
    min-height: 52px;
  }

  .f50-form-group textarea {
    min-height: auto;
  }

  .f50-checkbox {
    min-height: 48px;
  }

  .f50-checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .f50-radio {
    min-height: 48px;
  }

  .f50-radio-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .f50-submit-btn {
    width: 100%;
    min-height: 56px;
    min-width: auto;
  }

  .f50-btn-primary,
  .f50-btn-secondary {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
  }

  .f50-checkbox-text {
    font-size: 13px;
  }

  .f50-radio-text {
    font-size: 15px;
  }

  /* Waitlist */
  .f50-waitlist {
    padding: 0 24px 60px;
  }

  .f50-waitlist h2 {
    font-size: 30px;
  }

  /* Footer */
  .f50-footer {
    padding: 40px 24px;
  }

  /* Confirmation page */
  .f50-confirm-content {
    padding: 60px 24px;
  }

  .f50-confirm-inner h1 {
    font-size: 36px;
  }

  .f50-confirm-inner .f50-confirm-subtitle {
    font-size: 18px;
  }

  .f50-confirm-inner .f50-confirm-body p,
  .f50-confirm-inner .f50-confirm-body ul li {
    font-size: 16px;
  }
}
