:root {
  --color-white: #ffffff;
  --color-off-white: #f5f4f1;
  --color-off-white-soft: #eeece7;
  --color-black: #0c0d0e;
  --color-charcoal: #18191b;
  --color-charcoal-soft: #343537;
  --color-muted: #686a6d;
  --color-red: #d51f2b;
  --color-red-dark: #b91a25;
  --color-line: rgba(12, 13, 14, 0.12);
  --color-line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 14px 40px rgba(12, 13, 14, 0.08);
  --shadow-float: 0 16px 42px rgba(12, 13, 14, 0.13);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1240px;
  --nav-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-off-white);
  color: var(--color-black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(213, 31, 43, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-black);
  color: var(--color-white);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section-light {
  background:
    radial-gradient(circle at 78% 18%, rgba(213, 31, 43, 0.045), transparent 34%),
    var(--color-off-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 102;
  width: min(calc(100% - 40px), var(--container));
  min-height: var(--nav-height);
  margin: 14px auto 0;
  padding: 12px 14px 12px 20px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  column-gap: 24px;
  pointer-events: auto;
  transition:
    margin 320ms var(--ease),
    background-color 320ms var(--ease),
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    backdrop-filter 320ms var(--ease);
}

.navbar.scrolled {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.085em;
}

.brand-live { color: var(--color-black); }
.brand-fit { color: var(--color-red); }

.brand-sub {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--color-charcoal-soft);
  font-size: 0.86rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-black);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 10px 24px rgba(213, 31, 43, 0.2);
}

.button-primary:hover {
  background: var(--color-red-dark);
  box-shadow: 0 12px 28px rgba(213, 31, 43, 0.24);
}

.button-secondary {
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(12, 13, 14, 0.16);
}

.button-secondary:hover {
  background: var(--color-white);
  border-color: rgba(12, 13, 14, 0.24);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(12, 13, 14, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--color-black);
  border-radius: 999px;
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 14, 0.42);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100%;
  padding: 96px 24px 30px;
  background: var(--color-off-white);
  box-shadow: -18px 0 50px rgba(12, 13, 14, 0.15);
  transform: translateX(105%);
  transition: transform 320ms var(--ease);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-menu-top p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 16px 2px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-charcoal-soft);
  font-size: 1.05rem;
  font-weight: 650;
}

.mobile-nav-link.active {
  color: var(--color-red);
}

.mobile-join {
  margin-top: auto;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(140px, 16vw, 190px) 0 72px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -160px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 31, 43, 0.11), rgba(213, 31, 43, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 230px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.hero-content {
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-red);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--color-red);
  border-radius: 999px;
}

.hero-title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.3rem, 6.3vw, 6.4rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-title span {
  color: var(--color-red);
}

.hero-description {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .button {
  min-width: 144px;
}

.trust-list {
  max-width: 590px;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-charcoal-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(213, 31, 43, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-red);
  background: rgba(213, 31, 43, 0.06);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-visual {
  min-width: 0;
}

.hero-image-wrap {
  position: relative;
  min-height: min(72vh, 760px);
  overflow: hidden;
  border-radius: 24px 24px 80px 24px;
  background: var(--color-charcoal);
}


.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1200ms var(--ease);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-image {
  width: 100%;
  height: min(72vh, 760px);
  min-height: min(72vh, 760px);
  display: block;
  object-fit: cover;
  object-position: center center;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 760px);
  display: grid;
  place-items: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.placeholder-content {
  max-width: 360px;
  text-align: center;
}

.placeholder-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.placeholder-content strong {
  display: block;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  line-height: 1.12;
}

.placeholder-content small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 760ms var(--ease) forwards;
}

.hero-delay-1 { animation-delay: 80ms; }
.hero-delay-2 { animation-delay: 150ms; }
.hero-delay-3 { animation-delay: 230ms; }
.hero-delay-4 { animation-delay: 310ms; }
.hero-delay-5 { animation-delay: 390ms; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: minmax(150px, 1fr) auto minmax(140px, 1fr);
    column-gap: 18px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 6vw, 5.3rem);
  }
}

@media (max-width: 860px) {
  .navbar {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 10px;
    padding: 10px 12px 10px 14px;
    grid-template-columns: 1fr auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .desktop-nav,
  .nav-actions .nav-join {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrap,
  .image-placeholder,
  .hero-image {
    min-height: min(72svh, 640px);
  }

  .hero-content {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .navbar {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-main {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.5rem;
  }

  .hero {
    padding: 94px 0 50px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-image-wrap,
  .image-placeholder,
  .hero-image {
    min-height: 58svh;
  }

  .hero-image-wrap {
    border-radius: 20px 20px 54px 20px;
  }

  .hero-image {
    height: 58svh;
    object-position: center 28%;
  }

  .image-placeholder {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
    letter-spacing: -0.06em;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-menu-panel {
    width: min(92vw, 390px);
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* =========================
   PHASE 2 — TRANSFORMATIONS
   ========================= */
.transformations {
  padding: clamp(86px, 10vw, 132px) 0 clamp(90px, 10vw, 126px);
  overflow: hidden;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.section-heading h2 span { color: var(--color-red); }
.section-heading p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.carousel-shell { width: 100%; }
.carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 26px;
}
.carousel-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform 560ms var(--ease);
  touch-action: pan-y;
}
.carousel-track.is-dragging { transition: none; }
.carousel-track.no-transition { transition: none !important; }

.transformation-card {
  flex: 0 0 calc((100% - 56px) / 3);
  margin: 0 14px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 10px 32px rgba(12, 13, 14, 0.06);
  opacity: 0.48;
  transform: scale(0.9);
  transition: transform 560ms var(--ease), opacity 560ms var(--ease), box-shadow 560ms var(--ease);
  overflow: hidden;
}
.transformation-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 48px rgba(12, 13, 14, 0.12);
}
.transformation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-off-white-soft);
}
.transformation-photo,
.video-thumb {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(145deg, #292a2c, #101112);
}
.transformation-photo img,
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}
.transformation-photo.has-image img,
.video-thumb.has-image img { opacity: 1; }
.transformation-photo > span,
.video-thumb > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(12, 13, 14, 0.68);
  color: var(--color-white);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.transformation-photo > strong {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--color-white);
  font-size: 1.05rem;
}
.placeholder-photo::before {
  content: "PLACEHOLDER";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.25);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.transformation-meta {
  padding: 20px 20px 22px;
}
.transformation-meta h3,
.video-content h3 { margin: 0; font-size: 1.15rem; letter-spacing: -0.025em; }
.transformation-meta p { margin: 5px 0 0; color: var(--color-red); font-size: .82rem; font-weight: 800; }

.carousel-controls {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin: 6px auto 0;
}
.carousel-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(12, 13, 14, 0.13);
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-black);
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.carousel-arrow:hover { transform: translateY(-2px); border-color: rgba(12,13,14,.28); }
.carousel-status { color: var(--color-muted); text-align: center; font-size: .72rem; font-weight: 750; letter-spacing: .04em; }
.social-row { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--color-charcoal-soft);
  font-size: .76rem;
  font-weight: 750;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease;
}
.social-link:hover { color: var(--color-red); background: rgba(213,31,43,.06); }
.social-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link svg .icon-fill { fill: currentColor; stroke: none; }
.section-cta { display: flex; justify-content: center; margin-top: 30px; }

/* =========================
   PHASE 2 — YOUTUBE
   ========================= */
.youtube-section {
  padding: clamp(88px, 10vw, 132px) 0 clamp(92px, 10vw, 128px);
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(150deg, #17181a 0%, #0c0d0e 70%);
}
.section-heading-dark p { color: rgba(255,255,255,.62); }
.section-heading-dark .eyebrow { color: #f04b55; }
.section-heading-dark .eyebrow::before { background: #f04b55; }
.video-card {
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0 10px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #202124;
  opacity: .45;
  transform: scale(.9);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  transition: transform 560ms var(--ease), opacity 560ms var(--ease), box-shadow 560ms var(--ease);
}
.video-card.is-active { opacity: 1; transform: scale(1); box-shadow: 0 24px 56px rgba(0,0,0,.28); }
.video-thumb { min-height: 270px; }
.video-thumb > strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  z-index: 2;
  color: var(--color-white);
  font-size: 1rem;
}
.video-content { padding: 20px 20px 24px; }
.video-label { margin: 0 0 7px; color: #ef3b47; font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.video-content h3 { color: var(--color-white); }
.video-content > p:last-child { margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: .83rem; line-height: 1.6; }
.carousel-arrow-dark { border-color: rgba(255,255,255,.16); background: #202124; color: var(--color-white); }
.carousel-arrow-dark:hover { border-color: rgba(255,255,255,.3); background: #282a2d; }
.youtube-section .carousel-status { color: rgba(255,255,255,.52); }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  .transformations, .youtube-section { padding-top: 78px; padding-bottom: 82px; }
  .section-heading { margin-bottom: 32px; }
  .transformation-card { flex-basis: calc(100% - 28px); margin: 0 14px; opacity: 1; transform: scale(.96); }
  .transformation-card.is-active { transform: scale(1); }
  .transformation-photo { min-height: 55vw; }
  .video-card { flex-basis: calc(100% - 28px); margin: 0 14px; opacity: 1; transform: scale(.96); }
  .video-card.is-active { transform: scale(1); }
  .video-thumb { min-height: 58vw; }
  .carousel-viewport { padding-top: 8px; }
}

@media (max-width: 560px) {
  .section-heading h2 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .section-heading p { font-size: .92rem; }
  .transformation-photo { min-height: 56vw; }
  .video-thumb { min-height: 56vw; }
  .carousel-controls { grid-template-columns: 42px 1fr 42px; gap: 9px; }
  .carousel-arrow { width: 42px; height: 42px; }
  .carousel-status { font-size: .65rem; }
  .social-row { margin-top: 26px; }
  .section-cta .button { width: 100%; }
}


/* =========================
   PHASE 3 — ABOUT LIVEFIT
   ========================= */
.about-livefit {
  padding: clamp(88px, 10vw, 132px) 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.about-visual { min-width: 0; }
.about-image-stage {
  position: relative;
  min-height: clamp(420px, 48vw, 610px);
  overflow: hidden;
  border-radius: var(--radius-lg) 12px var(--radius-lg) 12px;
  background: var(--color-charcoal);
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1200ms var(--ease);
  pointer-events: none;
}
.about-slide.is-active { opacity: 1; transform: scale(1); }
.about-placeholder { width: 100%; height: 100%; min-height: inherit; }
.about-placeholder img { opacity: 0; }
.about-placeholder.has-image img { opacity: 1; }
.about-content { max-width: 600px; }
.about-content h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}
.about-content h2 span { color: var(--color-red); }
.about-subtitle {
  margin: 20px 0 0;
  color: var(--color-charcoal-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  font-weight: 650;
}
.about-description {
  margin: 18px 0 28px;
  color: var(--color-muted);
  font-size: .98rem;
  line-height: 1.8;
}

/* =========================
   PHASE 3 — STATS
   ========================= */
.stats-section {
  padding: 34px 0;
  background: var(--color-black);
  color: var(--color-white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.stat-item {
  position: relative;
  min-height: 104px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-number {
  display: inline-flex;
  align-items: baseline;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}
.stat-number span:last-child { color: #ed3b46; margin-left: 2px; }
.stat-label {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =========================
   PHASE 3 — WHY LIVEFIT
   ========================= */
.why-livefit {
  padding: clamp(88px, 10vw, 132px) 0 clamp(94px, 10vw, 132px);
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.why-card {
  min-height: 225px;
  padding: 30px;
  border: 1px solid rgba(12,13,14,.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 30px rgba(12,13,14,.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 300ms ease;
}
.why-card:hover { transform: translateY(-3px); border-color: rgba(213,31,43,.18); box-shadow: 0 14px 34px rgba(12,13,14,.07); }
.why-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--color-red);
  background: rgba(213,31,43,.07);
}
.why-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { margin: 0; font-size: 1.08rem; letter-spacing: -.02em; }
.why-card p { margin: 9px 0 0; color: var(--color-muted); font-size: .85rem; line-height: 1.65; }
.why-controls { display: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 860px) {
  .about-livefit { padding-top: 78px; padding-bottom: 82px; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-image-stage { min-height: 62vw; }
  .about-content { max-width: none; }
  .stats-section { padding: 22px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { min-height: 92px; padding: 10px 14px; }
  .stat-item:nth-child(3)::before { display: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .why-livefit { padding-top: 78px; padding-bottom: 82px; }
  .why-grid {
    display: flex;
    gap: 0;
    min-width: 100%;
  }
  .why-card {
    display: none;
    width: 100%;
    min-height: 220px;
  }
  .why-card.is-active { display: block; animation: why-card-in 430ms var(--ease) both; }
  .why-controls {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    align-items: center;
    max-width: 520px;
    margin: 18px auto 0;
  }
  .why-controls .carousel-arrow { width: 42px; height: 42px; }
  .why-controls .carousel-status { font-size: .68rem; }
}

@keyframes why-card-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 560px) {
  .about-image-stage { min-height: 68vw; border-radius: 18px; }
  .about-content h2 { font-size: clamp(2.5rem, 13vw, 3.7rem); }
  .about-subtitle { font-size: 1rem; }
  .about-description { font-size: .92rem; }
  .about-content .button { width: 100%; }
  .stat-number { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .stat-label { font-size: .61rem; letter-spacing: .07em; }
  .why-card { min-height: 235px; padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-slide,
  .hero-slide { transition: none; transform: none; }
  .why-card.is-active { animation: none; }
}

/* =========================
   PHASE 4 — ONLINE TRAINING
   ========================= */
.online-training {
  padding: clamp(88px, 10vw, 132px) 0;
  overflow: hidden;
}
.online-training-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.online-training-content { max-width: 660px; }
.online-training-content h2,
.calculator-preview-content h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}
.online-training-content h2 span,
.calculator-preview-content h2 span { color: var(--color-red); }
.online-training-subtitle,
.calculator-preview-subtitle {
  margin: 20px 0 0;
  color: var(--color-charcoal-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  font-weight: 650;
}
.online-training-description,
.calculator-preview-description {
  margin: 18px 0 26px;
  color: var(--color-muted);
  font-size: .98rem;
  line-height: 1.8;
}
.training-features {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.training-features li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.feature-marker {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--color-red);
  background: rgba(213,31,43,.07);
  font-size: .75rem;
  font-weight: 900;
}
.training-features strong { display: block; font-size: .91rem; }
.training-features small { display: block; margin-top: 3px; color: var(--color-muted); font-size: .78rem; line-height: 1.5; }
.online-training-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.online-training-visual { min-width: 0; }
.online-training-image {
  min-height: clamp(430px, 50vw, 620px);
  border-radius: 28px 28px 96px 28px;
  overflow: hidden;
}

/* =========================
   PHASE 4 — BMI / BMR PREVIEW
   ========================= */
.calculator-preview {
  padding: clamp(82px, 9vw, 120px) 0;
  overflow: hidden;
}
.calculator-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.calculator-preview-content { max-width: 640px; }
.health-visual {
  width: 100%;
  max-width: 590px;
  justify-self: end;
}
.health-visual svg { display: block; width: 100%; height: auto; }

/* =========================
   PHASE 4 — MEMBERSHIP PLANS
   ========================= */
.membership-plans {
  padding: clamp(88px, 10vw, 132px) 0;
  overflow: hidden;
}
.pricing-notice {
  margin: -6px auto 32px;
  max-width: 900px;
  padding: 16px 20px;
  border: 1px solid rgba(213,31,43,.18);
  border-radius: var(--radius-sm);
  background: rgba(213,31,43,.055);
  color: var(--color-charcoal);
  text-align: center;
  font-size: clamp(.78rem, 1.5vw, .96rem);
  font-weight: 900;
  letter-spacing: .045em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  min-height: 410px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(12,13,14,.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(12,13,14,.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213,31,43,.18);
  box-shadow: 0 14px 34px rgba(12,13,14,.07);
}
.pricing-card.best-value {
  border-color: rgba(213,31,43,.32);
  background: #fff;
  box-shadow: 0 16px 40px rgba(12,13,14,.08);
}
.best-value-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(213,31,43,.09);
  color: var(--color-red);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.pricing-top { min-height: 42px; }
.pricing-duration {
  color: var(--color-charcoal-soft);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.pricing-price {
  margin-top: 16px;
  color: var(--color-black);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 900;
}
.pricing-equivalent {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--color-charcoal-soft);
  font-size: .82rem;
  font-weight: 700;
}
.pricing-saving {
  margin: 14px 0 0;
  color: var(--color-red);
  font-size: .8rem;
  font-weight: 850;
}
.pricing-description {
  margin: 18px 0 24px;
  color: var(--color-muted);
  font-size: .82rem;
  line-height: 1.65;
}
.pricing-cta { margin-top: auto; width: 100%; }
.pricing-selector, .mobile-plan-panel { display: none; }

@media (max-width: 1024px) {
  .online-training-grid,
  .calculator-preview-grid { gap: 46px; }
  .pricing-card { padding: 24px; }
  .pricing-price { font-size: clamp(2.1rem, 4vw, 2.8rem); }
}

@media (max-width: 860px) {
  .online-training-grid,
  .calculator-preview-grid { grid-template-columns: 1fr; }
  .online-training-visual { order: -1; }
  .online-training-content,
  .calculator-preview-content { max-width: none; }
  .online-training-image { min-height: 62vw; }
  .health-visual { max-width: 640px; justify-self: center; order: -1; }
  .pricing-grid { display: none; }
  .pricing-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin: 0 auto 14px;
    max-width: 620px;
    padding: 5px;
    border: 1px solid rgba(12,13,14,.08);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.7);
  }
  .pricing-tab {
    min-height: 44px;
    padding: 8px 7px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--color-muted);
    font: inherit;
    font-size: .7rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }
  .pricing-tab.is-selected {
    background: var(--color-black);
    color: var(--color-white);
  }
  .pricing-tab:focus-visible { outline: 3px solid rgba(213,31,43,.3); outline-offset: 2px; }
  .mobile-plan-panel { display: block; }
  .mobile-plan-panel .pricing-card { min-height: 380px; animation: pricing-panel-in 260ms ease both; }
  .mobile-plan-panel .pricing-card:hover { transform: none; }
}

@media (max-width: 560px) {
  .online-training { padding-top: 78px; padding-bottom: 84px; }
  .online-training-image { min-height: 76vw; border-radius: 20px 20px 64px 20px; }
  .online-training-content h2,
  .calculator-preview-content h2 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .online-training-actions { display: grid; grid-template-columns: 1fr; }
  .online-training-actions .button { width: 100%; }
  .calculator-preview { padding-top: 78px; padding-bottom: 84px; }
  .health-visual { margin-bottom: -4px; }
  .membership-plans { padding-top: 80px; padding-bottom: 88px; }
  .pricing-notice { margin-bottom: 24px; padding: 14px 13px; font-size: .7rem; line-height: 1.45; }
  .pricing-selector { gap: 4px; }
  .pricing-tab { font-size: .63rem; min-height: 42px; }
  .mobile-plan-panel .pricing-card { padding: 26px; min-height: 365px; }
  .pricing-price { font-size: clamp(2.4rem, 13vw, 3.2rem); }
}

@keyframes pricing-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card, .pricing-tab, .mobile-plan-panel .pricing-card { transition: none; animation: none; }
}

/* =========================
   PHASE 5 — TRAINERS
   ========================= */
.trainers-section { padding: 108px 0; }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.trainer-card {
  overflow: hidden;
  border: 1px solid rgba(12,13,14,.08);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 14px 38px rgba(12,13,14,.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.trainer-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(12,13,14,.09); }
.trainer-card:focus-visible { outline: 3px solid rgba(213,31,43,.28); outline-offset: 4px; }
.trainer-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--color-off-white);
}
.trainer-image img,
.community-visual img,
.review-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 180ms ease; }
.trainer-image img[src], .community-visual img[src], .review-image img[src] { }
.trainer-content { padding: 24px 24px 26px; }
.trainer-role { margin: 0 0 7px; color: var(--color-red); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trainer-content h3 { margin: 0 0 7px; font-size: clamp(1.35rem, 2vw, 1.7rem); }
.trainer-experience { margin: 0; color: var(--color-muted); }
.mobile-carousel-controls { display: none; }

/* =========================
   PHASE 5 — COMMUNITY
   ========================= */
.community-home { padding: 110px 0; }
.community-home-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.community-visual { position: relative; min-height: 530px; overflow: hidden; border-radius: var(--radius-lg); background: var(--color-charcoal); }
.community-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,14,.04), rgba(12,13,14,.7)); pointer-events: none; }
.community-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 26px; color: var(--color-white); }
.community-overlay span { display: inline-block; font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 900; letter-spacing: .08em; }
.community-content { max-width: 610px; }
.community-content h2 { margin: 12px 0 14px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.045em; }
.community-content h2 span { color: var(--color-red); }
.community-subtitle { margin: 0 0 14px; font-weight: 800; }
.community-description { margin: 0 0 24px; color: var(--color-muted); line-height: 1.75; }
.community-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 18px; padding: 0; margin: 0 0 28px; list-style: none; }
.community-points li { display: flex; align-items: center; gap: 10px; font-weight: 750; }
.mini-icon { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px; background: rgba(213,31,43,.09); color: var(--color-red); }
.mini-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* =========================
   PHASE 5 — GOOGLE REVIEWS
   ========================= */
.reviews-section { padding: 110px 0; }
.review-carousel { overflow: hidden; }
.review-viewport { overflow: hidden; padding: 10px 0 28px; touch-action: pan-y; }
.review-track { display: flex; align-items: stretch; gap: 22px; transition: transform 520ms cubic-bezier(.22,.8,.25,1); will-change: transform; }
.review-track.no-transition { transition: none; }
.review-track.is-dragging { transition: none; cursor: grabbing; }
.review-card { flex: 0 0 min(560px, 62vw); padding: 15px; border: 1px solid rgba(12,13,14,.08); border-radius: var(--radius-lg); background: var(--color-off-white); box-shadow: 0 12px 34px rgba(12,13,14,.05); opacity: .55; transform: scale(.91); transition: transform 420ms ease, opacity 420ms ease, box-shadow 420ms ease; cursor: pointer; }
.review-card.is-active { opacity: 1; transform: scale(1); box-shadow: 0 18px 44px rgba(12,13,14,.1); }
.review-card:focus-visible { outline: 3px solid rgba(213,31,43,.28); outline-offset: 4px; }
.review-image { position: relative; min-height: 470px; overflow: hidden; border-radius: calc(var(--radius-lg) - 6px); background: #ece9e2; }
.review-source { display: block; padding: 14px 5px 2px; color: var(--color-muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* =========================
   PHASE 5 — CTA
   ========================= */
.transformation-cta { padding: 118px 0; background: var(--color-black); color: var(--color-white); }
.transformation-cta-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.eyebrow-light { color: rgba(255,255,255,.62); }
.transformation-cta h2 { margin: 12px 0 14px; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .94; letter-spacing: -.055em; }
.transformation-cta h2 span { color: var(--color-red); }
.transformation-cta p { margin: 0 auto 28px; color: rgba(255,255,255,.72); font-size: 1.05rem; }

/* Graceful placeholder behavior for future assets. */
.image-placeholder { display: grid; place-items: center; align-content: center; gap: 5px; color: #777c80; text-align: center; }
.image-placeholder > span { position: relative; z-index: 1; font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.image-placeholder > strong { position: relative; z-index: 1; font-size: .88rem; }
.image-placeholder img { z-index: 3; }
.image-placeholder.has-image > span,
.image-placeholder.has-image > strong { display: none; }

@media (max-width: 860px) {
  .trainers-section, .community-home, .reviews-section { padding: 84px 0; }
  .trainers-grid { display: block; }
  .trainer-card { display: none; box-shadow: 0 12px 30px rgba(12,13,14,.06); }
  .trainer-card.is-active { display: block; animation: phase5-card-in 320ms ease both; }
  .trainer-image { min-height: 76vw; max-height: 520px; }
  .trainer-controls { display: flex; }
  .community-home-grid { grid-template-columns: 1fr; gap: 38px; }
  .community-visual { min-height: 68vw; max-height: 560px; }
  .community-content { max-width: none; }
  .review-card { flex-basis: min(600px, 88vw); }
  .review-image { min-height: 62vw; max-height: none; }
}

@media (max-width: 560px) {
  .trainers-section, .community-home, .reviews-section { padding: 76px 0; }
  .trainer-content { padding: 20px 19px 22px; }
  .community-points { grid-template-columns: 1fr; gap: 11px; }
  .community-visual { min-height: 84vw; }
  .community-overlay { left: 20px; right: 20px; bottom: 20px; }
  .community-overlay span { font-size: 1rem; }
  .review-card { flex-basis: calc(100vw - 32px); padding: 10px; }
  .review-image { min-height: 110vw; }
  .transformation-cta { padding: 88px 0; }
  .transformation-cta h2 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
}

@keyframes phase5-card-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .trainer-card, .trainer-image img, .review-track, .review-card { transition: none; animation: none; }
}

/* =========================
   PHASE 6 — FAQ
   ========================= */
.faq-section { padding: 112px 0; }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.faq-intro { position: sticky; top: 130px; margin: 0; text-align: left; }
.faq-intro h2 { margin-bottom: 16px; }
.faq-list { border-top: 1px solid var(--color-line); }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-question { width: 100%; min-height: 76px; padding: 20px 0; border: 0; background: transparent; color: var(--color-black); display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; cursor: pointer; font-size: clamp(1rem, 1.5vw, 1.16rem); font-weight: 780; }
.faq-question:hover { color: var(--color-red); }
.faq-question[aria-expanded="true"] { color: var(--color-red); }
.faq-icon { position: relative; width: 22px; height: 22px; flex: 0 0 22px; color: currentColor; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 15px; height: 1.5px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); transition: transform 220ms var(--ease); }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 260ms var(--ease), opacity 260ms ease; opacity: 1; }
.faq-answer[hidden] { display: grid; grid-template-rows: 0fr; opacity: 0; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 52px 22px 0; color: var(--color-muted); line-height: 1.75; }

/* =========================
   PHASE 6 — READY TO START
   ========================= */
.ready-start { padding: 120px 0 126px; background: linear-gradient(145deg, var(--color-charcoal), var(--color-black)); color: var(--color-white); position: relative; overflow: hidden; }
.ready-start::before { content: ''; position: absolute; width: 420px; height: 420px; right: -160px; top: -180px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 0 60px rgba(213,31,43,.025), 0 0 0 120px rgba(255,255,255,.02); }
.ready-start-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.ready-start h2 { margin: 12px 0 14px; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .92; letter-spacing: -.06em; }
.ready-start h2 span { color: var(--color-red); }
.ready-start-subtitle { margin: 0 0 12px; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 780; color: rgba(255,255,255,.9); }
.ready-start-copy { max-width: 660px; margin: 0 auto 30px; color: rgba(255,255,255,.68); line-height: 1.8; }

/* =========================
   PHASE 6 — FOOTER
   ========================= */
.site-footer { padding: 78px 0 22px; background: #0a0b0c; color: var(--color-white); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(160px, .7fr) minmax(220px, .9fr); gap: 60px; padding-bottom: 58px; }
.footer-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.footer-brand > span { font-size: 1.55rem; font-weight: 950; letter-spacing: .09em; }
.footer-brand .brand-live { color: inherit; }
.footer-brand .brand-fit { color: red; }
.footer-brand small { margin-top: 7px; color: rgba(255,255,255,.48); font-size: .58rem; font-weight: 750; letter-spacing: .2em; }
.footer-tagline { margin: 18px 0 8px; font-weight: 800; }
.footer-description { max-width: 430px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.75; }
.footer-column h2 { margin: 0 0 18px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.52); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.76); font-size: .92rem; transition: color 180ms ease, transform 180ms ease; }
.footer-links a:hover { color: var(--color-white); transform: translateX(2px); }
.footer-contact { margin: 0; display: grid; gap: 13px; font-style: normal; }
.footer-contact p { margin: 0; display: grid; gap: 2px; }
.footer-contact p > span:first-child { color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-contact a, .footer-contact p > span:last-child, .footer-inline-button { color: rgba(255,255,255,.76); font-size: .9rem; }
.footer-contact a:hover, .footer-inline-button:hover { color: var(--color-white); }
.footer-inline-button { padding: 0; border: 0; background: none; cursor: pointer; text-align: left; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.footer-social-link { min-height: 40px; padding: 0 12px; border: 1px solid var(--color-red); border-radius: 11px; display: inline-flex; align-items: center; gap: 8px; color: var(--color-white); background: var(--color-red); font-size: .76rem; transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.footer-social-link:hover { border-color: #b71926; background: #b71926; color: var(--color-white); transform: translateY(-2px); }
.footer-social-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-link .icon-fill { fill: currentColor; stroke: none; }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: .72rem; }
.footer-bottom p { margin: 0; }

/* =========================
   PHASE 6 — FLOATING WHATSAPP
   ========================= */
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 50px; padding: 0 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; display: inline-flex; align-items: center; gap: 9px; background: #178f45; color: var(--color-white); box-shadow: 0 14px 34px rgba(12,13,14,.2); cursor: pointer; font-size: .8rem; font-weight: 800; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #137d3c; box-shadow: 0 18px 38px rgba(12,13,14,.25); }
.floating-whatsapp svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* =========================
   PHASE 6 — FREE TRIAL MODAL
   ========================= */
.trial-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(6,7,8,.62); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); opacity: 0; visibility: hidden; transition: opacity 220ms ease, visibility 220ms ease; }
.trial-modal.is-open { opacity: 1; visibility: visible; }
.trial-modal[hidden] { display: grid; }
.trial-modal-backdrop { position: absolute; inset: 0; }
.trial-dialog { position: relative; z-index: 1; width: min(100%, 560px); padding: clamp(32px, 5vw, 52px); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: linear-gradient(150deg, #202124, #0c0d0e); color: var(--color-white); box-shadow: 0 30px 90px rgba(0,0,0,.35); transform: translateY(14px) scale(.98); transition: transform 260ms var(--ease); }
.trial-modal.is-open .trial-dialog { transform: translateY(0) scale(1); }
.trial-dialog h2 { margin: 12px 0 12px; font-size: clamp(2.35rem, 6vw, 4.2rem); line-height: .96; letter-spacing: -.05em; }
.trial-dialog h2 span { color: var(--color-red); }
.trial-dialog p { max-width: 440px; margin: 0 0 26px; color: rgba(255,255,255,.7); line-height: 1.7; }
.trial-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.05); color: var(--color-white); cursor: pointer; font-size: 1.5rem; line-height: 1; }
.trial-close:hover { background: rgba(255,255,255,.1); }

@media (max-width: 860px) {
  .faq-section { padding: 84px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-intro { position: static; }
  .faq-answer p { padding-right: 0; }
  .ready-start { padding: 90px 0 96px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 34px; }
  .footer-brand-column { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .faq-section { padding: 76px 0; }
  .faq-question { min-height: 70px; padding: 18px 0; font-size: .98rem; }
  .faq-answer p { padding-bottom: 19px; font-size: .9rem; }
  .ready-start { padding: 82px 0 88px; }
  .ready-start h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .ready-start-copy { font-size: .92rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-brand-column { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .floating-whatsapp { right: 16px; bottom: 16px; min-width: 50px; width: 50px; height: 50px; min-height: 50px; padding: 0; border-radius: 14px; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .trial-modal { padding: 14px; }
  .trial-dialog { padding: 32px 24px 28px; border-radius: 20px; }
  .trial-dialog .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon::before, .faq-icon::after, .faq-answer, .ready-start, .footer-links a, .footer-social-link, .floating-whatsapp, .trial-modal, .trial-dialog { transition: none; }
}
.faq-answer.is-closing { grid-template-rows: 0fr; opacity: 0; }

/* =========================
   PHASE 7 — ONLINE TRAINING PAGE
   ========================= */
.online-page { background: var(--color-off-white); }
.ot-header { position: sticky; top: 0; z-index: 80; background: rgba(245,244,241,.92); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.ot-navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ot-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.ot-brand span { font-size: 1.2rem; font-weight: 950; letter-spacing: .1em; }
.ot-brand .brand-live { color: inherit; }
.ot-brand .brand-fit { color: var(--color-red); }
.ot-brand small { margin-top: 5px; color: var(--color-muted); font-size: .56rem; font-weight: 800; letter-spacing: .22em; }
.ot-back { min-height: 42px; }
.ot-hero { padding: clamp(76px, 10vw, 130px) 0 clamp(78px, 9vw, 118px); overflow: hidden; }
.ot-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); align-items: center; gap: clamp(34px, 7vw, 96px); }
.ot-hero-copy h1 { max-width: 720px; margin: 12px 0 22px; font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .94; letter-spacing: -.065em; }
.ot-hero-copy h1 span, .ot-coaching h2 span, .ot-app-showcase h2 span, .ot-plans h2 span, .ot-transformations h2 span, .ot-testimonials h2 span, .ot-final-cta h2 span { color: var(--color-red); }
.ot-hero-copy > p { max-width: 620px; margin: 0; color: var(--color-muted); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.75; }
.ot-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ot-hero-visual { min-height: 560px; display: grid; place-items: end center; }
.ot-trainer-placeholder { position: relative; width: min(70%, 50px); min-height: 600px; overflow: hidden; background: radial-gradient(circle at 52% 28%, rgba(213,31,43,.12), transparent 34%), linear-gradient(160deg, #e9e6df, #f5f4f1 62%); }
.ot-trainer-placeholder img { position: absolute; inset: 0; width: 70%; height: 70%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 240ms ease; }
.ot-trainer-placeholder.has-image img { opacity: 1; }
.ot-trainer-fallback { position: absolute; inset: auto 0 0; z-index: 1; padding: 48px 34px 38px; background: linear-gradient(transparent, rgba(245,244,241,.96)); }
.ot-trainer-fallback span { color: var(--color-red); font-size: .66rem; font-weight: 900; letter-spacing: .17em; }
.ot-trainer-fallback strong { display: block; max-width: 320px; margin-top: 9px; font-size: 1.4rem; line-height: 1.08; }
.ot-trainer-fallback small { display: block; max-width: 340px; margin-top: 8px; color: var(--color-muted); line-height: 1.5; }
.ot-coaching, .ot-app-showcase, .ot-plans, .ot-transformations, .ot-testimonials { padding: clamp(82px, 9vw, 122px) 0; }
.ot-coaching-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.ot-coaching-card { min-height: 270px; padding: 30px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); box-shadow: var(--shadow-soft); transition: transform 220ms var(--ease), border-color 220ms ease; }
.ot-coaching-card:hover { transform: translateY(-3px); border-color: rgba(213,31,43,.28); }
.ot-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(213,31,43,.08); color: var(--color-red); }
.ot-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ot-coaching-card h3 { margin: 28px 0 10px; font-size: 1.2rem; }
.ot-coaching-card p { margin: 0; color: var(--color-muted); line-height: 1.7; }
.ot-mobile-controls { display: none; }
.ot-app-rail { display: grid; grid-template-columns: repeat(5, minmax(180px, 1fr)); gap: 14px; margin-top: 44px; }
.ot-app-shot { min-height: 380px; margin: 0; overflow: hidden; border: 1px solid var(--color-line); border-radius: var(--radius-lg); display: flex; flex-direction: column; justify-content: end; background: linear-gradient(155deg, #17181a, #2b2d30); color: var(--color-white); box-shadow: var(--shadow-soft); }
.ot-app-shot img { width: 100%; height: 290px; object-fit: cover; opacity: 0; display: block; }
.ot-app-shot.has-image img { opacity: 1; }
.ot-app-shot::before { content: ""; flex: 1; margin: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(213,31,43,.06)); }
.ot-app-shot.has-image::before { display: none; }
.ot-app-shot figcaption { padding: 0 24px 24px; }
.ot-app-shot span { color: rgba(255,255,255,.5); font-size: .64rem; font-weight: 850; letter-spacing: .16em; }
.ot-app-shot strong { display: block; margin-top: 7px; font-size: 1.05rem; }
.ot-app-shot small { display: block; margin-top: 4px; color: rgba(255,255,255,.48); }
.ot-plan-selector { display: none; }
.ot-plans-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 44px; }
.ot-plan-card { position: relative; min-height: 430px; padding: 30px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-white); display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.ot-plan-card.best-value { border-color: rgba(213,31,43,.4); transform: translateY(-8px); }
.ot-plan-card .best-value-badge { position: absolute; top: 18px; right: 18px; }
.ot-plan-duration { font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ot-plan-price { margin: 22px 0 14px; font-size: clamp(2.2rem, 4vw, 3.3rem); font-weight: 950; letter-spacing: -.05em; }
.ot-plan-card > p { color: var(--color-muted); line-height: 1.65; }
.ot-plan-card ul { margin: 18px 0 28px; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--color-charcoal-soft); }
.ot-plan-card li::before { content: "✓"; margin-right: 9px; color: var(--color-red); font-weight: 900; }
.ot-plan-card .button { margin-top: auto; }
.ot-mobile-plan { display: none; }
.ot-transform-wrap, .ot-testimonial-wrap { position: relative; margin-top: 44px; display: flex; align-items: center; gap: 14px; }
.ot-transform-track { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; align-items: center; }
.ot-transform-card { padding: 14px; border-radius: var(--radius-lg); background: var(--color-white); border: 1px solid var(--color-line); opacity: .45; transform: scale(.88); transition: transform 300ms var(--ease), opacity 300ms ease; }
.ot-transform-card.is-active { opacity: 1; transform: scale(1); }
.ot-transform-card.is-near { opacity: .68; transform: scale(.93); }
.ot-transform-placeholder { min-height: 380px; padding: 24px; display: flex; flex-direction: column; justify-content: end; border-radius: calc(var(--radius-lg) - 6px); background: linear-gradient(160deg, #e8e5de, #f7f5f1); }
.ot-transform-placeholder span { color: var(--color-red); font-size: .65rem; font-weight: 900; letter-spacing: .16em; }
.ot-transform-placeholder strong { margin-top: 8px; font-size: 1.4rem; }
.ot-transform-placeholder small { margin-top: 5px; color: var(--color-muted); }
.ot-transform-card > p { margin: 14px 5px 2px; color: var(--color-muted); font-weight: 750; }
.ot-transform-arrow { flex: 0 0 auto; }
.ot-social-links { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.ot-social-links a { min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; border: 1px solid var(--color-line); border-radius: 11px; background: var(--color-white); font-size: .8rem; font-weight: 800; }
.ot-testimonial-wrap { justify-content: center; }
.ot-testimonial-track { width: min(100%, 760px); min-height: 250px; position: relative; }
.ot-testimonial { position: absolute; inset: 0; padding: 42px; border: 1px solid var(--color-line); border-radius: var(--radius-lg); background: var(--color-white); box-shadow: var(--shadow-soft); opacity: 0; transform: translateX(18px) scale(.98); pointer-events: none; transition: opacity 280ms ease, transform 280ms var(--ease); }
.ot-testimonial.is-active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.ot-rating { color: var(--color-red); letter-spacing: .12em; }
.ot-testimonial p { margin: 24px 0 16px; font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.6; }
.ot-testimonial strong { color: var(--color-muted); }
.ot-transform-card.is-far { display: none; }
.ot-transform-card.is-near { display: block; }
.ot-final-cta { padding: clamp(90px, 11vw, 150px) 0; }
.ot-final-inner { text-align: center; max-width: 850px; }
.ot-final-inner h2 { margin: 12px 0 16px; font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -.06em; }
.ot-final-inner p { margin: 0 auto 28px; color: rgba(255,255,255,.64); font-size: 1.05rem; }
.ot-footer { padding: 20px 0 28px; background: var(--color-black); color: rgba(255,255,255,.42); text-align: center; font-size: .72rem; }
.ot-footer p { margin: 0; }

@media (max-width: 1024px) {
  .ot-hero-grid { grid-template-columns: 1fr; }
  .ot-hero-copy { max-width: 800px; }
  .ot-hero-visual { min-height: 430px; }
  .ot-trainer-placeholder { min-height: 470px; }
  .ot-app-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ot-plans-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ot-plan-card.best-value { transform: none; }
  .ot-transform-track { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 767px) {
  .ot-navbar { min-height: 72px; }
  .ot-back { min-height: 40px; padding: 0 14px; font-size: .78rem; }
  .ot-hero { padding-top: 54px; }
  .ot-hero-grid { display: flex; flex-direction: column; gap: 34px; }
  .ot-hero-visual { order: -1; width: 100%; min-height: 360px; }
  .ot-trainer-placeholder { width: 100%; min-height: 390px; }
  .ot-trainer-fallback { padding: 34px 22px 26px; }
  .ot-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .ot-actions { display: grid; grid-template-columns: 1fr; }
  .ot-actions .button { width: 100%; }
  .ot-coaching-grid { display: block; margin-top: 30px; }
  .ot-coaching-card { display: none; min-height: 250px; }
  .ot-coaching-card.is-active { display: block; animation: otCardIn 280ms var(--ease); }
  .ot-mobile-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }
  .ot-mobile-controls .carousel-status { flex: 1; text-align: center; }
  .ot-app-rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 3px 2px 14px; scrollbar-width: none; }
  .ot-app-rail::-webkit-scrollbar { display: none; }
  .ot-app-shot { flex: 0 0 82%; min-height: 410px; scroll-snap-align: center; }
  .ot-app-shot img { height: 320px; }
  .ot-plan-selector { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 30px; }
  .ot-plan-selector button { min-height: 44px; border: 1px solid var(--color-line); border-radius: 10px; background: var(--color-white); font-weight: 800; cursor: pointer; }
  .ot-plan-selector button.is-selected { border-color: var(--color-red); background: rgba(213,31,43,.08); color: var(--color-red); }
  .ot-plans-grid { display: none; }
  .ot-mobile-plan { display: block; margin-top: 12px; }
  .ot-mobile-plan .ot-plan-card { min-height: 410px; animation: otCardIn 280ms var(--ease); }
  .ot-transform-wrap { gap: 8px; margin-left: -10px; margin-right: -10px; }
  .ot-transform-track { display: flex; width: 100%; gap: 0; overflow: hidden; transition: transform 300ms var(--ease); }
  .ot-transform-card { flex: 0 0 100%; opacity: 1; transform: scale(1); padding: 10px; }
  .ot-transform-card.is-far { display: block; }
  .ot-transform-card.is-near { opacity: 1; transform: scale(1); }
  .ot-transform-placeholder { min-height: 400px; }
  .ot-transform-arrow { width: 40px; min-width: 40px; height: 40px; padding: 0; position: relative; z-index: 2; }
  .ot-social-links { margin-top: 20px; }
  .ot-testimonial-wrap { gap: 8px; }
  .ot-testimonial-track { min-height: 300px; }
  .ot-testimonial { padding: 30px 24px; }
  .ot-final-inner h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
}

@keyframes otCardIn { from { opacity: .2; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .ot-coaching-card, .ot-transform-card, .ot-testimonial, .ot-transform-track { transition: none; animation: none; }
}

/* =========================
   PHASE 8 — COMMUNITY PAGE
   ========================= */
.community-page { background: var(--color-off-white); }
.community-header { position: relative; z-index: 20; background: var(--color-off-white); border-bottom: 1px solid var(--color-line); }
.community-navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.community-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.community-brand > span { font-size: 1.42rem; font-weight: 950; letter-spacing: .09em; }
.community-brand .brand-live { color: inherit; }
.community-brand .brand-fit { color: var(--color-red); }
.community-brand small { margin-top: 6px; color: var(--color-muted); font-size: .57rem; font-weight: 850; letter-spacing: .18em; }
.community-back { min-height: 44px; }

.community-hero { position: relative; min-height: min(760px, calc(100vh - 82px)); display: grid; align-items: center; overflow: hidden; background: var(--color-black); color: var(--color-white); isolation: isolate; }
.community-hero-media { position: absolute; inset: 0; z-index: -3; background: url('.../Untitled design (1).png') center/cover no-repeat; transform: scale(1.01); }
.community-hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(6,7,8,.78), rgba(6,7,8,.48) 55%, rgba(6,7,8,.38)); }
.community-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; z-index: -1; background: linear-gradient(transparent, rgba(6,7,8,.55)); pointer-events: none; }
.community-hero-inner { padding: clamp(92px, 12vw, 160px) 0; max-width: 1240px; }
.community-hero-inner h1 { max-width: 920px; margin: 14px 0 22px; font-size: clamp(3.3rem, 8vw, 7.2rem); line-height: .91; letter-spaci: -.065em; }
.community-hero-inner h1 span, .community-final-inner h2 span, .community-space-heading h2 span { color: var(--color-red); }
.community-hero-inner > p { max-width: 680px; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.7vw, 1.2rem); line-height: 1.75; }
.community-hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.community-text-link { color: rgba(255,255,255,.8); font-size: .86rem; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 3px; }

.community-about { padding: clamp(86px, 10vw, 130px) 0; }
.community-about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.community-about-visual { position: relative; min-height: 580px; overflow: hidden; }
.community-about-image-wrap { position: absolute; inset: 0; }
.community-about-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity 700ms ease, transform 1200ms var(--ease); }
.community-about-image.is-active { opacity: 1; transform: scale(1); }
.community-image-label { position: absolute; left: 24px; bottom: 24px; z-index: 2; padding: 11px 14px; border-left: 2px solid var(--color-red); background: rgba(12,13,14,.72); color: var(--color-white); font-size: .68rem; font-weight: 900; letter-spacing: .18em; backdrop-filter: blur(6px); }
.community-about-copy { max-width: 620px; }
.community-about-copy h2 { margin: 12px 0 14px; font-size: clamp(3rem, 6vw, 5.6rem); line-height: .94; letter-spacing: -.06em; }
.community-about-copy h2 span { color: var(--color-red); }
.community-subtitle { margin: 0 0 20px; font-size: 1.05rem; font-weight: 850; color: var(--color-charcoal-soft); }
.community-about-copy > p:last-child { margin: 0; max-width: 560px; color: var(--color-muted); line-height: 1.85; }

.community-experts { padding: clamp(84px, 9vw, 120px) 0;  border-radius: 10PX;}
.community-expert-carousel { display: flex; align-items: center; gap: 14px; margin-top: 44px; border-radius: 50&; }
.community-expert-grid { flex: 1; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; border-color: red; }
.community-expert-card { min-height: 320px; padding: 30px; border: 3px solid var(--color-red); border-radius: var(--radius-md); background: var(--color-white); box-shadow: var(--shadow-soft); transition: transform 220ms var(--ease), border-color 220ms ease, opacity 260ms ease; }
.community-expert-card:hover { transform: translateY(-3px); border-color: rgba(213,31,43,.28); }
.community-expert-card > span { display: block; margin-top: 26px; color: var(--color-red); font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.community-expert-card h3 { margin: 8px 0 10px; font-size: 1.22rem; }
/* .community-expert-grid { border: red; border-radius: 5px;} */
.community-expert-card p { margin: 0; color: var(--color-muted); line-height: 1.7; }
.community-expert-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(213,31,43,.08); color: var(--color-red); }
.community-expert-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.community-expert-arrow { display: none; flex: 0 0 auto; }
.community-expert-status { display: none; margin-top: 12px; text-align: center; color: var(--color-muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }

.community-space { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0; background: var(--color-charcoal); color: var(--color-white); }
.community-space::before { content: ""; position: absolute; width: 540px; height: 540px; right: -240px; top: -220px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.community-space-heading { max-width: 760px; }
.community-space-heading h2 { margin: 12px 0 16px; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .9; letter-spacing: -.065em; }
.community-space-heading > p { max-width: 640px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.75; }
.community-concepts { position: relative; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.12); }
.community-concept { position: relative; min-height: 270px; padding: 28px 24px 22px; border-right: 1px solid rgba(255,255,255,.1); opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms var(--ease); }
.community-concept:last-child { border-right: 0; }
.community-concept.is-visible { opacity: 1; transform: translateY(0); }
.community-concept:nth-child(2) { transition-delay: 100ms; }
.community-concept:nth-child(3) { transition-delay: 200ms; }
.community-concept:nth-child(4) { transition-delay: 300ms; }
.community-concept::after { content: ""; position: absolute; left: 24px; top: -1px; width: 34px; height: 2px; background: var(--color-red); transform-origin: left; animation: communityLinePulse 4s ease-in-out infinite; }
.community-concept span { color: rgba(255,255,255,.36); font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.community-concept strong { display: block; margin-top: 44px; font-size: clamp(1.5rem, 2.4vw, 2.25rem); line-height: 1; letter-spacing: -.035em; }
.community-concept p { max-width: 220px; margin: 14px 0 0; color: rgba(255,255,255,.55); line-height: 1.65; font-size: .9rem; }
@keyframes communityLinePulse { 0%,100% { opacity: .5; transform: scaleX(.7); } 50% { opacity: 1; transform: scaleX(1); } }

.community-final-cta { position: relative; overflow: hidden; padding: clamp(100px, 12vw, 160px) 0; background: #111214; }
.community-final-inner { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.community-final-inner h2 { margin: 12px 0 18px; font-size: clamp(3.2rem, 8vw, 7rem); line-height: .9; letter-spacing: -.065em; }
.community-cta-line { margin: 0 0 12px !important; color: var(--color-white) !important; font-size: 1.12rem !important; font-weight: 850; }
.community-final-inner > p:not(.community-cta-line) { max-width: 620px; margin: 0 auto 30px; color: rgba(255,255,255,.58); line-height: 1.75; }
.community-cta-orbit { position: absolute; border: 1px solid rgba(213,31,43,.22); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 520px; height: 520px; left: -300px; top: 50%; transform: translateY(-50%); }
.orbit-two { width: 360px; height: 360px; right: -190px; top: 15%; }

@media (max-width: 1024px) {
  .community-about-grid { gap: 46px; }
  .community-about-visual { min-height: 500px; }
  .community-expert-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .community-expert-card:nth-child(n) { display: block; }
  .community-concepts { grid-template-columns: repeat(2,1fr); }
  .community-concept:nth-child(2) { border-right: 0; }
  .community-concept:nth-child(3), .community-concept:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 767px) {
  .community-navbar { min-height: 72px; gap: 14px; }
  .community-brand > span { font-size: 1.18rem; }
  .community-brand small { font-size: .5rem; }
  .community-back { min-height: 40px; padding: 0 13px; font-size: .76rem; white-space: nowrap; }
  .community-hero { min-height: 650px; }
  .community-hero-overlay { background: linear-gradient(180deg, rgba(6,7,8,.48), rgba(6,7,8,.78)); }
  .community-hero-inner { padding: 90px 0 84px; }
  .community-hero-inner h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .community-hero-inner > p { font-size: .96rem; }
  .community-hero-actions { align-items: stretch; flex-direction: column; }
  .community-hero-actions .button { width: 100%; }
  .community-text-link { align-self: center; }

  .community-about { padding: 76px 0; }
  .community-about-grid { display: flex; flex-direction: column; gap: 38px; }
  .community-about-visual { order: -1; width: 100%; min-height: 390px; }
  .community-about-copy { width: 100%; }
  .community-about-copy h2 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .community-about-copy > p:last-child { font-size: .94rem; }

  .community-experts { padding: 76px 0; }
  .community-expert-carousel { gap: 8px; margin-top: 30px; }
  .community-expert-grid { display: block; overflow: hidden; }
  .community-expert-card { display: none !important; min-height: 300px; padding: 28px; animation: communityCardIn 300ms var(--ease); }
  .community-expert-card.is-active { display: block !important; }
  .community-expert-card:hover { transform: none; }
  .community-expert-arrow { display: inline-flex; width: 42px; min-width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; }
  .community-expert-status { display: block; }

  .community-space { padding: 82px 0; }
  .community-space-heading h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .community-concepts { grid-template-columns: 1fr; margin-top: 48px; border-top: 0; }
  .community-concept { min-height: 0; padding: 26px 0 30px 28px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .community-concept:last-child { border-bottom: 0; }
  .community-concept::before { content: ""; position: absolute; left: 4px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.12); }
  .community-concept::after { left: 0; top: 30px; width: 10px; }
  .community-concept strong { margin-top: 18px; font-size: 1.65rem; }
  .community-concept p { max-width: 300px; }
  .community-concept:nth-child(2), .community-concept:nth-child(3), .community-concept:nth-child(4) { border-top: 0; }

  .community-final-cta { padding: 92px 0 100px; }
  .community-final-inner h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .community-final-inner .button { width: 100%; }
  .orbit-one { width: 300px; height: 300px; left: -230px; }
  .orbit-two { width: 250px; height: 250px; right: -170px; top: 10%; }
}

@keyframes communityCardIn { from { opacity: .2; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .community-about-image, .community-concept, .community-expert-card, .community-hero-inner .community-reveal { transition: none; animation: none; }
  .community-concept::after { animation: none; }
}

/* =========================
   FINAL BUG FIX — REVIEWS + TRAINERS
   Keep these overrides scoped to the existing Phase 5 components.
   ========================= */
.review-track {
  align-items: flex-start;
}
.review-card {
  flex: 0 0 clamp(360px, 32vw, 420px);
  box-sizing: border-box;
}
.review-image {
  min-height: 0;
  height: auto;
  display: block;
}
.review-image.has-image {
  min-height: 0;
}
.review-image img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  opacity: 1;
}
.review-image:not(.has-image) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.trainer-card {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.trainer-image {
  flex: 0 0 auto;
}
.trainer-content {
  position: relative;
  z-index: 4;
  display: block;
  visibility: visible;
  opacity: 1;
  flex: 0 0 auto;
  background: var(--color-white);
}
.trainer-content h3,
.trainer-content .trainer-role,
.trainer-content .trainer-experience {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 860px) {
  .review-card {
    flex-basis: min(90vw, 360px);
  }
  .review-image {
    min-height: 0;
  }
}


/* FINAL UPDATE — real YouTube embeds */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .video-content { min-height: 120px; }

/* FINAL FIX — keep trainer details visible on desktop */
@media (min-width: 861px) {
  .trainer-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }
  .trainer-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 5 !important;
  }
  .trainer-content h3,
  .trainer-content .trainer-role,
  .trainer-content .trainer-experience {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.online-training-image.has-image {
  position: relative;
  overflow: hidden;
  background: var(--color-off-white);
}
.online-training-image.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

/* Targeted image visibility + Community CTA contrast fix */
.trainer-image img,
.community-visual img {
  opacity: 1;
}

.community-final-inner h2 {
  color: var(--color-white);
}


/* =========================
   ADDITIVE IMAGE UPDATE — ABOUT + CALCULATOR
   Existing styles/code are preserved above.
   ========================= */
.livefit-fade-stage {
  position: relative;
  overflow: hidden;
}
.livefit-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 1800ms ease, visibility 0s linear 900ms;
  pointer-events: none;
}
.livefit-fade-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 900ms ease, transform 1800ms ease, visibility 0s linear 0s;
}
.livefit-fade-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full image: no zoom/cropping */
  object-position: center;
  background: #f5f4f1;
}
.livefit-fade-slide:nth-child(2) img { object-position: 42% center; }
.livefit-fade-slide:nth-child(3) img { object-position: 58% center; }
.livefit-fade-slide:nth-child(4) img { object-position: center 45%; }

/* The original calculator SVG remains in the file; this additive rule makes
   the new DSC05327.JPG gallery occupy the visual area instead. */
.calculator-preview .health-visual {
  position: relative;
  min-height: clamp(320px, 38vw, 520px);
}
.calculator-preview .health-visual > svg {
  display: none;
}
.calculator-image-gallery {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 590px;
  margin-left: auto;
  overflow: hidden;
  border-radius: var(--radius-lg) 12px var(--radius-lg) 12px;
  background: var(--color-charcoal);
}
.calculator-image-stage {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

@media (max-width: 860px) {
  .calculator-preview .health-visual {
    min-height: 62vw;
  }
  .calculator-image-gallery {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .livefit-fade-slide,
  .livefit-fade-slide.is-active {
    transition: none;
    transform: none;
  }
}


/* Hero slideshow fix */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-hero-media {
  background: url('../Untitled design (1).png ') center/cover no-repeat;
}

.navbar .brand-live {
  color: #0c0d0e !important; /* LIVE: black */
}

.navbar .brand-fit {
  color: #d51f2b !important; /* FIT: red */
}



/* About Us image: show full image on desktop */
@media (min-width: 861px) {
  .about-visual .about-slide img,
  .about-image-stage .about-slide img {
    object-fit: contain !important;
    object-position: center center !important;
    background: #f5f4f1;
  }
}