:root {
  --orange: #FF6B2C;
  --orange-dark: #E8481F;
  --orange-light: #FFA366;
  --orange-tint: rgba(255, 107, 44, .1);
  --orange-tint-strong: rgba(255, 107, 44, .18);
  --ink-900: #201811;
  --ink-700: #4a3f38;
  --ink-500: #7c7168;
  --bg-cream: #faf7f3;
  --bg-cream-2: #f3ede4;
  --dark-1: #241a14;
  --dark-2: #3d2013;
  --near-black: #14100c;
  --line: #e8e0d5;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(32, 24, 17, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink-700);
  background: var(--bg-cream);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(1160px, 92%); margin: 0 auto; }
h1, h2, h3 { color: var(--ink-900); margin-top: 0; }
::selection { background: var(--orange-tint-strong); }

.hero-title, h1, .cta-inner h2, .section-head h2, .dark-section h2, .app-section h2, .results-section .section-head h2, .roster-body h2 {
  font-family: Anton, Inter, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 54px;
  padding: 0 26px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-small { min-height: 44px; padding: 0 20px; }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 30px rgba(232, 72, 31, .3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(232, 72, 31, .36); }
.btn-secondary {
  color: var(--ink-900);
  background: rgba(255,255,255,.8);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border: 1px solid rgba(255, 107, 44, .18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow.light {
  color: var(--orange-light);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.14);
}

/* PROMO BANNER */
.promo-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: white;
}
.promo-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 40px 8px 12px;
  text-align: center;
  position: relative;
  flex-wrap: wrap;
}
.promo-text { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.promo-badge {
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 4px 10px;
}
.promo-msg { font-weight: 900; font-size: 14px; letter-spacing: .02em; }
.promo-link { font-weight: 900; font-size: 13px; text-decoration: underline; white-space: nowrap; }
.promo-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: white;
  opacity: .85;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  width: 28px;
  height: 28px;
}
.promo-banner.hidden { display: none; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 243, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 22px; letter-spacing: -0.6px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  box-shadow: 0 8px 20px rgba(232, 72, 31, .3);
}
.brand-mark.small { width: 34px; height: 34px; border-radius: 10px; }
.brand-text strong { font-weight: 900; }
.brand-text em { font-style: normal; color: var(--orange); font-weight: 900; margin-left: 2px; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 700; color: var(--ink-500); }
.main-nav a { text-decoration: none; color: inherit; }
.main-nav a:hover { color: var(--orange-dark); }
.nav-toggle { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink-900); margin: 5px 0; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 163, 102, .3), transparent 34%),
    radial-gradient(circle at 10% 30%, rgba(232, 72, 31, .16), transparent 28%),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-2) 100%);
}
.hero-grid { display: flex; flex-wrap: wrap; gap: 52px; align-items: center; }
.hero-copy { flex: 1 1 480px; min-width: 320px; }
h1 { font-size: clamp(38px, 6.4vw, 70px); line-height: .98; letter-spacing: -1px; margin: 0 0 22px; }
.lead { font-size: 19px; color: var(--ink-500); max-width: 640px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 26px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 22px; color: var(--ink-700); font-weight: 800; font-size: 14px; }
.hero-point { display: inline-flex; align-items: center; gap: 8px; }
.point-icon { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-dark); flex: none; }

.hero-visual { flex: 1 1 360px; min-width: 300px; position: relative; min-height: 520px; }
.phone-frame {
  width: min(400px, 100%); height: 500px; border-radius: 42px; padding: 15px;
  margin-left: auto;
  background: linear-gradient(160deg, #3a2417, #6b3a20);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.16);
}
.session-screen {
  position: relative;
  height: 100%; border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  color: white;
  background:
    linear-gradient(180deg, rgba(20,16,12,.05), rgba(20,16,12,.9)),
    radial-gradient(circle at 20% 18%, rgba(255,107,44,.35), transparent 30%),
    #0c0906;
}
.session-top {
  align-self: flex-start; margin: 20px 0 0 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 8px 12px; font-weight: 900; font-size: 13px;
  backdrop-filter: blur(6px);
}
.session-spacer { flex: 1; }
.session-bottom { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 12px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange-dark); animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,72,31,.35); } 50% { box-shadow: 0 0 0 7px rgba(232,72,31,0); } }
.coach-bubble { background: rgba(250,247,243,.95); color: var(--ink-900); border-radius: 20px; padding: 18px; box-shadow: 0 16px 36px rgba(20,16,12,.22); }
.coach-bubble span { color: var(--orange-dark); display: block; font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.workout-card {
  display: flex; justify-content: space-between; gap: 14px; align-items: end;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 18px; backdrop-filter: blur(6px);
}
.workout-card small { display: block; opacity: .7; margin-bottom: 4px; }
.mini-stats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.mini-stats span { background: rgba(255,255,255,.14); padding: 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.mini-stats .live-tag { background: rgba(232,72,31,.55); }

.floating-card {
  position: absolute; background: white; border: 1px solid var(--line);
  border-radius: 18px; padding: 15px 17px; box-shadow: 0 16px 40px rgba(20,16,12,.15);
}
.floating-card strong { display: block; color: var(--ink-900); }
.floating-card span { color: var(--ink-500); font-size: 13px; font-weight: 650; }
.card-one { left: 4px; top: 70px; }
.card-two { right: 0; bottom: 30px; }

.image-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.4);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 10px, transparent 10px 20px);
  border: 1px dashed rgba(255,255,255,.18);
}
.image-placeholder::before { content: attr(data-placeholder); max-width: 200px; }
.image-placeholder.avatar-placeholder {
  position: relative; inset: auto;
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--orange-tint), rgba(255, 163, 102, .18));
  border: 1px dashed rgba(232,72,31,.35);
  color: var(--orange-dark);
}
.image-placeholder.avatar-placeholder::before { font-size: 10px; max-width: 70px; }

.session-illustration { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.coach-avatar-img { width: 96px; height: 96px; margin: 0 auto 16px; display: block; }

/* PROOF STRIP */
.proof-strip { padding: 26px 0; background: var(--dark-1); color: white; }
.proof-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.proof-item { flex: 1 1 200px; padding: 8px 0; display: flex; align-items: center; gap: 14px; }
.proof-icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: var(--orange-light); }
.proof-item strong { display: block; font-size: 22px; }
.proof-item span { color: rgba(255,255,255,.62); font-weight: 650; }

/* GENERIC SECTION */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4.6vw, 48px); line-height: 1.06; letter-spacing: -.5px; margin: 0 0 14px; }
.section-head p { color: var(--ink-500); font-size: 17px; margin: 0; }
.body-text { color: var(--ink-500); font-size: 17px; margin: 0 0 16px; }
.body-emphasis { color: var(--ink-700); font-size: 18px; font-weight: 700; margin: 0; }

.split-grid { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.split-grid > div { flex: 1 1 420px; min-width: 300px; }
.problem-grid h2 { font-size: clamp(28px, 4.6vw, 48px); line-height: 1.06; letter-spacing: -.5px; margin: 0 0 18px; }
.problem-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.problem-card, .card-surface, .process-card, .price-card, .coach-card, .faq-item {
  background: white; border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 12px 34px rgba(20,16,12,.06);
}
.problem-card { padding: 24px; }
.problem-card strong { display: block; font-size: 18px; margin-bottom: 8px; color: var(--ink-900); }
.problem-card span { color: var(--ink-500); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 26px; border-radius: var(--radius); }
.step-num {
  display: inline-block; color: var(--orange-dark); background: var(--orange-tint);
  border-radius: 999px; padding: 7px 11px; font-weight: 900; font-size: 12px; margin-bottom: 18px;
}
.process-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -.3px; }
.process-card p { color: var(--ink-500); margin: 0; }

.dark-section { background: linear-gradient(135deg, var(--dark-1), var(--dark-2)); color: rgba(255,255,255,.8); }
.dark-section h2 { color: white; font-size: clamp(28px, 4.6vw, 46px); line-height: 1.05; letter-spacing: -.5px; margin: 0 0 14px; }
.dark-section p { font-size: 17px; }
.benefit-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.benefit-list div { padding: 22px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); border-radius: 20px; }
.benefit-list strong { display: block; color: white; font-size: 19px; margin-bottom: 7px; }
.benefit-list span { color: rgba(255,255,255,.72); }

/* ========== RESULTS SECTION ========== */
.results-section { background: var(--bg-cream-2); }

.results-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px;
  margin-top: 20px;
}

.result-card {
  padding: 18px;
  text-align: center;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(20,16,12,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,16,12,.12);
}

.result-images {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px;
  margin-bottom: 14px;
}

.result-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-cream-2);
  width: 100%;
}

.result-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Face blur overlay (top portion) */
.result-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.05);
  z-index: 2;
  pointer-events: none;
}

.result-tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 3;
}

.tag-before { background: rgba(20,16,12,.85); }
.tag-after { background: rgba(255, 107, 44, .95); }

.result-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 8px 0 4px;
  font-family: Inter, sans-serif;
  text-transform: none;
}

.result-note {
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}

/* Results Responsive */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .result-card {
    padding: 12px;
    border-radius: 18px;
  }
  .result-images {
    gap: 6px;
  }
  .result-tag {
    font-size: 10px;
    padding: 4px 8px;
    bottom: 6px;
    left: 6px;
  }
  .result-card h3 {
    font-size: 14px;
  }
  .result-note {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .results-grid {
    grid-template-columns: 1fr !important;
  }
  .result-card {
    padding: 16px;
  }
  .result-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .result-card h3 {
    font-size: 17px;
  }
  .result-note {
    font-size: 14px;
  }
}

/* COACHES */
.section-head .btn { margin-top: 10px; }
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.coach-card { padding: 22px; text-align: center; border-radius: var(--radius); cursor: pointer; }
.coach-card h3 { font-size: 22px; margin: 0 0 8px; }
.coach-card p { margin: 0; color: var(--ink-500); }

/* ROSTER MODAL */
.roster-modal { position: fixed; inset: 0; z-index: 100; background: var(--bg-cream); overflow-y: auto; }
.roster-modal[hidden] { display: none; }
.roster-header { position: sticky; top: 0; z-index: 2; background: rgba(250,247,243,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.roster-header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.roster-back { cursor: pointer; display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-weight: 800; font-size: 15px; color: var(--ink-700); }
.roster-count-label { font-weight: 800; color: var(--ink-500); font-size: 14px; }
.roster-body { padding: 48px 0 90px; }
.roster-body h2 { font-size: clamp(30px, 5vw, 52px); line-height: 1.04; letter-spacing: -.5px; margin: 0 0 30px; }
.roster-filters { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.filter-btn {
  cursor: pointer; border-radius: 999px; min-height: 44px; padding: 0 18px; font-weight: 800; font-size: 13px;
  border: 1px solid var(--line); background: white; color: var(--ink-700);
}
.filter-btn.active { border-color: var(--orange); background: var(--orange); color: white; }
.roster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.roster-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; text-align: center; }
.roster-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center; color: white; font-weight: 900; font-size: 22px; }
.roster-card strong { display: block; color: var(--ink-900); font-size: 14px; margin-bottom: 3px; }
.roster-category { display: block; color: var(--orange-dark); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.roster-specialty { color: var(--ink-500); font-size: 12px; }

/* APP FEATURES */
.app-section { background: var(--dark-1); color: rgba(255,255,255,.76); }
.app-grid { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.app-grid > div:first-child { flex: 1 1 340px; min-width: 280px; }
.app-section h2 { color: white; font-size: clamp(28px, 4.6vw, 44px); line-height: 1.05; letter-spacing: -.5px; margin: 0 0 14px; }
.app-features { flex: 1 1 420px; min-width: 280px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.app-features div { padding: 20px; border-radius: 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: white; font-weight: 800; }
.app-features div::before { content: "●"; color: var(--orange-light); margin-right: 8px; }

/* PRICING */
.pricing-section { background: var(--bg-cream-2); }
.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.billing-toggle { display: inline-flex; background: white; border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; box-shadow: 0 8px 22px rgba(20,16,12,.06); }
.billing-tab { cursor: pointer; border: 0; background: transparent; border-radius: 999px; min-height: 44px; padding: 0 20px; font-weight: 800; font-size: 14px; color: var(--ink-700); }
.billing-tab.active { color: white; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.selection-banner {
  max-width: 640px; margin: 0 auto 30px; text-align: center;
  background: var(--orange-tint-strong); border: 1px solid rgba(255,107,44,.3); color: #a83a12;
  border-radius: 999px; padding: 12px 20px; font-weight: 800;
}
.selection-banner a { color: inherit; text-decoration: underline; }
.selection-banner[hidden] { display: none; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; align-items: stretch; }
.price-card {
  padding: 30px; display: flex; flex-direction: column; position: relative;
  border-radius: var(--radius); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
}
.price-card.selected, .price-card.featured { transform: translateY(-6px); border: 2px solid var(--orange); box-shadow: 0 20px 50px rgba(232,72,31,.2); }
.price-badge { position: absolute; right: 22px; top: 22px; background: var(--orange-dark); color: white; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 900; }
.price-check { position: absolute; left: 22px; top: 22px; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: white; display: grid; place-items: center; font-weight: 900; font-size: 14px; }
.price-top h3 { font-size: 24px; margin: 0 0 8px; }
.price-top p { color: var(--ink-500); min-height: 50px; margin: 0; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.price-amount { color: var(--ink-900); font-size: 44px; line-height: 1; font-weight: 900; letter-spacing: -1.5px; }
.price-amount .period { color: var(--ink-500); font-size: 15px; margin-left: 4px; font-weight: 700; }
.price-strike { color: var(--ink-500); font-size: 18px; font-weight: 800; text-decoration: line-through; }
.price-cycle { color: var(--orange-dark); font-size: 14px; font-weight: 800; margin: 10px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li { margin: 12px 0; font-weight: 650; color: var(--ink-700); }
.price-card li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 9px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card .btn-outline { color: var(--ink-900); background: var(--bg-cream); border: 1px solid var(--line); }
.price-card .btn-outline:hover { border-color: var(--orange); color: var(--orange-dark); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.faq-item { padding: 22px 24px; cursor: pointer; border-radius: 22px; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-question span:first-child { color: var(--ink-900); font-weight: 900; font-size: 17px; }
.faq-toggle-icon { flex: none; color: var(--orange); font-weight: 900; font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer { color: var(--ink-500); margin: 14px 0 0; display: none; }
.faq-item.open .faq-answer { display: block; }

/* CTA / LEAD FORM */
.cta-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(232,72,31,.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255,107,44,.22), transparent 32%),
    linear-gradient(135deg, var(--dark-1), var(--dark-2));
}
.cta-inner { text-align: center; color: rgba(255,255,255,.78); }
.cta-inner h2 { color: white; max-width: 760px; margin: 0 auto 14px; font-size: clamp(28px, 4.6vw, 50px); line-height: 1.06; letter-spacing: -.5px; }
.cta-lead { max-width: 640px; margin: 0 auto 30px; font-size: 17px; }
.cta-success {
  max-width: 560px; margin: 0 auto; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px; padding: 40px 30px;
}
.cta-success[hidden] { display: none; }
.success-check { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px; background: var(--orange); display: grid; place-items: center; font-size: 26px; font-weight: 900; color: white; }
.cta-success h3 { color: white; margin: 0 0 8px; font-size: 22px; }

.lead-form {
  display: flex; flex-wrap: wrap; gap: 14px; max-width: 800px; margin: 0 auto;
  padding: 26px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px; text-align: left;
}
.lead-form[hidden] { display: none; }
.field { flex: 1 1 200px; display: flex; flex-direction: column; gap: 6px; }
.lead-form input, .lead-form select {
  width: 100%; box-sizing: border-box; min-height: 54px; border: 1px solid transparent; border-radius: 16px;
  padding: 0 16px; font: inherit; font-weight: 700; color: var(--ink-900); outline: none;
}
.lead-form input.error, .lead-form select.error { border-color: #d3492c; }
.field-error { color: #ffb199; font-size: 13px; font-weight: 700; min-height: 16px; }
.lead-submit { min-height: 54px; border-radius: 16px; font-size: 16px; width: 100%; flex: 1 1 100%; }
.lead-submit:disabled { opacity: .7; cursor: not-allowed; }
.form-error { display: block; width: 100%; text-align: center; color: #ffb199; font-weight: 700; font-size: 14px; min-height: 18px; }

/* FOOTER */
.site-footer { background: var(--near-black); color: rgba(255,255,255,.66); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 30px; }
.footer-brand { color: white; margin-bottom: 10px; text-decoration: none; }
.site-footer h4 { color: white; margin: 0 0 12px; letter-spacing: .08em; font-size: 13px; }
.site-footer a { display: block; margin: 8px 0; color: inherit; text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .main-nav {
    position: fixed; left: 4%; right: 4%; top: 78px;
    display: none; flex-direction: column; align-items: stretch;
    background: white; padding: 20px; border: 1px solid var(--line);
    border-radius: 22px; box-shadow: var(--shadow); gap: 16px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-visual { min-height: auto; }
  .phone-frame { margin: 0 auto; height: 460px; }
  .floating-card { position: static; margin: 12px auto 0; width: min(400px, 100%); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner { height: 68px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 56px 0 48px; }
  .lead { font-size: 17px; }
  .section { padding: 60px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .phone-frame { height: 420px; border-radius: 34px; }
  .session-screen { border-radius: 26px; }
  .promo-msg { font-size: 12.5px; }
  .lead-form { border-radius: 22px; }
}