:root {
  --hero-green-start: #f5f1ff;
  --hero-green-end: #fde7ff;
  --dark: #1e1e1e;
  --nav-bg: #3d3c3c;
  --text-muted: rgba(0, 0, 0, 0.7);
  --card-bg: #ffffff;
  --press-border: rgba(0, 0, 0, 0.08);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  --page-padding: clamp(1.5rem, 5vw, 5rem);
  --pale-yellow: #f4f6d7;
  --soft-peach: #f2c99a;
  --footer-bg: #2f2f2f;
}

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

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: #f4f4f4;
  color: var(--dark);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

/* Accessible focus treatment */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0a64c7;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(10, 100, 199, 0.25);
}

/* Hide default focus outlines when using mouse */
:focus {
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.section {
  padding: 3.5rem 0;
}

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

.hero {
  background: linear-gradient(120deg, var(--hero-green-start), var(--hero-green-end));
  padding: 2.5rem 0 4rem;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.nav {
  padding: 0.85rem env(safe-area-inset-right, 0) 0.85rem env(safe-area-inset-left, 0);
  background: var(--nav-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1200; /* keep nav always above overlays */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  width: 100%;
  padding: 0 var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-dropdown {
  position: relative;
}

.nav-cta--dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 170px;
}

.nav-dropdown__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-width: 190px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-dropdown__menu li {
  margin: 0;
}

.nav-dropdown__menu button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
}

.nav-dropdown__menu button:hover,
.nav-dropdown__menu button:focus {
  background: rgba(0, 0, 0, 0.05);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(225deg);
}

.nav-cta {
  background: #f5f5f5;
  color: var(--dark);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
  min-height: 44px;
}

.nav-cta--compact {
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
}

.nav-cta--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.nav-cta--outline:hover,
.nav-cta--outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.primary-cta:focus-visible,
.primary-cta:hover {
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--dark);
}

.nav-icon img {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-icon--whatsapp {
  border: none;
  background: transparent;
  padding: 0;
}

.nav-icon--whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(19, 160, 75, 0.45);
}

.nav-cta--franchise {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  letter-spacing: 0.08em;
  position: relative;
}

.nav-cta--franchise:hover,
.nav-cta--franchise:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta__tooltip {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.7rem;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.nav-cta--franchise:hover .nav-cta__tooltip,
.nav-cta--franchise:focus-visible .nav-cta__tooltip {
  opacity: 1;
}

/* ========= HEADER LAYOUT ========= */

.nav {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
}

.nav__inner {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 46px;      /* increase/decrease to resize logo */
  width: auto;
}

/* --- Brand tabs: inline text with separators --- */
.brand-tabs {
  margin-left: 0.5rem;
  display: flex;
  margin-right: auto;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.brand-tabs__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  padding: 0 0.5rem;
}

.brand-tabs__link:hover {
  color: #8b5cf6;               /* soft violet on hover */
  text-decoration: underline;
}

.brand-tabs__divider {
  width: 1px;
  height: 18px;
  background: #e5e7eb;
  display: inline-block;
}

/* --- Search bar between tabs and hamburger --- */
.nav-search {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  margin-right: 1rem;
  flex: 0 0 auto;
}

.nav-search input {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.75rem 0.45rem 2.1rem;
  font-size: 0.88rem;
  min-width: 220px;
  max-width: 320px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  background-image: url('data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" fill=\"none\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"%3E%3Ccircle cx=\"7\" cy=\"7\" r=\"5\"/%3E%3Cpath d=\"M11 11l3.5 3.5\"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: 0.75rem center;
}

.nav-search input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Hamburger stays at extreme right */
.nav-right {
  display: flex;
  align-items: center;
}

/* Mobile: keep only logo + hamburger */
@media (max-width: 768px) {
  .brand-tabs,
  .nav-search {
    display: none;
  }

  .nav__inner {
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 40px;
  }
}

.franchise-marquee {
  display: block;
  background: linear-gradient(90deg, #d7c6ff, #5b2a94);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  padding: 0.45rem 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.franchise-marquee__inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee-slide 40s linear infinite;
}

.mobile-tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: space-between;
  align-items: stretch;
  padding: 0.5rem;
  padding-left: calc(0.75rem + env(safe-area-inset-left));
  padding-right: calc(0.75rem + env(safe-area-inset-right));
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  z-index: 200;
}


.mobile-tab-bar a,
.mobile-tab-bar button {
  background: none;
  border: none;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a64c7;
  padding: 0.65rem 0.5rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 1;
  min-width: auto;
  position: relative;
}
/* Thin vertical separators that span full tab height */
.mobile-tab-bar a + a::before,
.mobile-tab-bar a + button::before,
.mobile-tab-bar button + a::before,
.mobile-tab-bar button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(148, 163, 184, 0.9); /* subtle professional grey */
}

.mobile-tab-bar button {
  cursor: pointer;
}

.mobile-tab-bar a {
  font-weight: 600;
}

.mobile-tab-bar a:focus,
.mobile-tab-bar button:focus {
  outline: 2px solid #0a64c7;
  outline-offset: 2px;
}

.whatsapp-fab {
  position: fixed;
  right: clamp(0.85rem, 3vw, 1.5rem);
  bottom: clamp(4rem, 8.5vw, 5.2rem); /* clear desktop nav/footer */
  width: 56px;
  height: 56px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important; /* no extra green behind the PNG */
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-fab__icon {
  width: 44px;   /* 🔺 make icon bigger */
  height: 44px;
  display: block;
}

.whatsapp-fab span {
  display: none !important; /* icon only */
}



@media (max-width: 768px) {
  body.has-mobile-tab {
    padding-bottom: 78px;
  }

  .mobile-tab-bar {
    display: flex;
    z-index: 1300; /* keep above overlay */
    pointer-events: auto;
  }

  body.menu-open .mobile-tab-bar {
    opacity: 1;
    pointer-events: auto; /* keep clickable even when menu open */
  }

  .whatsapp-fab {
    right: clamp(0.75rem, 4vw, 1.25rem);
    bottom: calc(120px + env(safe-area-inset-bottom, 0) + 1rem); /* clear bottom nav + safe area */
    width: 54px;
    height: 54px;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;          /* WhatsApp green circle */
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }

  .whatsapp-fab img {
    width: 22px;
    height: 22px;
  }
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.nav-icon--menu {
  flex-direction: column;
  gap: 4px;
  font-weight: 400;
  letter-spacing: 0;
}

.nav-icon--menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.menu-overlay {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(150deg, #d6dce6 0%, #f5f7fb 65%);
  padding: clamp(1rem, 4vw, 2.25rem);
  padding-top: calc(0.75rem + env(safe-area-inset-top, 0));
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0)); /* leave room near bottom */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - var(--nav-height));
  transform: translateY(-100%);
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1200; /* below nav, above bottom bar */
}

.menu-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  background: transparent;
  border: none;
  font-size: 2.25rem;
  cursor: pointer;
  color: var(--dark);
}

.menu-overlay__panel {
  width: min(960px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  color: #1f2433;
  padding-bottom: 8rem;
}

.menu-overlay__brand {
  margin-bottom: 0.25rem;
}

.menu-overlay__logo {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-overlay__group--divisions {
  padding-top: 0.5rem;
}

.menu-overlay__list--brand-tabs {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.menu-overlay__group {
  padding: 0;
}

.menu-overlay__heading {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-overlay__copy {
  margin: 0 0 1rem;
  max-width: 520px;
  color: #4c5261;
}

.menu-overlay__list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.menu-overlay__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-overlay__list + .menu-overlay__list {
  margin-top: 0;
}

.menu-overlay__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.menu-overlay__group--divisions .menu-overlay__list:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.menu-overlay__list--single {
  max-width: 320px;
}

.menu-overlay__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.65rem 0;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu-overlay__link:hover,
.menu-overlay__link:focus {
  color: #111;
}

.menu-overlay__link--button {
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.menu-overlay__chevron {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 1rem;
}

.menu-overlay__grid {
  width: 100%;
}

.menu-overlay__grid--secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.menu-overlay__social {
  display: flex;
  gap: 0.75rem;
}

.menu-overlay__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.menu-overlay__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.menu-overlay__app-badge {
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .menu-overlay__group--contact {
    display: none;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  margin-top: 3.5rem;
  position: relative;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin: 1rem 0;
}

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
}

.supporting {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.primary-cta {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1.1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.disclaimer {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.hero-visual {
  justify-self: end;
  position: relative;
  width: min(100%, 520px);
  z-index: 1;
  min-height: 520px;
}

.hero-slider {
  position: relative;
  max-width: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  z-index: 1;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

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

.hero .container {
  width: 100%;
}

.squiggle {
  position: absolute;
  width: 90px;
  height: 30px;
  border: 5px solid #fff;
  border-radius: 50px;
  border-color: #fff transparent transparent transparent;
  transform: rotate(12deg);
}

.squiggle-left {
  top: 20%;
  left: 15%;
}

.squiggle-right {
  top: 10%;
  right: 12%;
  transform: rotate(-15deg);
}

.review-card {
  background: #fff;
  padding: 0.6rem 0.8rem 0.7rem;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  width: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  height: auto;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card p {
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: #0f172a;
}

.hero-review {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  width: 200px;
  max-width: 78vw;
  height: auto;
  z-index: 5;
}

.review-slider {
  position: absolute;
  inset: auto 0 1.2rem 0;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  width: auto;
  max-width: 78vw;
  height: auto;
  pointer-events: none;
  z-index: 5;
  align-content: center;
  align-items: stretch;
}

.review-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* === FINAL LOCK: keep Google review badge fixed === */
.hero-review,
.review-slider {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  bottom: 1.2rem !important;
  width: 200px !important;
  max-width: 78vw !important;
  height: auto !important;
  z-index: 5 !important;
  margin: 0 auto !important;
  pointer-events: none !important;
}

.review-slider {
  inset: auto 0 1.2rem 0 !important;
  display: grid !important;
  justify-items: center !important;
  align-content: center !important;
  align-items: stretch !important;
}

.review-slide,
.review-slide.is-active {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
  margin: 0 !important;
}

.review-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.review-card p {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .hero-review,
  .review-slider {
    bottom: 1.25rem !important;
    width: min(165px, 76vw) !important;
    height: 125px !important;
  }
}

.review-card img {
  width: 78px;
  height: auto;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.6rem;
  padding: 0.05rem 0.3rem 0.25rem;
}

.review-header__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.05;
  gap: 0.18rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0.38rem 0.65rem 0.35rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  min-width: 86px;
}

.review-header__rating strong {
  font-size: 1.08rem;
  line-height: 1;
}

.review-header__rating .stars {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: #f5a623;
}

.stars {
  color: #f5a623;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.press {
  background: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--press-border);
}

.press-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.press-logos__track {
  display: flex;
  gap: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  align-items: center;
  width: max-content;
  min-width: 200%;
  animation: pressMarquee 18s linear infinite reverse;
  will-change: transform;
}

.press-logos .logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
}

@media (max-width: 600px) {
  .press-logos .logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
}

/* Micro mobile tuning (iPhone widths) */
@media (max-width: 430px) {
  .container {
    padding: 0 clamp(0.9rem, 4vw, 1.2rem);
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .primary-cta {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .hero-review {
    bottom: clamp(0.7rem, 6vw, 1.4rem);
    width: min(180px, 74vw);
  }
}

@media (max-width: 375px) {
  .hero-text h1 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .hero-review {
    width: min(175px, 78vw);
  }

  .mobile-tab-bar a,
  .mobile-tab-bar button {
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 clamp(0.8rem, 4vw, 1rem);
  }

  .hero-text h1 {
    font-size: clamp(1.6rem, 9vw, 1.95rem);
  }

  .primary-cta {
    font-size: 0.92rem;
    padding: 0.95rem 1.3rem;
  }

  .hero-review {
    width: min(170px, 80vw);
    bottom: clamp(0.6rem, 5vw, 1.1rem);
  }

  .nav-cta {
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
  }
}

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

.stories-slider {
  background: #fff;
}

.slider-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.stories-track {
  flex: 1;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(1rem, 4vw, 1.5rem) 0.75rem;
  width: 100%;
  max-width: 100vw;
}

.stories-track::-webkit-scrollbar {
  height: 6px;
}

.stories-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.story-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  min-width: clamp(260px, 88vw, 420px);
  scroll-snap-align: start;
}

@media (max-width: 600px) {
  .stories-track {
    padding-bottom: 1rem;
    gap: 0.75rem;
  }

  .story-card {
    min-width: clamp(240px, 88vw, 420px);
    padding: 1rem;
  }
}

.stories-slider .container {
  width: 100%;
}

@media (min-width: 1024px) {
  .stories-slider .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .stories-slider .slider-shell {
    padding-left: clamp(2rem, 6vw, 6rem);
    padding-right: clamp(2rem, 6vw, 6rem);
  }
}

.story-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.video-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.video-card video {
  margin-top: 0.75rem;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.health-section {
  padding: 4rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5ecff 100%);
}

.health-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.heading-underline {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #5b2a94, #8b5cf6);
  border-radius: 999px;
  margin: 0 auto 2.5rem;
}

.treatments.section,
.before-after.section,
.branches,
.doctors,
.infinium-verticals,
.contact-infinium {
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
}

.health-diagram {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  grid-template-areas:
    'nutrition center environment'
    'metabolism center stress'
    '. hormones .';
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  position: relative;
}

.diagram-item {
  text-align: center;
  padding: 0 1.5rem;
}

.diagram-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.diagram-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.diagram-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.item-nutrition {
  grid-area: nutrition;
  align-self: start;
}

.item-environment {
  grid-area: environment;
  align-self: start;
}

.item-metabolism {
  grid-area: metabolism;
  justify-self: end;
}

.item-stress {
  grid-area: stress;
  justify-self: start;
}

.item-hormones {
  grid-area: hormones;
  margin-top: 0.5rem;
}

.diagram-center {
  grid-area: center;
  position: relative;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.center-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: inset 0 0 0 10px rgba(0, 0, 0, 0.02);
}

.center-circle svg {
  width: 70%;
  height: 70%;
}

.diagram-line {
  position: absolute;
  width: 180px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 50%;
  transform-origin: left center;
}

.line-nutrition {
  transform: rotate(205deg);
}

.line-environment {
  transform: rotate(-25deg);
}

.line-metabolism {
  transform: rotate(155deg);
  width: 150px;
}

.line-stress {
  transform: rotate(-45deg);
  width: 150px;
}

.line-hormones {
  transform: rotate(90deg);
  width: 120px;
}

.health-cta {
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
}

.threefold {
  background: linear-gradient(180deg, #fbf8ff 0%, #fff5fb 100%);
  padding: 3.5rem 0;
}

.threefold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.threefold-media img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 320px;
}

.threefold-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0;
}

.threefold-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.journey {
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
  padding: 3.5rem 0;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.journey-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.journey-card h3 a {
  color: inherit;
  text-decoration: none;
}

.journey-card h3 a:hover,
.journey-card h3 a:focus {
  text-decoration: underline;
}

.journey-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.journey-card footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.community {
  background: linear-gradient(180deg, #fbf8ff 0%, #fff5fb 100%);
}

.community-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 225, 255, 0.95));
  border: 1px solid rgba(91, 42, 148, 0.15);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(148, 148, 148, 0.2);
  max-width: 880px;
  margin: 0 auto;
}

.community-panel h2 {
  margin-bottom: 0.5rem;
}

.community-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0.5rem 0 2rem;
}

.essentials {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
}

.essentials-slider {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.essentials-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.price {
  display: block;
  margin: 1rem 0;
  font-size: 1.3rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .essentials-slider {
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }

  .essentials-slider > .slider-arrow {
    display: none;
  }

  .essentials-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.5rem 0.75rem;
    margin: 0 -0.5rem;
  }

  .essentials-track::-webkit-scrollbar {
    height: 6px;
  }

  .essentials-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
  }

  .product-card {
    min-width: clamp(220px, 80vw, 320px);
    scroll-snap-align: start;
  }
}

.ghost-link {
  background: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
}

.ghost-btn {
  margin: 2rem auto 0;
  display: block;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
}

.slider-arrow--light {
  background: #fdfdfd;
}

.regimen {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fff9ff 0%, #f4ecff 100%);
}

.regimen-content {
  background: rgba(91, 42, 148, 0.05);
  border-radius: 32px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
}

.regimen-media img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.reviews {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
  text-align: center;
}

.reviews-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reviews-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.review-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.review-card .stars {
  color: #f5a623;
  margin-bottom: 0.75rem;
}

.review-card a {
  font-weight: 600;
  color: var(--dark);
}

.review-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 2rem 0;
}

.disclaimer-heading {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.disclaimer-copy {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.scroll-indicator {
  border: none;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.combos-body {
  background: #f7f7f7;
}

.combos-hero {
  background: linear-gradient(135deg, #fde1c7, #fff7ee);
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.combos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.combos-tag {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.combos-tag.is-active {
  background: var(--dark);
  color: #fff;
}

.combos-hero__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.combos-hero__text h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0.5rem 0;
}

.combos-hero__sub {
  font-size: 1.1rem;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.combos-hero__visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.combos-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin: 0;
}

.combos-toggle {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.combo-toggle {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.combo-toggle.is-active {
  background: var(--dark);
  color: #fff;
}

.combos-plans {
  background: #fff;
}

.combos-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.combo-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.combo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.combo-card__tag {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.combo-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text-muted);
}

.combo-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.combo-card__price {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.combos-plans .primary-cta {
  padding: 0.85rem 1.7rem;
  font-size: 0.95rem;
}

.referral-body {
  background: #f9fbff;
}

.referral-hero__shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.referral-hero h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.referral-hero__cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.referral-pill {
  background: #d1e9ff;
  border-radius: 16px;
  padding: 1rem 2rem;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.referral-pill span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.referral-pill strong {
  display: block;
  font-size: 1.6rem;
}

.referral-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.referral-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.referral-card label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.referral-card input {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

.referral-card small {
  text-align: center;
  color: var(--text-muted);
}

.referral-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.referral-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.referral-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  cursor: pointer;
}

.referral-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.referral-steps__grid article {
  background: #eef6ff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.referral-journey__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.referral-journey__grid article {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  background: #fff;
}

.referral-terms__card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.referral-terms__card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.referral-faq__list details {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.referral-faq__list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.referral-faq__list summary::after {
  content: '+';
  position: absolute;
  right: 0;
}

.referral-faq__list details[open] summary::after {
  content: '–';
}

.referral-faq__list p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.franchise-body {
  background: #f1f4f8;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  margin: 0;
}

.franchise-main {
  width: min(1200px, 100%);
  margin: 3rem auto 4rem;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.franchise-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.franchise-pill {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 100, 199, 0.12);
  color: #0a64c7;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.franchise-hero h1 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.franchise-hero__stats {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.franchise-hero__stats li {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.franchise-hero__stats strong {
  font-size: 1.5rem;
  color: var(--dark);
}

.franchise-hero__card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.franchise-hero__card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.franchise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 2rem;
}

.franchise-form-card,
.franchise-info-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}

.franchise-form-card h2 {
  margin: 0;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.franchise-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.franchise-form input,
.franchise-form textarea,
.franchise-form select {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.franchise-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.franchise-checkbox input {
  width: auto;
  margin: 0;
}

.franchise-success {
  margin-top: 1.25rem;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  background: #e7f7ef;
  border: 1px solid rgba(34, 91, 50, 0.15);
  color: #1e512f;
  display: none;
}

.franchise-success.is-visible {
  display: block;
}

.franchise-info-card ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.franchise-contact {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.franchise-contact a {
  font-weight: 600;
  color: #0a64c7;
  text-decoration: none;
}

@media (max-width: 960px) {
  .franchise-grid {
    grid-template-columns: 1fr;
  }

  .franchise-hero__stats {
    flex-wrap: wrap;
  }
}

.login-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 900;
  overflow-y: auto;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal__overlay {
  position: absolute;
  inset: 0;
}

.login-modal__content {
  position: relative;
  width: min(360px, 90vw);
  background: #fff;
  border-radius: 22px;
  padding: 2rem 2.25rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}

@media (max-width: 480px) {
  .login-modal__content {
    width: min(340px, 92vw);
    padding: 1.5rem 1.5rem 1.75rem;
    gap: 0.75rem;
    max-height: calc(100vh - 2rem);
  }

  .login-modal__cta {
    width: 100%;
  }
}

.login-step {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
}

.login-step.is-active {
  display: flex;
}

.login-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

.login-modal__content h2 {
  margin: 0;
  font-size: 1.4rem;
}

.login-modal__divider {
  width: 32px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.login-modal__label {
  margin: 0;
  font-weight: 600;
}

.login-modal__input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.25rem 0.75rem;
}

.login-modal__input span {
  font-weight: 600;
}

.login-modal__input input {
  flex: 1;
  border: none;
  font-size: 1rem;
  padding: 0.7rem 0;
  outline: none;
}

.login-modal__input input.is-error {
  box-shadow: inset 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.login-modal__help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.login-modal__cta {
  background: #c2ea3b;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(155, 190, 43, 0.3);
}

.login-modal__cta--ghost {
  margin-top: 0.5rem;
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  color: var(--dark);
  box-shadow: none;
}

.login-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0.75rem;
  background: #f4ffe0;
  text-align: left;
}

.login-success__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9edb22;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.login-success h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.login-success p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.login-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.login-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  padding: 0.65rem;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.login-social.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.login-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.otp-inputs {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
}

.otp-inputs input {
  width: 42px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 1.2rem;
}

.login-modal__resend {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: center;
  flex-wrap: wrap;
}

.login-modal__resend button {
  background: none;
  border: none;
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.login-modal__resend button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: none;
}

.login-modal__error {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.85rem;
  color: #c62828;
  visibility: hidden;
}

.login-role {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.login-role__btn {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 0.45rem 0;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.login-role__btn.is-active {
  background: var(--dark);
  color: #fff;
}

.products-panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.products-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.products-panel__media {
  flex: 0 0 320px;
  border-radius: 24px;
  overflow: hidden;
}

.products-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-panel__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.products-panel__back {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
}

.products-panel__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.products-panel__columns h4 {
  margin: 0 0 0.5rem;
}

.products-panel__columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.products-panel__columns a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.1rem;
}

.products-panel__columns a:hover {
  border-color: var(--dark);
}

.portal-body {
  margin: 0;
  background: #f5f7fb;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
}

.portal-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem var(--page-padding);
}

.portal-header--admin {
  background: #111;
  color: #fff;
}

.portal-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.portal-header__actions .primary-cta {
  padding: 0.65rem 1.5rem;
}

.portal-main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.portal-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.profile-card {
  text-align: center;
}

.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-muted);
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.data-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.timeline span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.portal-body--user {
  background: linear-gradient(135deg, #f9ffe2, #e4f9ff);
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 4rem;
}

.portal-hero {
  width: min(1200px, 100%);
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.portal-hero__content {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.portal-hero__profile {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-hero__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: #6f6f6f;
}

.portal-hero__headline {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.portal-hero__stage {
  margin: 0;
  font-size: 1rem;
  color: #4b4b4b;
}

.portal-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.portal-hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #eef6ff;
  color: #23528a;
  font-weight: 600;
  font-size: 0.85rem;
}

.portal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.portal-pill {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  background: #f1f1f1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-pill--accent {
  background: #101828;
  color: #fff;
  box-shadow: 0 15px 30px rgba(16, 24, 40, 0.25);
}

.portal-pill--ghost {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, 0.2);
}

.portal-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.portal-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.portal-hero__illustration {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.portal-hero__illustration img {
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.portal-hero__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.portal-hero__summary article {
  background: #101828;
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.portal-hero__summary p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.portal-hero__summary strong {
  font-size: 1.6rem;
}

.portal-main--user {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.portal-section {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.portal-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.portal-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: #8a8a8a;
}

.portal-section__head h3 {
  margin: 0.25rem 0 0;
  font-size: 1.4rem;
}

.portal-launcher {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.portal-launcher button {
  border: none;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background: #f1f5ff;
  text-align: left;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  min-height: 68px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-launcher button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(47, 97, 211, 0.15);
}

.portal-root {
  gap: 2rem;
  text-align: left;
}

.portal-root h3 {
  margin: 0;
}

.root-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.root-grid article {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1rem;
  background: #f9fbff;
  font-weight: 600;
}

.root-summary {
  text-align: left;
}

.root-summary h3 {
  margin: 0 0 0.35rem;
}

.root-summary p {
  margin: 0;
}

.root-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.root-timeline article {
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 16px;
  padding: 1rem;
  background: #fffdf0;
}

.portal-section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.portal-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.portal-card--list {
  gap: 1rem;
}

.portal-section__head--compact {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portal-medications {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-medications__item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1rem;
  background: #f4fbff;
}

.portal-label {
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #6a758b;
}

.portal-touchpoints {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portal-touchpoints li {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 1rem;
  background: #fff5f0;
}

.portal-touchpoints p {
  margin: 0;
  font-weight: 600;
}

.portal-touchpoints strong {
  font-size: 1rem;
}

.portal-empty {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .portal-body--user {
    padding: 1.5rem 1rem 3rem;
  }

  .portal-hero__content {
    flex-direction: column;
  }

  .portal-hero__illustration {
    justify-content: center;
  }

  .portal-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-launcher {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.plan-body {
  margin: 0;
  background: #f5f7fb;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
}

.plan-header {
  background: #3f3d3d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-alert {
  width: min(1200px, 100%);
  margin: 1rem auto 0;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f8f8;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.plan-alert.is-visible {
  display: flex;
}

.plan-alert--success {
  background: #e7f7ef;
  border-color: rgba(34, 91, 50, 0.15);
  color: #1e512f;
}

.plan-alert--warning {
  background: #fff7e5;
  border-color: rgba(204, 140, 0, 0.25);
  color: #7a4b00;
}

.plan-alert strong {
  font-size: 1rem;
}

.plan-alert span {
  font-size: 0.95rem;
}

.plan-layout {
  display: grid;
  grid-template-columns: 3fr 1.3fr;
  gap: 1.5rem;
  width: min(1400px, 100%);
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.assessment-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assessment-card__head img {
  width: 70px;
  border-radius: 50%;
}

.progress {
  margin: 1.25rem 0;
}

.progress__bar {
  background: #f2f2f2;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.progress__bar span {
  display: block;
  height: 100%;
  background: #48d18a;
}

.plan-root-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.plan-root-icons article {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem;
  border-radius: 12px;
  background: #fafafa;
}

.match-gallery {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.match-gallery img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.plan-right .plan-card + .plan-card {
  margin-top: 1rem;
}

.kit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.kit-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.addons-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.addons-card li {
  display: flex;
  justify-content: space-between;
}

.total-card {
  text-align: center;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 1100px) {
  .plan-layout {
    grid-template-columns: 1fr;
  }
}

.coach-page {
  min-height: 100vh;
  background: #fefefe;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}

.coach-header {
  width: min(900px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem 0;
}

.coach-tagline {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #6b6b6b;
}

.coach-card {
  background: #f1fbfb;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.coach-card img {
  width: 160px;
  border-radius: 18px;
  object-fit: cover;
}

.coach-actions {
  display: flex;
  gap: 1rem;
}

.coach-actions .ghost-btn,
.coach-actions .primary-cta,
.coach-actions a {
  flex: 1;
  text-align: center;
}

.coach-body {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.coach-status {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  width: min(420px, 100%);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.coach-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.reschedule-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 120;
}

.reschedule-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.reschedule-modal__dialog {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.reschedule-modal__dialog header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reschedule-modal__dialog header button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.tag-btn.is-active {
  background: #d8f5a0;
  border-color: #b1e15f;
}

.tag-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.time-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #9aa0a3;
}

.time-tabs span.is-active {
  color: var(--dark);
  border-bottom: 2px solid var(--dark);
  padding-bottom: 0.15rem;
}

.reschedule-save {
  border: none;
  border-radius: 12px;
  padding: 0.85rem;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.admin-stats article {
  background: #fff;
  padding: 1.25rem;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.admin-stats strong {
  display: block;
  font-size: 2rem;
}

.admin-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.65rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-table__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-activity {
  margin-bottom: 3rem;
}

.money-back {
  background: #f3f4f7;
  padding: 4rem 0 5rem;
}

.money-back__shell {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: clamp(2.75rem, 5vw, 4rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.money-back__exit {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.money-back__exit:hover,
.money-back__exit:focus {
  background: var(--dark);
  color: #fff;
}

.money-back__title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.money-back__updated {
  margin: 0;
  color: var(--text-muted);
}

.money-back__lead,
.money-back__footnote-text {
  margin: 0;
  line-height: 1.6;
}

.money-back__footnote-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.money-back__link {
  font-weight: 600;
  color: #0b9b4d;
  text-decoration: none;
}

.money-back__link:hover,
.money-back__link:focus {
  text-decoration: underline;
}

.money-back__section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.money-back__section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.money-back__list {
  margin: 0;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.6;
}

.money-back__list--bullets {
  list-style: disc;
}

.money-back__note-card {
  background: #fffdf4;
  border-radius: 14px;
  border-left: 4px solid #f5b32c;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}

.money-back__note-card strong {
  display: block;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.money-back__note-link {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
}

.money-back__list strong {
  font-weight: 700;
}

.money-back__small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.money-back__footnote {
  background: #f7f8fb;
  border-radius: 18px;
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.eligibility-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.eligibility-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.eligibility-modal__overlay {
  position: absolute;
  inset: 0;
}

.eligibility-modal__content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  width: 100%;
  max-height: 95vh;
  overflow: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.eligibility-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.eligibility-modal__title {
  margin-top: 0;
}

.eligibility-section {
  margin-top: 2rem;
}

.eligibility-section h3 {
  margin-bottom: 0.75rem;
}

.eligibility-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.eligibility-table th,
.eligibility-table td {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.eligibility-table th {
  background: #f3f4f7;
  font-weight: 600;
}

.eligibility-modal__close:focus,
.money-back__link:focus {
  outline: 2px solid var(--dark);
  outline-offset: 2px;
}
.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 3rem 0 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-columns h4 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.footer-app .app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.footer-legal {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}


@media (max-width: 900px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero-visual {
    justify-self: center;
  }

  .review-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    justify-self: center;
  }

  .slider-shell {
    flex-direction: column;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .health-diagram {
    grid-template-columns: 1fr;
    grid-template-areas:
      'center'
      'nutrition'
      'environment'
      'metabolism'
      'stress'
      'hormones';
    gap: 2rem;
  }

  .diagram-item {
    justify-self: center;
  }

  .diagram-line {
    display: none;
  }

  .essentials-slider,
  .reviews-slider {
    flex-direction: column;
  }

  .essentials-track,
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .regimen-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .hero .container {
    padding: 0;
  }

  .hero-content {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .nav__inner {
    flex-direction: row;
    gap: 0.65rem;
    align-items: center;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .nav-right {
    width: auto;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero {
    min-height: auto;
    padding: clamp(2rem, 7vw, 3rem) clamp(1rem, 5vw, 2rem) clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-content {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }

  .hero-text .primary-cta {
    width: 100%;
  }

  .hero-visual {
    order: -1;
    justify-self: center;
    width: min(420px, 92vw);
    position: relative;
    min-height: auto;
  }

  .hero-slider {
    min-height: auto;
    aspect-ratio: 3 / 4;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-review {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 1.4rem;
    width: min(230px, 80vw);
    z-index: 3;
  }

  .press-logos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .journey-card footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .community-panel {
    padding: 2.5rem 1.5rem;
  }

  .regimen-content {
    padding: 1.75rem;
  }

  .footer-columns {
    text-align: center;
  }

  .footer-columns ul {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-review {
    width: min(150px, 65vw);
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .primary-cta,
  .nav-cta {
    width: 100%;
  }

  .slider-arrow {
    display: none;
  }

  .center-circle {
    width: 180px;
    height: 180px;
  }

  .community-panel {
    margin: 0 1rem;
    border-radius: 20px;
  }

  .threefold,
  .journey,
  .essentials,
  .regimen,
  .reviews {
    padding: 3rem 0;
  }
}

@media (max-width: 1024px) {
  .menu-overlay {
    padding: clamp(1rem, 5vw, 2.5rem);
  }

  .menu-overlay__panel {
    gap: 1.5rem;
  }

  .menu-overlay__list-grid,
  .menu-overlay__grid--secondary {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .menu-overlay {
    padding: 1.25rem;
  }

  .menu-overlay__panel {
    gap: 1.25rem;
    width: min(560px, 100%);
  }

  .menu-overlay__list-grid,
  .menu-overlay__grid--secondary {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
  }

  .menu-overlay__link {
    font-size: 1rem;
  }

  .menu-overlay__apps {
    gap: 0.5rem;
  }

  .menu-overlay__apps .menu-overlay__app-badge {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }

  .nav__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .logo {
    width: 100%;
    text-align: left;
  }

  .nav-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
    align-items: center;
  }

  .nav-dropdown {
    width: auto;
    flex: 0 0 auto;
  }

  .nav__inner .nav-cta,
  .nav-cta--dropdown {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  .nav-right > .nav-icon {
    flex: 0 0 auto;
  }
}

@media (max-width: 420px) {
  .menu-overlay__list-grid,
  .menu-overlay__grid--secondary {
    grid-template-columns: 1fr;
  }
}

/* Hair Test Layout */
.test-body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  background: #f7f8fa;
  color: #1d1d1f;
  min-height: 100vh;
}

.test-nav {
  background: #3e3d3f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 4rem);
}

.test-brand p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.test-logo {
  font-weight: 700;
  font-size: 1.4rem;
}

.test-exit {
  color: #fff;
  text-decoration: underline;
  font-size: 0.95rem;
}

.test-shell {
  max-width: 900px;
  margin: 2rem auto 3rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.test-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.test-step {
  background: #dfe2eb;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: 600;
  color: #4c4f5a;
}

.test-step.is-active {
  background: #a8d45b;
  color: #1a2b01;
}

.test-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.test-progress__bar {
  flex: 1;
  height: 6px;
  background: #e1e4ec;
  border-radius: 999px;
  overflow: hidden;
}

.test-progress__fill {
  display: block;
  height: 100%;
  background: #a8d45b;
}

.test-progress__value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #71727e;
}

.test-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 25px 60px rgba(16, 30, 115, 0.08);
  text-align: center;
}

.test-eyebrow {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.test-field {
  display: block;
  max-width: 500px;
  margin: 0 auto 2rem;
  text-align: left;
}

.test-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  outline: none;
}

.test-field__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #a8d45b;
}

.test-card[data-step-panel] {
  display: none;
}

.test-card.is-active-panel {
  display: block;
}

.test-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.test-prev {
  background: none;
  border: none;
  color: #4a4e59;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
}

.test-prev:disabled {
  opacity: 0;
  pointer-events: none;
}

.test-button {
  background: #615f63;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.test-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.test-button--submit {
  width: 100%;
  max-width: 300px;
}

.test-card--fullheight {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-loading {
  text-align: center;
}

.test-loading__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.test-loading h2 {
  margin-bottom: 1rem;
}

.test-loading ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.test-loading li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 600;
  color: #6a6d74;
}

.test-loading li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #a8d45b;
}

.test-loading li.is-complete {
  color: #2f6a12;
}

.test-loading li.is-complete::before {
  background: #a8d45b;
}

.test-loading li.is-active {
  color: #2f2f2f;
}

.test-loading li.is-active::before {
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-50%) scale(1.15);
    opacity: 0.3;
  }
}

.result-shell {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.result-report,
.result-sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.result-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.result-header img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #8b8f98;
}

.result-bar {
  margin: 1.25rem 0;
}

.result-bar__track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: #d6ebdc;
  overflow: hidden;
}

.result-bar__fill {
  display: block;
  height: 100%;
  background: #18a558;
}

.result-summary {
  background: #e8f9e8;
  padding: 1rem;
  border-radius: 14px;
}

.result-causes {
  margin-top: 1.5rem;
}

.result-cause-grid {
  display: flex;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.result-cause-card {
  flex: 1;
  border-radius: 14px;
  border: 1px solid #f0dcbf;
  padding: 0.75rem;
  text-align: center;
}

.result-matches__strip {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.match-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}

.coach-card {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.coach-card img {
  width: 160px;
  border-radius: 16px;
  object-fit: cover;
}

.result-timeline {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #e6f7ed;
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  border-top: 2px solid #0f915c;
  padding-top: 1rem;
}

.timeline-track div {
  text-align: center;
  flex: 1;
}

.result-product {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.result-addons {
  border: 1px solid #0f915c;
  border-radius: 20px;
  padding: 1rem;
  margin: 1rem 0;
}

.result-addons ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.result-total {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-total button {
  background: #7ed957;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 960px) {
  .result-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .result-shell {
    padding: 1rem 0.75rem;
    gap: 1rem;
  }

  .result-report,
  .result-sidebar {
    padding: 1rem;
  }

  .result-header {
    flex-direction: column;
    text-align: center;
  }

  .coach-card {
    flex-direction: column;
    text-align: center;
  }

  .coach-card img {
    width: 100%;
    max-width: 240px;
  }

  .timeline-track {
    flex-direction: column;
    gap: 1rem;
    border-top: none;
  }

  .timeline-track div {
    border-top: 2px solid #0f915c;
    padding-top: 0.75rem;
  }

  .result-sidebar .result-product {
    text-align: center;
  }

  .result-total {
    flex-direction: column;
    gap: 0.75rem;
  }

  .result-total button {
    width: 100%;
  }
}

.test-footnote {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #8a8d99;
}

.test-footnote a {
  color: inherit;
  text-decoration: underline;
}

.test-options,
.test-choice-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.test-option {
  border: none;
  border-radius: 12px;
  padding: 0.85rem 2.5rem;
  background: #ededf0;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2f33;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.test-option:focus-visible {
  outline: 2px solid #a8d45b;
  outline-offset: 3px;
}

.test-choice-grid {
  flex-direction: column;
}

.test-hair-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hair-stage-card,
.choice-card {
  position: relative;
  display: block;
  border-radius: 14px;
  border: 1px solid #e3e5ec;
  background: #f5f6fa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hair-stage-card input,
.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hair-stage-card__body,
.choice-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hair-stage-card__label,
.choice-card__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #2e3036;
}

.hair-stage-card__label::before,
.choice-card__label::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #2e3036;
  display: inline-block;
}

.hair-stage-card input:checked + .hair-stage-card__body .hair-stage-card__label::before,
.choice-card input:checked + .choice-card__body .choice-card__label::before {
  background: #a8d45b;
  border-color: #a8d45b;
}

.hair-stage-card__figures,
.choice-card__figure {
  display: flex;
  gap: 0.5rem;
}

.hair-stage-card.is-selected,
.choice-card.is-selected {
  border-color: #a8d45b;
  background: #f9fff0;
  box-shadow: 0 10px 30px rgba(168, 212, 91, 0.2);
}

.test-radio-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.radio-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #e3e5ec;
  font-weight: 600;
  color: #222;
  cursor: pointer;
}

.radio-list__item input {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.radio-list__item input:checked {
  accent-color: #a8d45b;
}

.radio-list__item.is-selected {
  border-color: #a8d45b;
  background: #f9fff0;
  box-shadow: 0 10px 20px rgba(168, 212, 91, 0.15);
}

.radio-list__item--stacked {
  align-items: flex-start;
  flex-direction: column;
}

.radio-list__item--stacked span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.radio-list__item small {
  font-weight: 400;
  color: #6b6e78;
}

.test-upload {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.test-upload__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.test-upload__media img {
  width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.test-upload__media span {
  font-size: 0.9rem;
  color: #6b6d76;
}

.test-upload__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.upload-btn {
  min-width: 220px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #2f2f2f;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.upload-btn--dark {
  background: #2f2f2f;
  color: #fff;
}

.upload-status {
  font-size: 0.9rem;
  color: #6b6d76;
}

.upload-status.is-success {
  color: #2f6a12;
  font-weight: 600;
}

.camera-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.camera-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.camera-modal__content {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.camera-modal__content video {
  width: 100%;
  border-radius: 16px;
  background: #000;
}

.camera-modal__actions {
  display: flex;
  gap: 1rem;
}

.camera-modal__actions button {
  flex: 1;
  padding: 0.85rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  background: #2f2f2f;
  color: #fff;
}

.camera-modal__actions button:last-child {
  background: #bbb;
  color: #111;
}

.hair-figure {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7cfa5;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08);
}

.hair-figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: var(--hair-depth, 32px);
  background: var(--hair-color, #332e2b);
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

.hair-figure.stage-1 {
  --hair-depth: 32px;
}

.hair-figure.stage-2 {
  --hair-depth: 26px;
}

.hair-figure.stage-3 {
  --hair-depth: 20px;
}

.hair-figure.stage-4 {
  --hair-depth: 14px;
}

.hair-figure.stage-5 {
  --hair-depth: 9px;
}

.hair-figure.stage-6 {
  --hair-depth: 5px;
}

.hair-figure.stage-heavy::before {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    #cc3f3f,
    #cc3f3f 6px,
    #4c2f2f 6px,
    #4c2f2f 12px
  );
}

.hair-figure.stage-coin {
  --hair-depth: 24px;
  background: radial-gradient(circle at 50% 30%, #cc3f3f 12%, transparent 13%), #f7cfa5;
}
.test-hair-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hair-stage-card {
  position: relative;
  display: block;
  border-radius: 14px;
  border: 1px solid #e3e5ec;
  background: #f5f6fa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.hair-stage-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hair-stage-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hair-stage-card__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #2e3036;
}

.hair-stage-card__label::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #2e3036;
  display: inline-block;
}

.hair-stage-card input:checked + .hair-stage-card__body .hair-stage-card__label::before {
  background: #a8d45b;
  border-color: #a8d45b;
}

.hair-stage-card__figures {
  display: flex;
  gap: 0.5rem;
}

.hair-figure {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7cfa5;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.08);
}

.hair-figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: var(--hair-depth, 32px);
  background: var(--hair-color, #332e2b);
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
}

.hair-figure.stage-1 {
  --hair-depth: 32px;
}

.hair-figure.stage-2 {
  --hair-depth: 26px;
}

.hair-figure.stage-3 {
  --hair-depth: 20px;
}

.hair-figure.stage-4 {
  --hair-depth: 14px;
}

.hair-figure.stage-5 {
  --hair-depth: 9px;
}

.hair-figure.stage-6 {
  --hair-depth: 5px;
}

.hair-figure.stage-heavy::before {
  height: 6px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    #cc3f3f,
    #cc3f3f 6px,
    #4c2f2f 6px,
    #4c2f2f 12px
  );
}

.hair-figure.stage-coin {
  --hair-depth: 26px;
  background: radial-gradient(circle at 50% 30%, #cc3f3f 12%, transparent 13%), #f7cfa5;
}

.test-hair-stage .hair-stage-card {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.test-hair-stage .hair-stage-card input:checked + .hair-stage-card__body {
  color: #152001;
}

.test-hair-stage .hair-stage-card input:checked ~ .hair-stage-card__body {
  color: #152001;
}
.press,
.stories-slider {
  width: 100%;
  max-width: 100vw;
}

/* === Force WhatsApp button to be big + clean === */
.whatsapp-fab {
  position: fixed !important;
  right: 1rem !important;
  bottom: 1rem !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 200 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  padding: 0 !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25) !important;
}

.whatsapp-fab__icon,
.whatsapp-fab img,
.whatsapp-fab svg {
  width: 48px !important;
  height: 48px !important;
  display: block !important;
  object-fit: contain !important;
}

/* Lift WhatsApp button above bottom nav on mobile */
@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 3.2rem !important;  /* move it up above FRANCHISE / TAKE TEST / LOG IN */
    right: 1rem !important;
  }
}

/* Infinium brand stack in hero */
.hero-brand {
  margin-bottom: 1rem;
}

.hero-brand__main {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0f172a;
}

.hero-brand__sub {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 26rem;
  color: rgba(15, 23, 42, 0.82);
}

/* Center on mobile to match existing hero text */
@media (max-width: 768px) {
  .hero-brand,
  .hero-brand__main,
  .hero-brand__sub {
    text-align: center;
    margin-left: 1rem;
    margin-right: auto;
  }
}

/* ===== HERO BRAND STACK ABOVE EYEBROW ===== */
.hero-brand {
  margin-bottom: 1rem;
}

.hero-brand__main {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0f172a;
}

.hero-brand__sub {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 30rem;
  color: rgba(15, 23, 42, 0.82);
}

@media (max-width: 768px) {
  .hero-brand,
  .hero-brand__main,
  .hero-brand__sub {
    text-align: center;
    margin-left: 1rem;
    margin-right: auto;
  }
}

/* ===== WHY CHOOSE INFINIUM ===== */
.why-infinium__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.6rem 2rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.why-infinium__list li {
  position: relative;
  padding-left: 1.2rem;
}

.why-infinium__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7c3aed;
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== SCIENCE ===== */
.science {
  background: #fff;
}

.science-page-hero {
  background: #fff;
  padding: clamp(2.5rem, 4vw, 4rem) 0 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.science-page-hero__inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.science--page .science-body {
  margin-top: 1.5rem;
}

.science-hero {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.science-hero__copy {
  flex: 2;
}

.science-hero__copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.science-hero__copy p {
  margin: 0 0 1rem;
  color: rgba(15, 23, 42, 0.8);
}

.science-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.science-tab {
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.1rem;
  color: rgba(15, 23, 42, 0.8);
}

.science-tab.is-active {
  background: #1f1b2e;
  color: #fff;
  border-color: #1f1b2e;
}

.science-card {
  background: #fff9f4;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.85);
}

.science-card--quote {
  background: #fff5ff;
  border: 1px solid rgba(124, 58, 237, 0.25);
  max-width: 320px;
}

.science-body {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.science-article h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.science-article .lead {
  font-weight: 600;
  margin-bottom: 1rem;
}

.science-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 1rem;
}

.science-list li {
  margin-bottom: 0.45rem;
}

.science-phases {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.science-phase {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.science-phase__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #f4ebff);
  margin: 0 auto 0.85rem;
  position: relative;
  overflow: hidden;
}

.science-phase__icon span {
  display: block;
  width: 100%;
  height: 100%;
}

.science-phase__icon span::before,
.science-phase__icon span::after,
.science-phase__icon::after {
  content: '';
  position: absolute;
  bottom: 18px;
  width: 6px;
  height: 38px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #fbbf24, #d97706);
}

.science-phase__icon::after {
  left: 40%;
  transform: rotate(-4deg);
}

.science-phase__icon span::before {
  left: 55%;
  transform: rotate(4deg);
  background: linear-gradient(180deg, #f472b6, #c026d3);
}

.science-phase__icon span::after {
  left: 68%;
  transform: rotate(8deg);
  background: linear-gradient(180deg, #7c3aed, #4c1d95);
}

.science-phase__meta {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.6);
  margin-bottom: 0.35rem;
}

.science-phase p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(15, 23, 42, 0.8);
}

.science-diagnosis {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: 20px;
  background: linear-gradient(120deg, #f8f4ff, #fff4f0);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.science-diagnosis h3 {
  margin: 0 0 0.35rem;
}

.science-diagnosis__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ghost-btn--dark {
  border: 1px solid #1f1b2e;
  color: #1f1b2e;
  background: transparent;
}

.ghost-btn--dark:hover {
  background: #1f1b2e;
  color: #fff;
}

@media (max-width: 768px) {
  .science-body {
    grid-template-columns: 1fr;
  }

  .science-card--quote {
    max-width: 100%;
  }

  .science-page-hero__inner {
    flex-direction: column;
  }
}

.before-after__track {
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

.science-detail-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.science-detail {
  background: #fff;
  border-radius: 18px;
  padding: 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.science-detail h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.science-detail ul {
  margin: 0.6rem 0;
  padding-left: 1.1rem;
  color: rgba(15, 23, 42, 0.8);
}

.science-detail ul li {
  margin-bottom: 0.3rem;
}

/* ===== DIVISION PAGES (FRANCHISE / INSTITUTE / PRODUCTS) ===== */
.module-hero {
  background: linear-gradient(120deg, #f7f3ff, #fff);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
}

.module-hero__copy {
  flex: 1 1 320px;
}

.module-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: #7c3aed;
  margin-bottom: 0.85rem;
}

.module-hero__copy h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.module-hero__copy p {
  margin: 0 0 1rem;
  color: rgba(15, 23, 42, 0.75);
  max-width: 45ch;
}

.module-hero__media {
  flex: 1 1 280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.module-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.module-stat {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.module-stat strong {
  display: block;
  font-size: 1.6rem;
  color: #1e1b4b;
}

.module-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.module-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.module-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.module-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  color: rgba(15, 23, 42, 0.75);
}

.module-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  counter-reset: process-step;
  margin-top: 1.5rem;
}

.module-process__step {
  background: #f8f8ff;
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.module-process__step::before {
  counter-increment: process-step;
  content: counter(process-step, decimal-leading-zero);
  font-weight: 600;
  color: #7c3aed;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.module-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.module-tier {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.module-tier h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.module-tier ul {
  padding-left: 1.1rem;
  color: rgba(15, 23, 42, 0.75);
  margin: 0;
}

.module-cta-panel {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(100deg, #1f1b4b, #7c3aed);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.module-cta-panel h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.module-cta-panel p {
  margin: 0.4rem 0 0;
  opacity: 0.85;
}

.module-cta-panel .primary-cta {
  background: #fff;
  color: #1f1b4b;
}

.faq-list {
  margin: 1.5rem 0 0;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.faq-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.module-product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.module-product-card {
  border-radius: 20px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 15px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-product-card img {
  border-radius: 16px;
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.module-product-card small {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7c3aed;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .why-infinium .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .why-infinium__list {
    padding-left: clamp(2rem, 6vw, 6rem);
    padding-right: clamp(2rem, 6vw, 6rem);
  }
}

/* ===== OUR TREATMENTS ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.treatments.section {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

.treatments .section-heading {
  margin-bottom: 1.25rem;
}

.treatments .heading-underline {
  margin-bottom: 1.5rem;
}

.treatments-column h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.treatments-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
}

.treatments-column li {
  margin-bottom: 0.25rem;
}

.treatment-sliders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.treatment-slider {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  padding: clamp(1rem, 3vw, 1.75rem);
}

.treatment-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.treatment-slider__controls {
  display: flex;
  gap: 0.5rem;
}

.treatment-slider__controls .slider-arrow {
  width: 38px;
  height: 38px;
  box-shadow: none;
}

.treatment-slider__track {
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.treatment-slider__track::-webkit-scrollbar {
  height: 6px;
}

.treatment-slider__track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.treatment-card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  min-width: clamp(230px, 64vw, 320px);
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.treatment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.treatment-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.treatment-card__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.treatment-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .treatment-slider {
    padding: 1rem;
  }

  .treatment-card {
    min-width: clamp(210px, 72vw, 280px);
  }

  .treatment-card img {
    height: 160px;
  }
}

@media (min-width: 1024px) {
  .treatments .container,
  .before-after .container,
  .stories-slider .container,
  .why-infinium .container,
  .division-main .section .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .treatment-sliders,
  .treatments-grid,
  .before-after__content,
  .stories-slider .slider-shell,
  .why-infinium__list,
  .division-main .section .container > * {
    padding-left: clamp(2rem, 6vw, 6rem);
    padding-right: clamp(2rem, 6vw, 6rem);
  }
}

/* ===== BEFORE & AFTER RESULTS ===== */
.before-after__container {
  width: 100%;
}

.before-after__content {
  padding: 0 var(--page-padding);
}

@media (min-width: 1024px) {
  .before-after__container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .before-after__content {
    padding-left: clamp(2rem, 6vw, 6rem);
    padding-right: clamp(2rem, 6vw, 6rem);
  }
}

.before-after__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.before-after__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.before-after__track::-webkit-scrollbar {
  height: 6px;
}

.before-after__track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.before-after__card {
  border-radius: 0.9rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-height: 200px;
  min-width: clamp(220px, 60vw, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.before-after__card--placeholder {
  border: 1px dashed rgba(148, 163, 184, 0.9);
  background: repeating-linear-gradient(
    -45deg,
    #f9fafb,
    #f9fafb 6px,
    #eef2ff 6px,
    #eef2ff 12px
  );
}

.before-after__card--placeholder span {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.7);
}

/* ===== BRANCHES ===== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.branches-grid h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.branches-grid p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(15, 23, 42, 0.8);
}

/* ===== DOCTORS ===== */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.doctor-card {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.doctor-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.doctor-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.8);
}

/* ===== INFINIUM ECOSYSTEM (INSTITUTE / PRODUCTS / FRANCHISE) ===== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.vertical-card {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.vertical-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.vertical-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(15, 23, 42, 0.85);
}

.vertical-card__meta {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: rgba(15, 23, 42, 0.7);
}

/* ===== CONTACT / FRANCHISE DETAILS ===== */
.contact-infinium__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.contact-infinium__grid h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.contact-infinium__grid p {
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
  color: rgba(15, 23, 42, 0.85);
}

.contact-infinium__grid a {
  color: #2563eb;
  text-decoration: none;
}

.contact-infinium__grid a:hover {
  text-decoration: underline;
}

/* Hide central hair diagram illustration */
.health-diagram .diagram-center {
  display: none !important;
}

/* Top header: white background */
.nav {
  background-color: #ffffff !important;
}

.nav__inner {
  background-color: transparent !important;
}

/* Hamburger icon: orange lines */
.nav-icon span {
  background-color: #f97316 !important; /* Infinium orange */
}

/* If there is an active state, keep it orange too */
.nav-icon.nav-icon--menu span {
  background-color: #f97316 !important;
}

/* Hamburger button: violet circular background */
.nav-icon {
  background-color: #110135; /* violet */
  border-radius: 999px;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Make sure the three lines stay orange on top of violet */
.nav-icon span {
  background-color: #f97316 !important; /* orange */
}

/* === Mobile nav: logo left, hamburger right on same line === */
@media (max-width: 768px) {
  .nav {
    padding: 0.6rem 1rem;
  }

  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    height: auto;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 38px;      /* adjust up/down if you want */
    width: auto;
    display: block;
  }

  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    flex: 0 0 auto;
  }

  /* critical: bring hamburger into the flex row */
  .nav-icon {
    position: static !important;
    margin: 0;
    flex-shrink: 0;
  }
}

/* === FORCE header: logo left, hamburger right on one line === */
.nav {
  background-color: #ffffff !important;
}

.nav__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.6rem 1rem;
}

/* Logo block */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;   /* adjust if you want it a bit smaller */
  width: auto;
  display: block;
}

/* Right side (hamburger container) */
.nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
}

/* Hamburger circle */
.nav-icon {
  position: static !important;   /* kill any absolute positioning */
  margin: 0 !important;
  flex-shrink: 0;
}

/* Keep our violet circle + orange lines */
.nav-icon {
  background-color: #8b5cf6;
  border-radius: 999px;
  padding: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon span {
  background-color: #f97316 !important;
}

/* ===== FINAL OVERRIDE: header layout ===== */

/* Header bar */
.nav {
  background-color: #ffffff !important;
  padding: 0.6rem 1rem !important;
}

/* Main row: logo left, hamburger right, NO wrapping */
.nav__inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* Logo */
.logo {
  display: flex !important;
  align-items: center !important;
}

.logo img {
  height: 40px;          /* adjust 36–44 if you want */
  width: auto;
  display: block;
}

/* Right side */
.nav-right {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto !important;
}

/* Hamburger button – kill all old positioning */
.nav-icon,
.nav-icon--menu {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

/* Our styling: violet circle + orange lines */
.nav-icon {
  background-color: #16003b;   /* or keep #8b5cf6 if you prefer */
  border-radius: 999px;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon span {
  background-color: #f97316 !important;
}

/* === MOBILE FIX: logo left, hamburger right, same line === */
@media (max-width: 600px) {
  .nav {
    padding: 0.6rem 0.9rem !important;
  }

  /* 2 columns: logo | hamburger */
  .nav__inner {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    column-gap: 0.5rem !important;
    width: 100% !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
  }

  .logo img {
    height: 60px;          /* adjust a bit up/down if needed */
    width: auto;
    display: block;
    max-width: 70vw;       /* so it doesn’t push hamburger off-screen */
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    justify-self: end !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  /* make sure hamburger participates in layout, not floating */
  .nav-icon,
  .nav-icon--menu {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
}

/* Hide the hamburger toggle on mobile screens */
@media (max-width: 768px) {
  .nav-icon--menu {
    display: none !important;
  }
}

/* Soft lavender gradient for "Why Choose Infinium?" section */
.why-infinium {
  background: linear-gradient(180deg, #fef9ff 0%, #f5e1ff 100%);
}

/* Optional: give the inner content a soft card feel */
.why-infinium .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Temporarily hide press logos strip */
.press.section {
  display: none !important;
}

/* === HEADER: logo left, tabs + hamburger on right === */

.nav__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;   /* logo stays on left */
  gap: 1.25rem !important;
}

.brand-tabs {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-end !important;         /* align content to the right */
  margin-left: auto !important;            /* push tabs to right side */
  max-width: none !important;
}

.brand-tabs__pills {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: nowrap;                        /* keep in one row */
  gap: 0.9rem;
}

.brand-tabs__pill {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  white-space: nowrap;
}

/* hamburger sits just after the tabs on the far right */
.nav-right {
  margin-left: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
}

/* hide tabs on mobile so header stays clean */
@media (max-width: 768px) {
  .brand-tabs {
    display: none !important;
  }
}

/* Logo size (desktop) */
.logo img {
  height: 70px;   /* try 48–56px till it looks right */
  width: auto;
  display: block;
}

/* Bigger, colored header pills */
.brand-tabs__pill {
  font-size: 0.95rem;        /* bigger text */
  font-weight: 600;
  padding: 0.60rem 1.40rem;  /* bigger pill */
  border-radius: 999px;

  /* COLORS – tweak these as you like */
  background-color: #fff7ed; /* soft orange background */
  border: 1px solid #f97316; /* orange border */
  color: #111827;            /* dark text */
  white-space: nowrap;
}

/* === Header search bar === */

.nav-search {
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
}

.nav-search input {
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #111827;
  min-width: 190px;
  max-width: 230px;
  outline: none;
}

.nav-search input::placeholder {
  color: #9ca3af;
  font-size: 0.85rem;
}

.nav-search input:focus {
  border-color: #f97316;               /* orange border on focus */
  box-shadow: 0 0 0 1px #fed7aa;       /* soft orange glow */
}

/* Hide search on mobile to keep header clean */
@media (max-width: 768px) {
  .nav-search {
    display: none;
  }
}

/* =====================
   HEADER OVERRIDES
   (logo + tabs + search + hamburger)
   ===================== */

.nav__inner {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
}

/* Logo left */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 75px;   /* change this to make logo bigger/smaller */
  width: auto;
}

/* Tabs row (inline) */
.brand-tabs {
  margin-left: 1rem;                /* pushes tabs to the right of logo */
  display: flex !important;         /* force row */
  flex-direction: row !important;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.brand-tabs__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 0 0.5rem;
}

.brand-tabs__link:hover {
  color: #8b5cf6;
  text-decoration: underline;
}

/* Thin vertical separator between tabs */
.brand-tabs__divider {
  width: 1px;
  height: 18px;
  background: #e5e7eb;
  display: inline-block;
}

/* Search bar between tabs and hamburger */
.nav-search {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
  margin-right: 0.75rem;
}

.nav-search input {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  min-width: 200px;   /* change these two to adjust search size */
  max-width: 260px;
  outline: none;
}

.nav-search input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.3);
}

/* Hamburger at extreme right */
.nav-right {
  display: flex;
  align-items: center;
}

/* Mobile: keep only logo + hamburger */
@media (max-width: 768px) {
  .brand-tabs,
  .nav-search {
    display: none !important;
  }

  .nav__inner {
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 40px;
  }
}

/* --- Final mobile header guardrail (forces hamburger into view) --- */
@media (max-width: 768px) {
  .nav__inner {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
    padding: 0.5rem 1rem !important;
  }

  .brand-tabs,
  .nav-search {
    display: none !important;
  }

  .logo {
    max-width: clamp(180px, 65vw, 240px);
    width: 100%;
    justify-self: start;
  }

  .logo img {
    width: 100%;
    height: auto !important;
  }

  .nav-right {
    display: flex !important;
    justify-content: flex-end !important;
    margin: 0 !important;
  }

  .nav-icon.nav-icon--menu {
    width: 44px;
    height: 44px;
    display: none !important;
  }
}
