:root {
  --bt-green: #b8cf7a;
  --bt-green-hover: #a9bf6b;
  --bt-olive: #8a9b63;
  --bt-black: #111111;
  --bt-graphite: #3f4140;
  --bt-muted: #62645f;
  --bt-offwhite: #f7f8f4;
  --bt-green-mist: #eef4e5;
  --bt-ivory: #f4efe6;
  --bt-sand: #d8cdba;
  --bt-cacao: #6b4a37;
  --bt-border: #e0e6d5;
  --font-heading: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius-card: 8px;
  --radius-button: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bt-offwhite);
  color: var(--bt-graphite);
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseRing {
  from {
    opacity: 0.58;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.48);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--bt-black);
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.04;
}

p {
  margin: 0;
}

.site-header {
  align-items: center;
  background: rgba(9, 12, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 207, 122, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 7px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  z-index: 20;
}

.brand img {
  height: 82px;
  width: auto;
}

.nav {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 24px;
  margin-left: auto;
}

.nav a:hover {
  color: var(--bt-green);
}

.header-cta {
  background: var(--bt-green);
  border-radius: var(--radius-button);
  color: var(--bt-black);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 18px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--bt-green-hover);
  box-shadow: 0 14px 28px rgba(184, 207, 122, 0.2);
  transform: translateY(-2px);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 8px;
}

.menu-button span {
  background: white;
  display: block;
  height: 2px;
  width: 28px;
}

.hero {
  background:
    radial-gradient(circle at 72% 16%, rgba(184, 207, 122, 0.22), transparent 32%),
    linear-gradient(135deg, #111111 0%, #1c211d 58%, #111111 100%);
  color: white;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(184, 207, 122, 0.09) 48%, transparent 60%),
    radial-gradient(circle at 18% 28%, rgba(244, 239, 230, 0.06), transparent 28%);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  margin: 0 auto;
  max-width: var(--container);
  min-height: calc(100vh - 58px);
  padding: 86px 24px 64px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  color: var(--bt-green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--bt-olive);
}

.hero h1 {
  animation: fadeUp 760ms ease both;
  animation-delay: 90ms;
  color: white;
  font-size: clamp(38px, 5.6vw, 76px);
  max-width: 780px;
}

.hero .eyebrow {
  animation: fadeUp 680ms ease both;
}

.hero p {
  animation: fadeUp 760ms ease both;
  animation-delay: 210ms;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  margin-top: 24px;
  max-width: 670px;
}

.hero-actions {
  animation: fadeUp 760ms ease both;
  animation-delay: 330ms;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  align-items: center;
  border-radius: var(--radius-button);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.btn-primary {
  background: var(--bt-green);
  color: var(--bt-black);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: white;
}

.btn-ghost:hover {
  border-color: rgba(184, 207, 122, 0.74);
  color: var(--bt-green);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-badges span {
  border: 1px solid rgba(184, 207, 122, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}

.hero-visual {
  animation: fadeUp 860ms ease both;
  animation-delay: 360ms;
  position: relative;
}

.hero-frame {
  animation: softFloat 6s ease-in-out 1.1s infinite;
  aspect-ratio: 0.78;
  border: 1px solid rgba(184, 207, 122, 0.28);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-frame::before {
  border: 1px solid rgba(184, 207, 122, 0.38);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 700ms ease;
  width: 100%;
}

.hero-visual:hover .hero-frame img {
  transform: scale(1.055);
}

.hero-note {
  animation: fadeUp 760ms ease both;
  animation-delay: 650ms;
  background: var(--bt-offwhite);
  border-radius: var(--radius-card);
  bottom: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  color: var(--bt-graphite);
  left: -36px;
  max-width: 260px;
  padding: 18px;
  position: absolute;
}

.hero-note strong {
  color: var(--bt-black);
  display: block;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.hero-note span {
  display: block;
  font-size: 14px;
  margin-top: 6px;
}

.intro-strip {
  background: var(--bt-green);
  color: var(--bt-black);
  overflow: hidden;
}

.intro-track {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.intro-track div {
  padding: 30px clamp(18px, 4vw, 42px);
}

.intro-track div:nth-child(n + 5) {
  display: none;
}

.intro-track strong,
.intro-track span {
  display: block;
}

.intro-track strong {
  font-family: var(--font-heading);
  font-size: 20px;
}

.intro-track span {
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 600;
  margin-top: 3px;
}

@keyframes introTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 108px 24px;
}

.section-grid,
.online,
.results,
.dark-panel {
  display: grid;
  gap: 64px;
  margin: 0 auto;
  max-width: var(--container);
}

.section-grid,
.online,
.results {
  align-items: center;
  grid-template-columns: 0.92fr 1fr;
}

.section-copy h2,
.section-heading h2,
.results-copy h2,
.included-card h2,
.online h2,
.dark-content h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.section-copy p,
.section-heading p,
.results-copy p,
.online p,
.dark-content p,
.final-cta p {
  color: var(--bt-muted);
  font-size: 18px;
  margin-top: 22px;
}

.authority-band {
  background: var(--bt-green);
  color: white;
  padding: 36px 6vw;
}

.authority-band-inner {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max-width);
}

.authority-stat {
  align-items: center;
  display: grid;
  gap: 6px 24px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 12px 48px;
}

.authority-stat + .authority-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.authority-stat strong {
  color: #111111;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.authority-stat span {
  color: #111111;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}

.image-stack {
  position: relative;
}

.image-main {
  aspect-ratio: 0.82;
  border-radius: var(--radius-card);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.credential-card {
  align-items: center;
  background: white;
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-card);
  bottom: -28px;
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.1);
  display: grid;
  gap: 2px 14px;
  grid-template-columns: 42px 1fr;
  left: 28px;
  padding: 17px 18px;
  position: absolute;
  right: 28px;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.image-stack:hover .credential-card {
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
  transform: translateY(-4px);
}

.credential-card img {
  grid-row: span 2;
  width: 38px;
}

.credential-card span {
  color: var(--bt-muted);
  font-size: 13px;
  font-weight: 700;
}

.credential-card strong {
  color: var(--bt-black);
  font-family: var(--font-heading);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  color: var(--bt-graphite);
  font-weight: 700;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  background: var(--bt-green);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 10px;
}

.audience,
.included,
.faq {
  background: white;
}

.section-heading {
  margin: 0 auto 46px;
  max-width: var(--container);
}

.section-heading.centered {
  max-width: 760px;
  text-align: center;
}

.audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.audience-grid article,
.service-card,
.result-cards article,
.timeline article {
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-card);
}

.audience-grid article {
  background: var(--bt-offwhite);
  min-height: 230px;
  padding: 28px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.audience-grid article:hover,
.service-card:hover,
.timeline article:hover,
.included-card li:hover {
  border-color: rgba(138, 155, 99, 0.38);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.08);
  transform: translateY(-5px);
}

.audience-grid span {
  color: var(--bt-olive);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
}

.audience-grid p {
  color: var(--bt-black);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
  margin-top: 54px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.service-card {
  background: white;
  grid-column: span 2;
  padding: 30px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card.featured {
  background: var(--bt-black);
  color: white;
  grid-column: span 4;
}

.service-card.featured h3,
.service-card.featured p {
  color: white;
}

.icon {
  align-items: center;
  background: var(--bt-green-mist);
  border-radius: 50%;
  color: var(--bt-black);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  transition:
    background 220ms ease,
    transform 220ms ease;
  width: 48px;
}

.icon svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 26px;
}

.service-card:hover .icon,
.timeline article:hover span {
  transform: rotate(-6deg) scale(1.06);
}

.service-card.featured .icon {
  background: var(--bt-green);
}

.service-card h3 {
  font-size: 22px;
  margin-top: 28px;
}

.service-card p {
  color: var(--bt-muted);
  margin-top: 12px;
}

.dark-panel {
  align-items: stretch;
  background: var(--bt-black);
  border-radius: 0;
  color: white;
  grid-template-columns: 1fr 0.72fr;
  max-width: none;
  padding: 0;
}

.dark-content {
  align-self: center;
  justify-self: end;
  max-width: 690px;
  padding: 96px 24px 96px clamp(24px, 8vw, 92px);
}

.dark-content h2 {
  color: white;
}

.dark-content p {
  color: rgba(255, 255, 255, 0.74);
}

.dark-panel img {
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.timeline {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.timeline article {
  background: white;
  padding: 26px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.timeline span {
  align-items: center;
  background: var(--bt-green);
  border-radius: 50%;
  color: var(--bt-black);
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.timeline h3 {
  font-size: 18px;
  margin-top: 26px;
}

.timeline p {
  color: var(--bt-muted);
  font-size: 15px;
  margin-top: 10px;
}

.results {
  background: var(--bt-green-mist);
  display: block;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
}

.review-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto 38px;
  max-width: var(--container);
}

.review-heading .results-copy {
  max-width: 770px;
}

.carousel-btn.light {
  background: rgba(17, 17, 17, 0.04);
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--bt-black);
}

.carousel-btn.light:hover {
  background: var(--bt-black);
  color: white;
}

.review-carousel {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(320px, 390px);
  grid-auto-flow: column;
  max-width: var(--container);
  overflow-x: auto;
  padding: 4px 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(138, 155, 99, 0.2);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 28px;
  scroll-snap-align: start;
  position: relative;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.review-card:hover {
  border-color: rgba(138, 155, 99, 0.42);
  box-shadow: 0 22px 44px rgba(83, 94, 55, 0.12);
  transform: translateY(-5px);
}

.review-card::before {
  color: rgba(184, 207, 122, 0.28);
  content: "“";
  font-family: Georgia, serif;
  font-size: 82px;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 16px;
}

.stars {
  color: #d4a62a;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.review-card p {
  color: var(--bt-graphite);
  font-size: 17px;
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

.review-card strong {
  color: var(--bt-black);
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  margin-top: auto;
  padding-top: 26px;
}

.review-card span {
  color: var(--bt-olive);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.result-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.result-cards article {
  background: rgba(255, 255, 255, 0.72);
  padding: 30px;
}

.result-cards strong {
  color: var(--bt-black);
  display: block;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
}

.result-cards span {
  color: var(--bt-muted);
  display: block;
  margin-top: 14px;
}

.social-proof {
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 207, 122, 0.16), transparent 28%),
    var(--bt-black);
  color: white;
  overflow: hidden;
}

.proof-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto 42px;
  max-width: var(--container);
}

.proof-heading h2 {
  color: white;
  font-size: clamp(30px, 4vw, 50px);
  max-width: 720px;
}

.carousel-actions {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 46px;
}

.carousel-btn:hover {
  background: var(--bt-green);
  color: var(--bt-black);
  transform: translateY(-2px);
}

.reel-carousel {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--container);
  overflow: visible;
  padding: 4px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reel-carousel::-webkit-scrollbar {
  display: none;
}

.reel-card {
  background: #f7f8f4;
  border: 1px solid rgba(184, 207, 122, 0.28);
  border-radius: var(--radius-card);
  color: var(--bt-graphite);
  overflow: hidden;
  scroll-snap-align: start;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.reel-card:hover {
  border-color: rgba(184, 207, 122, 0.68);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
  transform: translateY(-6px);
}

.reel-video {
  background: #050505;
  aspect-ratio: 9 / 16;
}

.reel-video video {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.reel-card:hover .reel-video video {
  transform: scale(1.04);
}

.reel-copy {
  padding: 22px;
}

.reel-copy span {
  color: var(--bt-olive);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reel-copy h3 {
  font-size: 22px;
  margin-top: 10px;
}

.reel-copy p {
  color: var(--bt-muted);
  font-size: 15px;
  margin-top: 10px;
}

.included-card {
  background: var(--bt-ivory);
  border: 1px solid var(--bt-sand);
  border-radius: var(--radius-card);
  display: grid;
  gap: 44px;
  grid-template-columns: 0.92fr 1fr;
  margin: 0 auto;
  max-width: var(--container);
  padding: clamp(28px, 5vw, 58px);
}

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

.included-card li {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(216, 205, 186, 0.74);
  border-radius: 8px;
  color: var(--bt-black);
  font-weight: 700;
  padding: 13px 16px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.online {
  grid-template-columns: 0.78fr 1fr;
}

.online img {
  aspect-ratio: 0.82;
  border-radius: var(--radius-card);
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.online .btn {
  margin-top: 32px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 880px;
}

.location {
  background: #090909;
  padding-bottom: 36px;
  padding-top: 36px;
}

.location-card {
  background: transparent;
  border-top: 1px solid rgba(184, 207, 122, 0.18);
  border-radius: 0;
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 0 auto;
  max-width: var(--container);
  padding: 30px 0 0;
}

.location-card h2 {
  color: white;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.18;
  max-width: 520px;
}

.location-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  margin-top: 12px;
  max-width: 520px;
}

.location-details {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

.location-details article {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(184, 207, 122, 0.16);
  border-radius: 0;
  padding: 0 20px 22px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.location-details span {
  color: rgba(184, 207, 122, 0.84);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-details strong {
  color: white;
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.42;
}

.location-details a:hover {
  color: var(--bt-green);
}

.location-details article:hover {
  border-left-color: rgba(184, 207, 122, 0.42);
  transform: translateX(3px);
}

details {
  background: var(--bt-offwhite);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-card);
  padding: 0 22px;
}

summary {
  color: var(--bt-black);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  padding: 20px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--bt-olive);
  content: "+";
  float: right;
  font-size: 22px;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--bt-muted);
  padding: 0 0 22px;
}

.final-cta {
  align-items: center;
  background:
    radial-gradient(circle at 22% 12%, rgba(184, 207, 122, 0.19), transparent 34%),
    var(--bt-black);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 104px 24px;
  text-align: center;
}

.final-cta img {
  height: 128px;
  margin-bottom: 36px;
  width: auto;
}

.final-cta h2 {
  color: white;
  max-width: 880px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
}

.final-cta .btn {
  margin-top: 34px;
}

.footer {
  align-items: center;
  background: #090909;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 30px clamp(20px, 5vw, 64px);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong {
  color: white;
  font-family: var(--font-heading);
}

.footer div:last-child {
  display: flex;
  gap: 18px;
}

.footer a:hover {
  color: var(--bt-green);
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  color: white;
  display: inline-flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  width: 62px;
  z-index: 50;
}

.whatsapp-float::before {
  animation: pulseRing 1.9s ease-out infinite;
  background: rgba(37, 211, 102, 0.45);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.whatsapp-float:hover {
  background: #1fbd5b;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 34px;
  width: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.reveal[data-reveal="right"] {
  transform: translateX(28px);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.96);
}

.reveal.is-visible[data-reveal] {
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .nav.is-open {
    background: rgba(17, 17, 17, 0.98);
    display: grid;
    gap: 0;
    inset: 82px 0 auto;
    padding: 20px 24px 28px;
    position: fixed;
  }

  .nav.is-open a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    padding: 18px 0;
  }

  .hero-content,
  .section-grid,
  .online,
  .results,
  .dark-panel,
  .included-card {
    grid-template-columns: 1fr;
  }

  .review-heading {
    align-items: start;
    flex-direction: column;
  }

  .proof-heading {
    align-items: start;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .intro-track {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .service-card,
  .service-card.featured {
    grid-column: span 3;
  }

  .dark-content {
    justify-self: start;
    max-width: 760px;
  }

  .dark-panel img {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"] {
    transform: translateY(28px);
  }

  .reveal.is-visible[data-reveal] {
    transform: translate(0, 0) scale(1);
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    height: 62px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    gap: 42px;
    min-height: auto;
    padding: 54px 18px 52px;
  }

  .hero p,
  .section-copy p,
  .section-heading p,
  .results-copy p,
  .online p,
  .dark-content p,
  .final-cta p {
    font-size: 16px;
  }

  .authority-band {
    padding: 26px 18px;
  }

  .authority-band-inner {
    grid-template-columns: 1fr;
  }

  .authority-stat {
    grid-template-columns: 1fr;
    padding: 22px 8px;
    text-align: center;
  }

  .authority-stat + .authority-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-note {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .intro-strip,
  .audience-grid,
  .timeline,
  .result-cards {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }

  .intro-track {
    animation: introTicker 22s linear infinite;
    display: flex;
    gap: 0;
    width: max-content;
  }

  .intro-track div,
  .intro-track div:nth-child(n + 5) {
    align-items: center;
    border-right: 1px solid rgba(17, 17, 17, 0.16);
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    min-width: max-content;
    padding: 13px 18px;
  }

  .intro-track strong {
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .intro-track span {
    font-size: 13px;
    line-height: 1;
    margin-top: 0;
    white-space: nowrap;
  }

  .review-actions {
    display: none;
  }

  .review-carousel {
    grid-auto-columns: minmax(272px, 86vw);
    margin-left: -2px;
  }

  .review-card {
    min-height: 410px;
    padding: 24px;
  }

  .review-card p {
    font-size: 16px;
  }

  .carousel-actions {
    display: none;
  }

  .reel-carousel {
    display: grid;
    grid-auto-columns: minmax(264px, 84vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-left: 0;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-right: 0;
    width: 100%;
  }

  .section {
    padding: 72px 18px;
  }

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

  .service-card,
  .service-card.featured {
    grid-column: auto;
  }

  .audience-grid article {
    min-height: auto;
  }

  .audience-grid p {
    margin-top: 28px;
  }

  .credential-card {
    left: 14px;
    right: 14px;
  }

  .dark-content {
    padding: 72px 18px;
  }

  .included-card {
    padding: 24px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-details article {
    border-left: 0;
    border-top: 1px solid rgba(184, 207, 122, 0.14);
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 14px 0;
  }

  .final-cta {
    padding: 76px 18px;
  }

  .footer,
  .footer div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 18px;
    height: 56px;
    right: 18px;
    width: 56px;
  }

  .whatsapp-float svg {
    height: 31px;
    width: 31px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.v2-page .hero-v2 {
  min-height: calc(100vh - 1px);
}

.top-alert {
  background: #c63d45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 10px 18px;
  position: relative;
  text-align: center;
  z-index: 30;
}

.v2-page .hero-v2::after {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.72));
  bottom: 0;
  content: "";
  height: 22%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-v2-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  padding-bottom: 82px;
}

.v2-page .hero .hero-photo-caption {
  animation: none;
  display: flex;
  justify-content: center;
  margin: 16px 0 0;
  width: 100%;
  text-align: center;
}

.v2-page .hero h1 {
  font-size: clamp(40px, 5.1vw, 72px);
  letter-spacing: 0;
}

.v2-page .hero p {
  max-width: 720px;
}

.pain-section {
  background: white;
}

.diagnosis-card {
  background:
    linear-gradient(180deg, rgba(238, 244, 229, 0.92), rgba(247, 248, 244, 0.98));
  border: 1px solid rgba(138, 155, 99, 0.28);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.08);
  padding: clamp(28px, 4vw, 44px);
}

.diagnosis-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.diagnosis-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.diagnosis-card li {
  color: var(--bt-black);
  font-weight: 750;
  padding-left: 28px;
  position: relative;
}

.diagnosis-card li::before {
  background: var(--bt-green);
  border: 2px solid white;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(138, 155, 99, 0.24);
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 11px;
}

.diagnosis-card .btn {
  margin-top: 32px;
}

.v2-reviews {
  background: var(--bt-green-mist);
}

.v2-reviews .review-card {
  min-height: 310px;
}

.v2-services {
  background: white;
}

.v2-dark .dark-content .btn {
  margin-top: 32px;
}

.v2-included p {
  color: var(--bt-muted);
  font-size: 17px;
  margin-top: 18px;
}

.v2-included {
  column-gap: 44px;
  row-gap: 0;
}

.v2-included .included-cta {
  align-self: start;
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px;
  min-height: 66px;
  width: 100%;
}

.v2-included > ul {
  grid-column: 2;
  grid-row: 1 / 3;
}

.v2-video-proof {
  padding-top: 96px;
}

.v2-page .faq details[open] {
  background: var(--bt-green-mist);
  border-color: rgba(138, 155, 99, 0.36);
}

.v2-final {
  background:
    radial-gradient(circle at 74% 14%, rgba(184, 207, 122, 0.18), transparent 30%),
    linear-gradient(140deg, #090909 0%, #171b18 56%, #090909 100%);
}

@media (max-width: 1040px) {
  .hero-v2-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .v2-page .hero h1 {
    font-size: 35px;
  }

  .v2-page .about .section-copy {
    order: 1;
  }

  .v2-page .about .image-stack {
    order: 2;
  }

  .v2-included .included-cta {
    grid-column: auto;
    grid-row: auto;
    margin-top: 8px;
    min-height: 52px;
    width: 100%;
  }

  .v2-included {
    gap: 44px;
  }

  .v2-included > ul {
    grid-column: auto;
    grid-row: auto;
  }

  .diagnosis-card .btn {
    width: 100%;
  }
}
