/* ==========================================================================
   Fitness Business Mastery — Funnel styles
   Brand: gold #BE9333 · dark gold #A68C4F · navy #2B3E50 · black · white
   Type: Raleway (headings/body) · Oswald (labels/subheads)
   ========================================================================== */

:root {
  --gold: #BE9333;
  --gold-dark: #A68C4F;
  --gold-soft: rgba(190, 147, 51, 0.16);
  --gold-line: rgba(190, 147, 51, 0.38);
  --navy: #2B3E50;
  --black: #000000;
  --white: #FFFFFF;
  --card: #1E1E1E;
  --card-2: #181818;
  --ink: #07090c;
  --muted: rgba(255, 255, 255, 0.64);
  --muted-2: rgba(255, 255, 255, 0.42);
  --hair: rgba(255, 255, 255, 0.08);
  --danger: #c45c4a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --font-h: "Raleway", system-ui, sans-serif;
  --font-l: "Oswald", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-underline-offset: 3px; }
button { font-family: inherit; }
[hidden] { display: none !important; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
.eyebrow,
.label,
.btn,
.nav-cta,
.faq-q,
.stat-k,
.tile-k,
.cal-label {
  font-family: var(--font-l);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, .h1, .h2 {
  font-family: var(--font-h);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

h1, .h1 { font-size: clamp(2rem, 5.2vw, 3.55rem); }
h2, .h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 40rem;
  margin: 1.1rem auto 0;
}

.center { text-align: center; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1.05rem 1.8rem;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(190, 147, 51, 0.35);
}

.btn-gold:hover {
  background: #d0a44a;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(190, 147, 51, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-ghost:hover { background: var(--gold-soft); }

.btn-lg { min-width: min(100%, 22rem); font-size: 1.02rem; padding: 1.15rem 2rem; }
.btn-block { width: 100%; }

.guarantee-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-l);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: block;
  height: 46px;
  width: auto;
}

.logo img { height: 46px; width: auto; }

.nav-cta {
  font-size: 0.78rem;
  padding: 0.7rem 1.05rem;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 3.4rem 0 3.6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(43, 62, 80, 0.55), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(190, 147, 51, 0.07), transparent 40%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(190, 147, 51, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 147, 51, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.9rem;
  border: 1px solid var(--gold-line);
  background: rgba(190, 147, 51, 0.08);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 1.25rem;
}

.hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero .lede { max-width: 46rem; }

.hero-cta { margin-top: 1.5rem; }

/* Video slot */
.video-slot {
  position: relative;
  width: min(860px, 100%);
  margin: 2rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0c0e11;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(190, 147, 51, 0.12);
  isolation: isolate;
}

.video-slot.ratio-16x9 { aspect-ratio: 16 / 9; }
.video-slot.ratio-9x16 { aspect-ratio: 9 / 16; max-height: 560px; }

.video-slot iframe,
.video-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(190, 147, 51, 0.12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(190, 147, 51, 0.04) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #11141a 0%, #0a0c10 100%);
}

.play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(190, 147, 51, 0.4);
  transition: transform 0.2s ease;
}

.video-slot:hover .play { transform: scale(1.05); }

.play svg { margin-left: 4px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 4.6rem 0; position: relative; }
.section-navy { background: var(--navy); }
.section-card { background: #0d1014; }
.section-black { background: var(--black); }
.section-ink { background: var(--ink); }

.section-head { margin-bottom: 2.4rem; }
.section-head .eyebrow { color: var(--gold); font-size: 0.78rem; display: inline-block; margin-bottom: 0.7rem; }

/* On this call */
.call-list {
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  margin: 2.2rem auto 0;
  text-align: left;
}

.call-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
}

.call-item .mark {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
}

.stat {
  background: var(--card-2);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
}

.stat-v {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  letter-spacing: -0.03em;
}

.stat-k { font-size: 0.7rem; color: var(--muted); margin-top: 0.35rem; display: block; }

/* Guarantee cards */
.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.g-card {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}

.g-card .label { color: var(--gold); font-size: 0.72rem; }
.g-card h3 { margin: 0.45rem 0 0.55rem; }
.g-card p { margin: 0; color: var(--muted); }

/* What you get */
.get-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.get-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative;
}

.get-card::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  opacity: 0.55;
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 85% 100%, 100% 100%, 100% 0);
}

.get-num {
  font-family: var(--font-l);
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.get-card h3 { margin: 0.4rem 0 0.45rem; }
.get-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Proof
   -------------------------------------------------------------------------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.proof-card {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem 1.3rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.proof-card:hover { border-color: var(--gold-line); }

.proof-name {
  font-family: var(--font-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--white);
}

.proof-role { color: var(--muted-2); font-size: 0.82rem; margin: 0.15rem 0 0.7rem; }

.proof-result {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.proof-quote {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.proof-quote::before { content: "“"; color: var(--gold); }
.proof-quote::after { content: "”"; color: var(--gold); }

.proof-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.proof-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold);
  background: #111;
}

.proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

#results .wrap {
  width: min(1680px, calc(100vw - 1rem));
}
.proof-videos-card {
  padding: 1.6rem 1.15rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-videos-card .card-kicker {
  margin: 0 0 0.15rem;
  color: var(--gold);
  text-align: center;
}
.proof-videos-card .vgrid {
  margin: 1rem 0 0;
  gap: 1.4rem;
}
.proof-videos-card .vcard .video-slot {
  width: 100%;
  margin: 0;
  border: 1px solid var(--gold-line);
  background: #0a0a0a;
  max-height: none !important;
  aspect-ratio: 9 / 16;
}
.proof-videos-card .video-placeholder {
  z-index: 3;
  background: radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.32), transparent 58%);
  cursor: pointer;
  pointer-events: auto;
}
.proof-videos-card video { z-index: 0; object-fit: contain; background: #000; }
.proof-videos-card .play {
  width: 68px;
  height: 68px;
  pointer-events: none;
}
.proof-videos-card .play svg { width: 24px; height: 24px; }
.proof-videos-card .vname { margin-top: 0.55rem; color: var(--white); font-size: 0.78rem; }

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: #111;
  align-self: start;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #0a0a0a;
}

/* Video testimonial grid */
.vgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.vcard .video-slot {
  width: 100%;
  margin: 0;
  border-radius: 12px;
}

.vcard .play { width: 52px; height: 52px; }
.vcard .play svg { width: 18px; height: 18px; }
.vname {
  font-family: var(--font-l);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.55rem 0 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 0.65rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--white);
  border: 0;
  padding: 1.05rem 1.15rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: var(--font-h);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-q .plus {
  color: var(--gold);
  font-family: var(--font-l);
  font-size: 1.3rem;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-item.is-open { border-color: var(--gold-line); }
.faq-item.is-open .plus { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  margin: 0;
}

.faq-item.is-open .faq-a { display: block; }

/* --------------------------------------------------------------------------
   CTA band / footer
   -------------------------------------------------------------------------- */
.cta-band {
  padding: 4.2rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(190, 147, 51, 0.14), transparent 55%),
    var(--navy);
  text-align: center;
}

.site-footer {
  padding: 2.6rem 0 2rem;
  background: var(--black);
  border-top: 1px solid var(--hair);
  text-align: center;
}

.site-footer .logo { margin: 0 auto 1rem; height: 52px; }
.site-footer .logo img { height: 52px; margin: 0 auto; }

.legal {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  margin: 0.4rem 0 0.8rem;
}

.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--gold); }

.copy {
  font-family: var(--font-l);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
  margin: 0;
}

.fine {
  max-width: 46rem;
  margin: 0.9rem auto 0;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.6;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid var(--gold-line);
  backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   Apply modal
   -------------------------------------------------------------------------- */
.modal-root[hidden] { display: none !important; }

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.modal {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 1.4rem));
  max-height: min(92vh, 860px);
  margin: 3.5vh auto;
  background: #141414;
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.progress {
  height: 4px;
  background: #2a2a2a;
  flex: 0 0 auto;
}

.progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0;
  transition: width 0.28s ease;
}

.modal-bar {
  display: flex;
  justify-content: flex-end;
  padding: 0.7rem 0.8rem 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: #1c1c1c;
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
}

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

.modal-body {
  padding: 0.4rem 1.6rem 1.6rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.step { display: none; }
.step.is-on { display: block; }

.step h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  text-align: center;
  letter-spacing: -0.025em;
  margin: 0.2rem 0 0.55rem;
}

.helper {
  text-align: center;
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.choice-grid.one { grid-template-columns: 1fr; }

.choice {
  appearance: none;
  background: #1b1b1b;
  color: var(--white);
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  padding: 1rem 0.85rem;
  cursor: pointer;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.choice:hover,
.choice.is-on {
  border-color: var(--gold);
  background: rgba(190, 147, 51, 0.1);
  color: var(--gold);
}

.choice.wide { grid-column: 1 / -1; }

.field { margin-bottom: 0.85rem; }

.field label {
  display: block;
  font-family: var(--font-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.field input {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #2d2d2d;
  color: var(--white);
  border-radius: 10px;
  padding: 0.9rem 0.95rem;
  font-family: var(--font-h);
  font-size: 1rem;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 147, 51, 0.18);
}

.err {
  color: #e08a7a;
  font-size: 0.8rem;
  margin: 0.3rem 0 0;
  display: none;
}

.err.is-on { display: block; }

.consent {
  color: var(--muted-2);
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0.4rem 0 1rem;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.linkish {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 0.88rem;
  padding: 0.4rem 0;
}

.linkish:hover { color: var(--gold); }

.dq {
  text-align: center;
  padding: 1.4rem 0.4rem 0.6rem;
}

.dq p { color: var(--muted); }

/* Calendar */
.cal-days {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.5rem;
  margin: 0.4rem 0 1rem;
}

.cal-day,
.cal-slot {
  background: #1b1b1b;
  border: 1px solid #2d2d2d;
  color: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.4rem;
  cursor: pointer;
  font-family: var(--font-h);
  font-weight: 700;
}

.cal-day small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
}

.cal-day.is-on,
.cal-slot.is-on {
  border-color: var(--gold);
  background: rgba(190, 147, 51, 0.12);
  color: var(--gold);
}

.cal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  font-size: 0.82rem;
  margin: 0.2rem 0 0.7rem;
}

.cal-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cal-slots .helper {
  grid-column: 1 / -1;
}

.cal-error {
  color: #e08a7a;
}

.ghl-frame {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

/* --------------------------------------------------------------------------
   Thank you
   -------------------------------------------------------------------------- */
.ty-hero { padding: 3.6rem 0 2.6rem; text-align: center; }

.confirm-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(190, 147, 51, 0.08);
}

.confirm-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(190, 147, 51, 0.35);
  animation: ring 2s ease-out infinite;
}

@keyframes ring {
  to { transform: scale(1.35); opacity: 0; }
}

.cal-hold {
  background: rgba(190, 147, 51, 0.08);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  max-width: 460px;
  margin: 1.4rem auto 0;
}

.cal-hold .label { color: var(--gold); font-size: 0.7rem; }
.cal-hold .when { font-weight: 800; margin: 0.3rem 0 0.8rem; font-size: 1.05rem; }

.cal-btns {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cal-btns .btn { padding: 0.7rem 1rem; font-size: 0.78rem; }

.steps {
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.step-n {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.prep {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.prep li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.prep .tick {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.warn {
  background: rgba(196, 92, 74, 0.08);
  border: 1px solid rgba(196, 92, 74, 0.4);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  max-width: 640px;
  margin: 0 auto;
}

.warn h3 { color: #e8b4aa; margin-bottom: 0.35rem; }
.warn p { margin: 0; color: var(--muted); }

/* Legal pages */
.legal-page { padding: 4rem 0 5rem; max-width: 720px; }
.legal-page h1 { margin-bottom: 1rem; }
.legal-page p { color: var(--muted); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .vgrid { grid-template-columns: repeat(3, 1fr); }
  .proof-visuals { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .stats,
  .g-grid,
  .get-grid,
  .proof-grid { grid-template-columns: 1fr; }

  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: 1fr; }
  .choice.wide { grid-column: auto; }
  .cal-slots { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  .hero { padding-top: 2.2rem; }
  .modal { margin-top: 1.2vh; width: calc(100% - 0.8rem); max-height: 96vh; }
  .modal-body { padding: 0.2rem 1rem 1.2rem; }
  body.has-sticky { padding-bottom: 76px; }
}

@media (max-width: 520px) {
  .vgrid { grid-template-columns: 1fr 1fr; }
  .shot-grid { grid-template-columns: 1fr 1fr; }
  .logo, .logo img, .site-footer .logo, .site-footer .logo img { height: 38px; }
}

#cal-ghl {
  width: 100%;
  min-height: 700px;
  background: #fff;
  border-radius: 12px;
  overflow: auto;
  border: 1px solid var(--gold-line);
}
#cal-ghl iframe,
#cal-ghl iframe.oh-cal {
  display: block;
  width: 100%;
  height: 700px;
  min-height: 700px;
  border: 0;
  background: #fff;
}
