:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: #121212;
  --panel-2: #191919;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --orange: #f14726;
  --orange-2: #ff7043;
  --cyan: #58c7d3;
  --white: #ffffff;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(88, 199, 211, 0.08), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(241, 71, 38, 0.12), transparent 26%),
    linear-gradient(var(--bg), var(--bg));
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 54px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand img { width: 226px; height: auto; filter: drop-shadow(0 0 18px rgba(241, 71, 38, 0.18)); }

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #d8d8d8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav a:hover,
.footer a:hover,
.ghost-link:hover { color: var(--orange-2); }

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(241, 71, 38, 0.55);
  background: rgba(241, 71, 38, 0.14);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-phone {
  color: #dcdcdc;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--orange);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(255, 90, 31, 0.22);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.btn-outline {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(88, 199, 211, 0.08);
}

.btn:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.82rem;
}

.btn-large {
  min-height: 58px;
  padding: 0 30px;
}

.mobile-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.glow-scene { position: relative; }

.glow-scene::before,
.glow-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.55;
}

.glow-scene::before {
  width: 220px;
  height: 220px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(241, 71, 38, 0.32), transparent 66%);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.glow-scene::after {
  width: 180px;
  height: 180px;
  left: 7%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(88, 199, 211, 0.18), transparent 68%);
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

.hero-video,
.hero-fallback,
.hero-fallback img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-fallback img {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.12);
}

.hero-video {
  z-index: 0;
  background: #050505;
}

.hero-fallback {
  z-index: -1;
}

.hero-shade {
  background:
    radial-gradient(circle at 68% 45%, rgba(241, 71, 38, 0.16), transparent 34%),
    radial-gradient(circle at 8% 80%, rgba(88, 199, 211, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 46%, rgba(5, 5, 5, 0.56)),
    linear-gradient(0deg, var(--bg), transparent 32%);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(44px);
  opacity: 0.45;
}

.hero-glow-one {
  right: 8%;
  top: 24%;
  background: rgba(241, 71, 38, 0.28);
  animation: driftOne 12s ease-in-out infinite alternate;
}

.hero-glow-two {
  left: -5%;
  bottom: 16%;
  background: rgba(88, 199, 211, 0.12);
  animation: driftTwo 14s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 92px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-family: Oswald, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: Oswald, sans-serif;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1 {
  max-width: 1050px;
  margin-inline: auto;
  font-size: clamp(3.5rem, 8.4vw, 7.6rem);
}

h2 { font-size: clamp(2.35rem, 4.8vw, 4.35rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.hero-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: #e8e8e8;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ghost-link {
  color: #f1f1f1;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #f3f3f3;
}

.trust-line span { color: var(--orange-2); letter-spacing: 0.08em; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 760px;
  margin: 44px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-row div {
  padding: 22px 16px;
  background: rgba(10, 10, 10, 0.72);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 28px 22px;
  background: var(--bg-2);
  text-align: center;
}

.proof-strip span,
.program-card span {
  display: block;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  margin-top: 6px;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.intro-section {
  display: grid;
  gap: 34px;
}

.service-page {
  background: var(--bg);
}

.service-hero {
  position: relative;
  min-height: 86vh;
  min-height: 86dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.service-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.12);
}

.service-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(241, 71, 38, 0.2), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(88, 199, 211, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0.48)),
    linear-gradient(0deg, var(--bg), transparent 30%);
}

.nutrition-hero .service-hero-shade {
  background:
    radial-gradient(circle at 72% 36%, rgba(88, 199, 211, 0.18), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(241, 71, 38, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.44)),
    linear-gradient(0deg, var(--bg), transparent 30%);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: 96px;
}

.service-hero-content h1 {
  max-width: 920px;
  margin: 0;
}

.service-hero-content p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #e8e8e8;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.service-hero-content .hero-actions {
  justify-content: flex-start;
}

.service-proof strong {
  font-size: 1.06rem;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.service-intro .section-heading {
  margin-bottom: 0;
}

.insight-panel {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 94% 12%, rgba(88, 199, 211, 0.12), transparent 34%),
    var(--panel);
  border: 1px solid var(--line);
}

.insight-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.insight-panel .btn,
.section-heading .btn {
  margin-top: 18px;
}

.service-steps {
  grid-template-columns: repeat(4, 1fr);
}

.service-steps article {
  min-height: 340px;
}

.service-grid-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.pill-grid,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span,
.check-grid span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(88, 199, 211, 0.34);
  background: rgba(88, 199, 211, 0.075);
  color: #f3f3f3;
  padding: 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-grid span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.check-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--orange);
}

.cards-four {
  grid-template-columns: repeat(4, 1fr);
}

.health-offers .program-card {
  min-height: 330px;
}

.pricing-section {
  width: min(1440px, calc(100% - 36px));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  min-height: 780px;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
}

.pricing-card-featured {
  border-color: rgba(241, 71, 38, 0.6);
  box-shadow: 0 24px 70px rgba(241, 71, 38, 0.14);
}

.plan-label {
  width: fit-content;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.price strong {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.price span,
.commitment {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 10px;
  color: #d8d8d8;
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--cyan);
}

.pricing-card .btn {
  margin-top: auto;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
}

.intro-copy h2 {
  max-width: 690px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.coaching {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article,
.program-card,
.review-wall article,
.faq details {
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
}

.steps article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  gap: 42px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 90% 10%, rgba(88, 199, 211, 0.09), transparent 34%),
    var(--panel);
}

.steps article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  opacity: 0.8;
}

.steps span {
  color: rgba(241, 71, 38, 0.9);
  font-family: Oswald, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.steps h3 {
  margin-bottom: 14px;
}

.steps p,
.program-card p,
.review-wall p,
.faq p { margin-bottom: 0; }

.split-dark {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 54px);
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 71, 38, 0.08), transparent 30%),
    #080808;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 778px;
}

.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 500ms ease;
}

.feature:hover img { transform: scale(1.035); }

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.18) 58%, transparent);
}

.feature div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.feature p { color: #d8d8d8; }

.coaching-copy p { font-size: 1.04rem; }

.coaching h2 {
  max-width: 640px;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.coaching-copy p {
  max-width: 620px;
}

.coach-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.coach-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

blockquote {
  margin: 0;
  padding: 26px;
  color: #ededed;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.reviews {
  width: min(1280px, calc(100% - 36px));
  overflow: hidden;
}

.reviews .section-heading {
  max-width: 880px;
}

.review-heading {
  position: relative;
  z-index: 1;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 42px rgba(241, 71, 38, 0.12);
}

.google-word {
  color: #2f2f2f;
  font-weight: 800;
}

.google-word b {
  color: #4285f4;
}

.google-stars,
.review-stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
}

.google-badge strong {
  color: #111;
}

.google-badge small {
  color: #555;
  font-weight: 700;
}

.review-marquee {
  position: relative;
  width: 100vw;
  left: 50%;
  margin: 12px 0 28px;
  transform: translateX(-50%);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 160px;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

.review-track span {
  position: relative;
}

.review-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-wall article {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 95% 4%, rgba(88, 199, 211, 0.08), transparent 30%),
    var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.review-wall article:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 71, 38, 0.42);
  box-shadow: inset 0 0 0 1px rgba(241, 71, 38, 0.16), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.review-wall span {
  color: var(--orange-2);
  letter-spacing: 0.08em;
}

.review-wall strong {
  display: block;
  margin: 0;
  padding: 0;
}

.review-wall small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #fff !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #8a1d0c);
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(241, 71, 38, 0.18);
}

.review-card p {
  margin-top: 16px;
  color: #d8d8d8;
}

.review-card em {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-review {
  border-color: rgba(88, 199, 211, 0.32) !important;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cta-band {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 9vw, 120px) clamp(18px, 6vw, 80px);
  border-block: 1px solid var(--line);
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.12);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.38));
}

.cta-band div {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  padding: 30px;
}

.program-card.featured {
  border-color: rgba(255, 90, 31, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.25), 0 26px 80px rgba(255, 90, 31, 0.14);
}

.program-card h3 {
  margin-top: 18px;
  font-size: 2rem;
}

.program-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--orange-2);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  color: #f3f3f3;
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.95fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  width: min(1360px, calc(100% - 36px));
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.map-card iframe {
  width: 100%;
  height: 620px;
  border: 0;
  filter: invert(0.9) hue-rotate(175deg) saturate(0.72) brightness(0.82) contrast(1.08);
}

.visit-panel h2 {
  max-width: 700px;
}

.visit-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.visit-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.visit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(241, 71, 38, 0.14);
  color: var(--orange-2);
  border: 1px solid rgba(241, 71, 38, 0.22);
  font-family: Oswald, sans-serif;
  font-size: 1.25rem;
}

.visit-list p {
  margin: 0;
  color: #f0f0f0;
  font-size: 1.1rem;
}

.visit-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-list b {
  color: var(--orange-2);
  font-size: 1.35rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.7fr;
  gap: 36px;
  padding: 54px clamp(18px, 5vw, 54px);
  background: #020202;
  border-top: 1px solid var(--line);
}

.mobile-cta-bar {
  display: none;
}

.lead-page-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 60px;
}

.lead-page-hero > img,
.lead-page-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lead-page-hero > img {
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.lead-page-shade {
  background:
    radial-gradient(circle at 78% 36%, rgba(241, 71, 38, 0.24), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(88, 199, 211, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82) 54%, rgba(5, 5, 5, 0.7));
}

.lead-page-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 0.76fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.lead-copy h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.lead-copy p {
  max-width: 680px;
  color: #e5e5e5;
  font-size: 1.15rem;
}

.lead-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.7);
}

.lead-proof div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.lead-proof div:last-child {
  border-right: 0;
}

.lead-proof strong,
.lead-proof span {
  display: block;
}

.lead-proof strong {
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.lead-proof span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.48), 0 0 80px rgba(241, 71, 38, 0.12);
  backdrop-filter: blur(18px);
}

.form-header {
  margin-bottom: 22px;
}

.form-header span {
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-header h2 {
  margin-top: 6px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.form-header p {
  margin: 8px 0 0;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #efefef;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 15px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(88, 199, 211, 0.12);
}

.lead-form select option {
  color: #111;
}

.lead-form button {
  width: 100%;
  margin-top: 4px;
  border-radius: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
}

.intro-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-assurance article {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel), var(--panel-2));
}

.intro-assurance span {
  color: var(--orange-2);
  font-family: Oswald, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.intro-assurance h2 {
  margin-top: 24px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.footer .brand img {
  width: 250px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform 350ms ease, opacity 350ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(0.9); }
  to { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@keyframes driftOne {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(32px, 28px, 0); }
}

@keyframes driftTwo {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, -18px, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

.footer h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: #dcdcdc;
}

.footer-brand { margin-bottom: 18px; }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.powered-by {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 !important;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: var(--white) !important;
  text-decoration: none;
  white-space: nowrap;
}

.powered-by span {
  color: #8f8f8f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.powered-by strong {
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.powered-mark {
  width: 24px;
  height: 24px;
  color: var(--white);
  flex: 0 0 auto;
}

.compact-footer {
  padding-top: 34px;
  padding-bottom: 96px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand img {
    width: 190px;
  }

  .site-header .menu-toggle {
    display: grid !important;
    position: fixed;
    top: 12px;
    right: clamp(18px, 5vw, 54px);
    z-index: 80;
    transform: none;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(241, 71, 38, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }

  .header-phone { display: none; }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
    padding: 10px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 12px;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .intro-copy,
  .coaching,
  .faq,
  .visit-section,
  .lead-page-grid,
  .service-intro,
  .service-grid-section {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .review-wall,
  .cards,
  .footer,
  .steps,
  .intro-assurance,
  .service-steps,
  .cards-four,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-large {
    grid-column: span 2;
    min-height: 560px;
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
    height: 430px;
  }

  .lead-page-hero {
    min-height: auto;
    padding-top: 120px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand img { width: 148px; }
  .site-header .menu-toggle { right: 14px; }
  .site-header .btn-small { display: none; }
  .btn-small { min-height: 38px; padding: 0 12px; font-size: 0.72rem; }
  .desktop-label { display: none; }
  .mobile-label { display: inline; }

  h1 {
    font-size: clamp(2.8rem, 12vw, 3.55rem);
    line-height: 1.03;
  }
  h2,
  .coaching h2 { font-size: clamp(2.25rem, 10vw, 3.3rem); }

  .hero-content {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    margin-left: 14px;
    margin-right: 0;
    text-align: left;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .eyebrow {
    max-width: 310px;
    line-height: 1.4;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-actions .ghost-link {
    padding: 4px 0;
  }

  .trust-line {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .stat-row,
  .proof-strip,
  .review-wall,
  .cards,
  .footer,
  .feature-grid,
  .steps,
  .intro-assurance,
  .lead-proof,
  .service-steps,
  .cards-four,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    display: grid;
  }

  .footer-bottom p {
    font-size: 0.68rem;
  }

  .powered-by {
    justify-content: center;
    width: 100%;
    white-space: normal;
  }

  .service-hero {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .service-hero-content {
    width: min(100% - 28px, 1220px);
    padding-top: 0;
  }

  .service-hero-content .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .service-intro,
  .service-grid-section {
    width: min(100% - 28px, var(--max));
  }

  .pricing-card {
    min-height: auto;
    padding: 22px;
  }

  .pill-grid span,
  .check-grid span {
    width: 100%;
  }

  .review-wall article {
    min-height: auto;
  }

  .review-marquee::before,
  .review-marquee::after {
    width: 70px;
  }

  .google-badge {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 14px;
  }

  .lead-page-grid {
    width: min(100% - 28px, 1220px);
  }

  .lead-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .lead-copy p {
    font-size: 1rem;
  }

  .lead-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lead-proof div:last-child {
    border-bottom: 0;
  }

  .lead-form {
    padding: 22px;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .intro-assurance article {
    padding: 22px;
  }

  .steps article {
    min-height: auto;
    gap: 26px;
  }

  .feature-large {
    grid-column: auto;
    min-height: 430px;
  }

  .feature { min-height: 360px; }

  .visit-section {
    width: min(100% - 28px, 1360px);
  }

  .visit-actions {
    display: grid;
  }

  .map-card,
  .map-card iframe {
    min-height: 360px;
    height: 360px;
  }

  .visit-list div {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.52), 0 0 42px rgba(241, 71, 38, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 0 8px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-family: Oswald, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-cta-bar a:first-child {
    background: var(--orange);
  }

  .mobile-cta-bar a:last-child {
    border-right: 0;
  }

  body {
    padding-bottom: 70px;
  }
}
