:root {
  --ink: #05070a;
  --ink-2: #0a0f17;
  --ink-3: #0f1722;
  --blue: #0a7cff;
  --blue-2: #005ed8;
  --blue-3: #0a3d79;
  --white: #ffffff;
  --off: #f6f8fb;
  --text: #19222c;
  --muted: #aab6c3;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.36);
  --radius: 18px;
  --accent: #ff7a1a;
  --accent-2: #ffc21a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, 100%); }

.topbar {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #111;
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 28px rgba(255,122,26,.18);
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar__divider { opacity: .7; }
.topbar strong { font-size: 16px; }

.brand-banner {
  position: relative;
  z-index: 20;
  background: #04070b;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand-banner__inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-banner__logo {
  width: min(420px, 72vw);
  height: auto;
  object-fit: contain;
}

.hero,
.section--dark,
.section--blue,
.thankyou__hero,
.booking-hero,
.reviews--dark {
  position: relative;
  overflow: hidden;
}
.hero::before,
.section--dark::before,
.section--blue::before,
.thankyou__hero::before,
.booking-hero::before,
.reviews--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.05) 0 1px, transparent 1px 180px),
    linear-gradient(30deg, rgba(255,255,255,.035) 0 1px, transparent 1px 160px),
    radial-gradient(circle at 12% 18%, rgba(10,124,255,.12), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(10,124,255,.10), transparent 24%),
    radial-gradient(circle at 70% 88%, rgba(10,124,255,.10), transparent 28%);
  background-size: 180px 180px, 160px 160px, auto, auto, auto;
  pointer-events: none;
  opacity: .8;
}
.hero {
  background: linear-gradient(180deg, #020407 0%, #05080d 55%, #07101b 100%);
  border-bottom: 1px solid rgba(10,124,255,.28);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: .16;
}
.hero__glow--one { width: 380px; height: 380px; right: -60px; top: 60px; background: rgba(10,124,255,.9); }
.hero__glow--two { width: 300px; height: 300px; left: -50px; bottom: 30px; background: rgba(10,124,255,.55); }
.hero__grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0 54px;
  position: relative;
  z-index: 2;
}
.brand-logo { width: auto; height: auto; }
.brand-logo--modal { width: 180px; margin-bottom: 14px; }
.hero__callout,
.eyebrow {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero__callout {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  margin-bottom: 18px;
  font-size: 18px;
  color: #dcedff;
  border: 1px solid rgba(10,124,255,.55);
  border-radius: 14px;
  background: rgba(7,17,28,.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.eyebrow { font-size: 18px; color: var(--blue); margin-bottom: 18px; }
.hero h1,
.section h2,
.thankyou h1,
.thankyou h2,
.modal h2,
.booking-page h1,
.reviews h2 {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .95;
  margin: 0;
  font-weight: 800;
}
.hero h1 { font-size: clamp(56px, 4.9vw, 80px); max-width: 760px; }
.hero h1 span,
.section h2 span,
.thankyou h1 span,
.thankyou h2 span,
.booking-page h1 span,
.reviews h2 span { color: var(--blue); }
.hero__lead {
  max-width: 690px;
  margin: 20px 0 18px;
  color: #dde5ee;
  font-size: 18px;
  line-height: 1.52;
}
.hero__ticks,
.check-list { list-style: none; padding: 0; margin: 0 0 24px; }
.hero__ticks li,
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 9px 0;
  color: #eef5fb;
  font-weight: 600;
}
.hero__ticks li::before,
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--blue);
}
.cta {
  appearance: none;
  border: 0;
  min-height: 56px;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 15px 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  line-height: 1.05;
  font-size: 20px;
}
.cta:hover { transform: translateY(-2px); }
.cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.cta span {
  font-family: Inter, sans-serif;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  opacity: .84;
  margin-top: 5px;
}
.cta--primary {
  color: #fff;
  background: linear-gradient(180deg, #1689ff 0%, #0067df 100%);
  box-shadow: 0 12px 30px rgba(0,103,223,.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.cta--dark { color: #fff; background: #07101b; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.cta--white { color: #07101b; background: #fff; }
.hero__trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  font-size: 12px;
  color: #a9b7c6;
}
.hero__trust strong { color: #fff; }
.hero__visual { position: relative; align-self: stretch; min-height: 590px; }
.hero__image-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(10,124,255,.4);
  border-radius: 24px;
  overflow: hidden;
  background: #09111a;
  box-shadow: var(--shadow);
}
.hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,6,10,.24), transparent 40%), linear-gradient(180deg, transparent 58%, rgba(2,5,9,.44));
  pointer-events: none;
}
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__badge {
  position: absolute;
  left: -16px;
  bottom: 28px;
  z-index: 3;
  background: rgba(5,8,12,.92);
  border: 1px solid rgba(10,124,255,.75);
  border-left: 5px solid var(--blue);
  border-radius: 11px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,.34);
}
.hero__badge strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 22px;
  letter-spacing: .03em;
}
.hero__badge span { display: block; color: #c2ccd7; font-size: 13px; margin-top: 2px; }

.session-timer {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(8, 16, 27, .88);
  border: 1px solid rgba(10,124,255,.32);
  max-width: 370px;
}
.session-timer--feature {
  margin-top: 0;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
}
.session-timer__label {
  margin: 0 0 12px;
  color: #dce7f1;
  font-size: 16px;
  font-weight: 700;
}
.session-timer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.session-timer__grid > div {
  min-height: 82px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  display: grid;
  place-items: center;
  text-align: center;
}
.session-timer--feature .session-timer__grid {
  gap: 14px;
}
.session-timer--feature .session-timer__grid > div {
  min-height: 132px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.session-timer__grid strong {
  display: block;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 42px;
  line-height: .88;
}
.session-timer--feature .session-timer__grid strong {
  font-size: clamp(58px, 7vw, 86px);
}
.session-timer__grid span {
  font-size: 11px;
  letter-spacing: .12em;
  color: #b7c4d1;
}
.session-timer--feature .session-timer__grid span {
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.reservation-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(0,128,255,.20), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(29,95,255,.18), transparent 24%),
    linear-gradient(180deg, #06111e 0%, #0a2340 50%, #08192c 100%);
  padding: 34px 0 42px;
  border-top: 1px solid rgba(10,124,255,.2);
  border-bottom: 1px solid rgba(10,124,255,.24);
}
.reservation-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(13,82,172,.28), rgba(5,16,30,.86) 35%, rgba(3,8,15,.94) 100%);
  border: 1px solid rgba(85,164,255,.24);
  box-shadow: 0 22px 60px rgba(1,10,22,.36), inset 0 1px 0 rgba(255,255,255,.06);
}
.reservation-card__intro h2 {
  color: #fff;
  font-size: clamp(42px, 4.6vw, 68px);
  margin: 10px 0 14px;
}
.reservation-card__intro p {
  margin: 0;
  max-width: 640px;
  color: #c8d6e5;
  font-size: 17px;
  line-height: 1.55;
}
.reservation-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1b94ff 0%, #0b69df 100%);
  color: #fff;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(10,124,255,.25);
}
.reservation-card__trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 6px;
  color: #c7d3df;
  font-size: 13px;
}
.reservation-card__trust strong {
  color: #fff;
}
.reservation-card__trust span,
.reservation-card__trust strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.reviews { padding: 72px 0; }
.reviews--dark { background: linear-gradient(180deg, #07101b 0%, #05080d 100%); }
.reviews__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.reviews__top p { margin: 10px 0 0; color: #b9c7d4; font-size: 18px; }
.reviews__summary {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.reviews__google { color: #dbe8f5; font-size: 13px; letter-spacing: .03em; }
.reviews__summary-rating {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.reviews__summary strong {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 52px;
  line-height: .82;
}
.reviews__stars { color: #ffcb3f; letter-spacing: .15em; font-size: 21px; line-height: 1; }
.reviews__summary-note { color: #9cb0c4; font-size: 12px; }
.reviews-slider {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
}
.reviews-slider__viewport { overflow: hidden; }
.reviews-slider__track { display: flex; gap: 18px; transition: transform .6s ease; }
.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 260px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.review-card__head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; margin-bottom: 8px; }
.review-card__head strong { font-size: 18px; }
.review-card__head span { font-size: 12px; color: #9fb1c4; }
.review-card__stars { color: #ffcb3f; letter-spacing: .12em; margin-bottom: 12px; }
.review-card p { color: #dce6f1; font-size: 14px; margin: 0 0 12px; }
.reviews-slider__nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.reviews-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.reviews-slider__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.22); cursor: pointer;
}
.reviews-slider__dots button.is-active { background: var(--blue); }

.section { padding: 84px 0; }
.section--light { background: #f7f8fa; color: var(--text); }
.section--blue { background: linear-gradient(180deg, #084f9d, #073b77); }
.section--dark { background: linear-gradient(180deg, #07101b, #050b14); }
.section h2 { font-size: clamp(46px, 5vw, 70px); color: #0c1117; }
.section-title--light { color: #fff !important; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.pain-card {
  padding: 28px 24px;
  border: 1px solid #dfe4ea;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  min-height: 260px;
  box-shadow: 0 20px 50px rgba(5,18,36,.06);
}
.pain-card__num {
  display: inline-flex;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 26px;
}
.pain-card h3,
.pillar h3,
.programme__steps h3,
.final-cta-box h3,
.next-steps span,
.gallery-card figcaption,
.progress-step strong,
.calendar-shell__header strong {
  margin: 0;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
}
.pain-card h3 { font-size: 27px; }
.pain-card p { margin: 12px 0 0; color: #586473; font-size: 15px; }
.center-cta { display: flex; justify-content: center; margin-top: 34px; }
.center-cta--light .cta { min-width: 320px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.pillar {
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(4,15,28,.18);
  backdrop-filter: blur(6px);
}
.pillar__icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.36);
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 28px;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 21px;
  font-weight: 800;
}
.pillar h3 { font-size: 27px; }
.pillar p { color: #dbe8f5; font-size: 15px; }

.community { background: #fff; color: var(--text); }
.community__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.community__image-wrap {
  min-height: 600px;
  background: #09111a;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dbe2e9;
  box-shadow: 0 22px 54px rgba(10,24,40,.08);
}
.community__image-wrap img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: center; }
.community__copy h2 { color: #0c1117; }
.community__copy > p { color: #536171; font-size: 17px; }
.community .check-list li { color: #25303b; }

.gallery-section { background: #f7f8fa; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3ea;
  box-shadow: 0 16px 44px rgba(10,24,40,.07);
}
.gallery-card img { width: 100%; height: 430px; object-fit: cover; object-position: center; }
.gallery-card figcaption { padding: 18px; font-size: 24px; color: #0c1117; }

.programme { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.programme__intro { position: sticky; top: 30px; align-self: start; }
.programme__intro p { color: #b7c3cf; font-size: 16px; }
.programme__steps { border-top: 1px solid rgba(255,255,255,.15); }
.programme__steps article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.programme__steps b { font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 38px; color: var(--blue); }
.programme__steps h3 { font-size: 26px; }
.programme__steps p { color: #b9c4cf; font-size: 14px; margin: 8px 0 0; }

.faq-list { margin-top: 36px; border-top: 1px solid #dce2e8; }
.faq details { border-bottom: 1px solid #dce2e8; padding: 0; }
.faq summary {
  cursor: pointer;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  padding: 20px 42px 20px 0;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; color: var(--blue); font-size: 28px; }
.faq details[open] summary::after { content: '−'; }
.faq details p { color: #586473; margin: -4px 0 22px; max-width: 760px; }
.final-cta-box {
  margin-top: 46px;
  background: #fff;
  color: var(--text);
  padding: 30px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #dfe6ee;
  border-left: 5px solid var(--blue);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(5,18,36,.08);
}
.final-cta-box__logo { width: 120px; height: auto; object-fit: contain; }
.final-cta-box__logo--wide { width: 180px; }
.final-cta-box h3 { font-size: 29px; }
.final-cta-box p { margin: 5px 0 0; color: #5d6978; font-size: 14px; }

.footer {
  background: #030507;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 28px 0;
  color: #8d9aa7;
}
.footer__inner { display: grid; grid-template-columns: 220px 1fr auto; gap: 16px; align-items: center; }
.footer__logo { width: 180px; height: auto; object-fit: contain; }
.footer strong { color: #fff; display: block; }
.footer span, .footer small { font-size: 12px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.modal__panel {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  max-height: calc(100dvh - 28px);
  overflow-y: auto;
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 32px 100px rgba(0,0,0,.5);
  border-top: 5px solid var(--blue);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d9e0e7;
  background: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.modal__eyebrow { font-family: 'Barlow Condensed', Impact, sans-serif; color: var(--blue); font-weight: 800; letter-spacing: .05em; margin-bottom: 8px; }
.modal h2 { font-size: 42px; line-height: .98; margin: 0 44px 8px 0; }
.modal > p, .modal__panel > p { margin: 0 0 20px; color: #667380; }
.modal form { display: grid; gap: 14px; }
.modal label span { display: block; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.modal input {
  width: 100%; min-height: 52px; border: 1px solid #cfd7df; border-radius: 9px; padding: 12px 14px; font-size: 16px; color: #0d141c; background: #fff;
}
.modal input:focus { outline: 3px solid rgba(10,124,255,.15); border-color: var(--blue); }
.form-error { min-height: 0; margin: 0; color: #b31628; font-weight: 700; font-size: 13px; }
.cta--submit { width: 100%; margin-top: 2px; }
.cta--submit:disabled { opacity: .65; cursor: wait; }
.form-privacy { color: #788490; font-size: 11px; text-align: center; line-height: 1.4; }

.booking-page { background: #05070a; }
.booking-hero { background: linear-gradient(180deg, #05070a 0%, #08101a 100%); }
.booking-wrap { position: relative; z-index: 2; padding: 48px 0 74px; }
.progress-card,
.calendar-shell {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.progress-card { padding: 22px; margin-bottom: 30px; }
.progress-card__bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 18px; }
.progress-card__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #1689ff 0%, #0067df 100%); }
.progress-card__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.progress-step {
  display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.progress-step__icon {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 22px; font-weight: 800; background: rgba(255,255,255,.06);
}
.progress-step strong { display: block; font-size: 18px; }
.progress-step span { display: block; font-size: 12px; color: #aab6c3; }
.progress-step--done .progress-step__icon,
.progress-step--active .progress-step__icon { background: linear-gradient(180deg, #1689ff 0%, #0067df 100%); }
.progress-step--active { border-color: rgba(10,124,255,.4); }
.booking-copy { margin-bottom: 28px; }
.booking-page h1 { font-size: clamp(48px, 5vw, 76px); }
.booking-copy__lead { font-size: 22px; font-weight: 700; color: #fff; margin: 16px 0 10px; }
.booking-copy p:last-child { margin: 0; color: #c4d0db; max-width: 820px; }
.calendar-shell { padding: 20px; overflow: hidden; }
.calendar-shell__header { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 14px; }
.calendar-shell__header strong { font-size: 34px; }
.calendar-shell__header span { color: #b2c0ce; font-size: 14px; }
.calendar-shell__fallback { display: none; justify-content: center; margin-top: 18px; }

.thankyou-page { background: #05070a; }
.thankyou__hero { background: linear-gradient(180deg, #05070a 0%, #08101a 100%); }
.thankyou__grid {
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  align-items: center;
  padding: 58px 0 68px;
  position: relative;
  z-index: 2;
}
.thankyou h1 { font-size: clamp(56px, 6vw, 86px); }
.thankyou__lead { font-size: 21px; font-weight: 700; color: #fff; }
.thankyou__copy > p:not(.thankyou__lead):not(.signature) { color: #bac6d2; max-width: 680px; }
.next-steps { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.next-steps > div { display: grid; grid-template-columns: 52px 1fr; column-gap: 14px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.next-steps strong { grid-row: 1 / 3; font-family: 'Barlow Condensed', Impact, sans-serif; color: var(--blue); font-size: 28px; }
.next-steps span { font-size: 20px; }
.next-steps p { margin: 5px 0 0; color: #9eabb8; font-size: 13px; }
.signature { margin-top: 24px; color: #dce7f1; }
.thankyou__photo { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(10,124,255,.38); min-height: 650px; box-shadow: var(--shadow); }
.thankyou__photo img { width: 100%; height: 650px; object-fit: cover; object-position: 50% 42%; }
.thankyou__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(0,0,0,.76)); }
.thankyou__photo-caption { position: absolute; z-index: 2; left: 24px; bottom: 20px; }
.thankyou__photo-caption strong { display: block; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: 28px; }
.thankyou__photo-caption span { color: #b8c4d0; font-size: 13px; }
.thankyou__reassurance { background: linear-gradient(180deg, #0a6cde, #0a5dc0); padding: 62px 0; text-align: center; position: relative; overflow: hidden; }
.thankyou__reassurance::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.06) 0 1px, transparent 1px 200px), linear-gradient(30deg, rgba(255,255,255,.05) 0 1px, transparent 1px 180px);
  background-size: 200px 200px, 180px 180px;
  opacity: .65;
  pointer-events: none;
}
.thankyou__reassurance p { max-width: 760px; margin: 16px auto 0; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.thankyou__trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; font-size: 13px; position: relative; z-index: 1; }
.thankyou__trust strong { color: #fff; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .review-card { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 760px); }
  .hero__grid,
  .community__grid,
  .programme,
  .thankyou__grid { grid-template-columns: 1fr; }
  .hero__grid { min-height: 0; padding: 30px 0 24px; gap: 22px; }
  .brand-banner__inner { min-height: 82px; }
  .brand-banner__logo { width: min(340px, 70vw); }
  .hero h1 { font-size: clamp(50px, 12vw, 72px); }
  .hero__visual { min-height: 460px; }
  .hero__image-frame { border-radius: 18px 18px 0 0; }
  .hero__badge { left: 14px; bottom: 16px; }
  .reservation-card { grid-template-columns: 1fr; padding: 24px 22px; }
  .reservation-card__trust { grid-column: auto; }
  .reviews__top { grid-template-columns: 1fr; align-items: flex-start; }
  .reviews__summary { justify-items: start; min-width: 0; }
  .reviews-slider { grid-template-columns: 1fr; }
  .reviews-slider__nav { display: none; }
  .community__image-wrap, .community__image-wrap img { min-height: 420px; }
  .gallery-grid, .pain-grid, .pillars, .progress-card__steps { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .programme__intro { position: static; }
  .final-cta-box { grid-template-columns: 1fr; text-align: center; }
  .final-cta-box__logo, .final-cta-box__logo--wide { margin: 0 auto; }
  .final-cta-box .cta { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__logo { margin: 0 auto; }
  .footer small { grid-column: 1 / -1; }
  .booking-wrap { padding: 36px 0 54px; }
  .calendar-shell__header { flex-direction: column; align-items: flex-start; }
  .thankyou__grid { min-height: 0; padding: 42px 0 54px; }
  .thankyou__photo { min-height: 500px; }
  .thankyou__photo img { height: 500px; }
}

@media (max-width: 560px) {
  .topbar__inner { min-height: 40px; font-size: 12px; gap: 6px; }
  .topbar strong { font-size: 14px; }
  .brand-banner__inner { min-height: 74px; }
  .brand-banner__logo { width: 250px; }
  .hero__grid { padding-top: 20px; }
  .hero__callout { font-size: 14px; min-height: 40px; padding: 9px 12px; margin-bottom: 14px; }
  .eyebrow { font-size: 16px; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); line-height: .92; }
  .hero__lead { font-size: 15px; margin: 14px 0 12px; line-height: 1.46; }
  .hero__ticks { margin-bottom: 14px; }
  .hero__ticks li { font-size: 14px; margin: 7px 0; padding-left: 27px; }
  .hero__ticks li::before { width: 18px; height: 18px; }
  .cta { width: 100%; min-height: 56px; padding: 14px 15px; font-size: 19px; }
  .reservation-section { padding: 22px 0 28px; }
  .reservation-card__intro h2 { font-size: clamp(36px, 12vw, 50px); }
  .reservation-card__intro p { font-size: 15px; }
  .session-timer { max-width: none; margin-top: 14px; padding: 14px; }
  .session-timer__label { font-size: 14px; margin-bottom: 10px; }
  .session-timer__grid > div { min-height: 74px; }
  .session-timer__grid strong { font-size: 36px; }
  .session-timer--feature .session-timer__grid > div { min-height: 100px; }
  .session-timer--feature .session-timer__grid strong { font-size: clamp(44px, 13vw, 60px); }
  .hero__trust { margin-top: 12px; font-size: 11px; gap: 5px 10px; }
  .reservation-card__trust { justify-content: center; }
  .reservation-card__trust span,
  .reservation-card__trust strong { width: 100%; justify-content: center; text-align: center; }
  .hero__visual { min-height: 380px; margin-top: 4px; }
  .hero__image-frame { border-left: 0; border-right: 0; margin-left: -14px; margin-right: -14px; width: calc(100% + 28px); }
  .hero__image-frame img { object-position: center; }
  .hero__badge { left: 0; right: 0; width: calc(100% - 24px); margin: 0 auto; bottom: 12px; padding: 12px 15px; }
  .hero__badge strong { font-size: 19px; }
  .reviews { padding: 56px 0; }
  .reviews h2 { font-size: 44px; }
  .review-card { flex-basis: 100%; min-height: 0; padding: 18px; }
  .section { padding: 54px 0; }
  .section h2 { font-size: clamp(39px, 11vw, 53px); }
  .pain-grid, .pillars, .gallery-grid { margin-top: 28px; }
  .pain-card, .pillar { padding: 22px 19px; }
  .pain-card__num { margin-bottom: 14px; }
  .pain-card h3, .pillar h3 { font-size: 24px; }
  .community__grid { gap: 30px; }
  .community__image-wrap, .community__image-wrap img { min-height: 320px; }
  .gallery-card img { height: 360px; }
  .gallery-card figcaption { font-size: 22px; padding: 16px; }
  .programme__steps article { grid-template-columns: 54px 1fr; gap: 12px; }
  .programme__steps b { font-size: 31px; }
  .programme__steps h3 { font-size: 23px; }
  .faq summary { font-size: 22px; }
  .final-cta-box { padding: 22px 18px; }
  .final-cta-box__logo--wide { width: 160px; }
  .modal { align-items: flex-end; padding: 0; }
  .modal__panel { width: 100%; max-height: 92dvh; border-radius: 18px 18px 0 0; padding: 24px 18px 20px; }
  .brand-logo--modal { width: 150px; }
  .modal h2 { font-size: 36px; }
  .booking-page h1 { font-size: clamp(42px, 12vw, 56px); }
  .booking-copy__lead { font-size: 18px; }
  .calendar-shell { padding: 14px; }
  .calendar-shell__header strong { font-size: 28px; }
  .calendar-shell__fallback { display: flex; }
  .thankyou h1 { font-size: clamp(46px, 13vw, 62px); }
  .thankyou__grid { padding: 34px 0 44px; gap: 32px; }
  .thankyou__lead { font-size: 18px; }
  .thankyou__photo { min-height: 420px; }
  .thankyou__photo img { height: 420px; object-position: 50% 36%; }
  .thankyou__reassurance { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, [data-reveal], .reviews-slider__track { transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Persistent CTA */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 80;
  width: min(440px, calc(100% - 32px));
  pointer-events: none;
}
.sticky-cta__button {
  position: relative;
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #1689ff 0%, #0067df 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,86,210,.42), 0 8px 28px rgba(0,0,0,.28);
  display: grid;
  grid-template-columns: 14px 1fr 24px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  pointer-events: auto;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  animation: stickyCtaPulse 2.1s ease-in-out infinite;
}
.sticky-cta__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation: stickyDotPulse 1.5s ease-out infinite;
}
.sticky-cta__arrow {
  font-family: Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  transform: translateY(-1px);
}
@keyframes stickyCtaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 40px rgba(0,86,210,.42), 0 8px 28px rgba(0,0,0,.28); }
  50% { transform: scale(1.018); box-shadow: 0 20px 48px rgba(0,112,255,.55), 0 10px 32px rgba(0,0,0,.3); }
}
@keyframes stickyDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 560px) {
  /* Centre the entire mobile experience while keeping lists easy to scan. */
  .hero__copy,
  .reviews__top,
  .reviews__summary,
  .section .container,
  .community__copy,
  .programme__intro,
  .faq,
  .booking-copy,
  .thankyou__copy,
  .thankyou__reassurance,
  .footer__inner {
    text-align: center;
  }

  .hero__callout,
  .session-timer,
  .hero__trust,
  .reservation-card,
  .reservation-card__trust,
  .reviews__top,
  .reviews__summary,
  .center-cta,
  .community__copy .cta,
  .final-cta-box__logo,
  .final-cta-box__logo--wide,
  .brand-logo--modal,
  .gallery-card,
  .progress-card,
  .calendar-shell,
  .thankyou__trust {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__callout { justify-content: center; text-align: center; }
  .hero__trust { justify-content: center; }
  .reservation-card__intro,
  .reservation-card__trust { text-align: center; }
  .reviews__top { align-items: center; }
  .reviews__summary { justify-items: center; }

  .hero__ticks,
  .check-list {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .pain-card,
  .pillar,
  .gallery-card,
  .programme__steps article,
  .progress-step,
  .review-card,
  .outcome-item {
    text-align: center;
  }

  .pain-card__num,
  .pillar__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .programme__steps article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
  }
  .programme__steps article > div { max-width: 420px; }

  .outcome-item {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 15px 0;
  }

  .faq summary {
    padding: 20px 36px;
    text-align: center;
  }
  .faq summary::after { right: 8px; }
  .faq details p { margin-left: auto; margin-right: auto; }

  .progress-step {
    justify-content: center;
  }
  .calendar-shell__header {
    align-items: center;
    text-align: center;
  }

  .next-steps > div {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .next-steps strong { grid-row: auto; }

  .sticky-cta {
    width: calc(100% - 20px);
    bottom: max(10px, env(safe-area-inset-bottom));
  }
  .sticky-cta__button {
    min-height: 58px;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 19px;
  }
  .footer { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__button,
  .sticky-cta__pulse { animation: none !important; }
}
