/* ─────────────────────────────────────────────
   Praxis | Labor Medicus — Brand Stylesheet
   Font: Figtree (loaded via <link> in HTML)
   Brand blue: #5993B9 — CMYK 52, 21, 0, 27
   ───────────────────────────────────────────── */

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

:root {
  --teal: #5993b9;
  --teal-dark: #3d6e91;
  --navy: #1D3347;
  --text: #1A2E3D;
  --muted: #4E6E87;
  --light-bg: #EDF2F7;
  --border: #CCDDE8;
  --white: #FFFFFF;
  --green: #4A8C6F;
  --green-light: rgba(74, 140, 111, 0.09);
}

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

body {
  font-family: 'Figtree', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* ── CONTAINER ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  opacity: 0;
  background: var(--white);
  border: 1px solid rgba(25, 28, 33, 0.12);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(25, 28, 33, 0.04);
  z-index: 100;
  width: max-content;
  max-width: calc(100vw - 40px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

nav.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 8px 8px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-cta-btn {
  font-size: 13px;
  padding: 9px 18px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(89, 147, 185, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-1px);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89, 147, 185, 0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  display: inline-block;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 128px 32px 64px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
}

.page-hero-inner p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── HERO ── */
.section-hero {
  padding: 140px 32px 80px;
}

.hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89, 147, 185, 0.08);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--teal);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-bullets {
  list-style: none;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-bullets li {
  font-size: 15px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235993B9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-bullets li strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-image {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  height: 440px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* ── HERO ANIMATIONS ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.hero-animate .hw {
  display: inline-block;
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-sub-animate,
.hero-bullet-1,
.hero-bullet-2,
.hero-bullet-3,
.hero-cta-animate {
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-sub-animate {
  animation-delay: 0.2s;
}

.hero-bullet-1 {
  animation-delay: 0.3s;
}

.hero-bullet-2 {
  animation-delay: 0.4s;
}

.hero-bullet-3 {
  animation-delay: 0.5s;
}

.hero-cta-animate {
  animation-delay: 0.6s;
}

.hero-image-animate {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* ── ABOUT ── */
.section-about {
  padding: 96px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-logo {
  display: block;
  height: 56px;
  width: auto;
  margin-top: 4px;
  margin-bottom: 32px;
}

.section-about h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-about p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.75;
}

.section-about p strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── STATS ── */
.section-stats {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

/* ── SUPPLEMENTS ── */
.section-supplements {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(74,140,111,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.supp-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.supp-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px 0 0;
  max-width: 540px;
}

.supp-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,251,252,0.96) 100%);
  border: 1px solid rgba(204,221,232,0.9);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 52px rgba(29,51,71,0.06);
}

.supp-label {
  background: var(--green-light) !important;
  color: var(--green) !important;
  gap: 10px;
  padding-left: 16px;
}

.supp-label .dot {
  background: var(--green) !important;
}

.supp-label svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.supp-kicker {
  max-width: 420px;
  margin: 18px 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.supp-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

.supp-heading span {
  display: block;
}

.supp-heading-accent {
  display: block;
  font-style: normal;
  color: var(--green);
}

.supp-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  max-width: 530px;
  margin-bottom: 16px;
}

.supp-desc strong {
  color: var(--navy);
  font-weight: 600;
}

.supp-divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(74,140,111,0.18) 100%);
  border-radius: 999px;
  margin: 28px 0 16px;
}

.supp-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Numbered claims */
.supp-panel-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(204,221,232,0.85);
}

.supp-panel-note__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}

.supp-panel-note__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.supp-claims {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.supp-claim {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 148px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(204,221,232,0.85);
  background: rgba(255,255,255,0.88);
  border-radius: 20px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .supp-claim:hover {
    background: rgba(255,255,255,0.96);
    transform: translateY(-2px);
    border-color: rgba(74,140,111,0.22);
    box-shadow: 0 10px 24px rgba(29,51,71,0.05);
  }
}

.supp-claim-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.08em;
  min-width: auto;
  flex-shrink: 0;
}

.supp-claim-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  max-width: none;
}

.supp-claim-text--green {
  color: var(--green);
  font-weight: 700;
}

/* ── SERVICES ── */
.section-services {
  padding: 96px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}

.section-services .container {
  text-align: center;
}

.section-services h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-services h2 .highlight {
  color: var(--teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--teal);
  border-radius: 14px;
  padding: 40px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(89, 147, 185, 0.08);
  border-color: rgba(89, 147, 185, 0.25);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy);
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235993B9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── FAQ ── */
.section-faq {
  padding: 96px 0;
  text-align: center;
}

.section-faq h2 {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 600;
  margin-bottom: 24px;
}

.faq-notice {
  font-size: 15px;
  color: var(--teal);
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto 48px;
  display: block;
  max-width: 560px;
  text-align: center;
  line-height: 1.6;
}

.faq-notice strong {
  color: var(--teal);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: rgba(89, 147, 185, 0.30);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
  background: var(--white);
  border-color: rgba(89, 147, 185, 0.40);
  box-shadow: inset 3px 0 0 var(--teal);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 6px 20px 22px 56px;
}

.faq-answer ul {
  margin: 8px 0 8px 16px;
  list-style: disc;
}

.faq-answer ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ── CTA BANNER ── */
.section-cta {
  padding: 32px 0 80px;
}

.section-cta .container {
  max-width: 1100px;
  padding: 0 28px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
  padding: 56px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(89, 147, 185, 0.22);
}

.cta-text h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-image {
  width: 280px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  padding: 0 0 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-address {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-contact-box {
  background: linear-gradient(150deg, #5993B9 0%, #4478a0 100%);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(89, 147, 185, 0.35), inset 0 0 0 1.5px rgba(255, 255, 255, 0.22);
}

.footer-contact-box a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.footer-contact-box a:last-child {
  margin-bottom: 0;
}

.footer-contact-box a:hover {
  opacity: 0.85;
}

.footer-hours {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 5px 0;
}

.footer-hours strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  margin-top: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s ease;
  display: block;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
}

/* ── SCROLL REVEAL ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-scale {
  transform: scale(0.96);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .supp-wrapper {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    text-align: center;
  }

  .cta-image {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid>div:nth-child(2) {
    order: 3;
  }

  .footer-hours {
    order: 2;
    text-align: left;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }

  .container {
    padding: 0 20px;
  }

  nav {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    opacity: 1;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    z-index: 200;
  }

  nav.visible {
    transform: none;
  }

  .nav-inner {
    padding: 0 20px;
    min-height: 60px;
    justify-content: space-between;
  }

  .nav-links,
  .nav-cta-btn {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    flex-shrink: 0;
  }

  .mobile-menu-logo {
    height: 30px;
    width: auto;
    display: block;
  }

  .menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text);
    line-height: 0;
    flex-shrink: 0;
  }

  .menu-close:active {
    opacity: 0.5;
  }

  .mobile-menu-nav {
    flex: 1;
    padding: 8px 24px;
    overflow-y: auto;
  }

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

  .mobile-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu ul li:last-child a {
    border-bottom: none;
  }

  .mobile-menu ul li a::after {
    content: '›';
    font-size: 22px;
    color: var(--muted);
    font-weight: 300;
  }

  .mobile-menu ul li a:active {
    opacity: 0.6;
  }

  .mobile-menu-footer {
    flex-shrink: 0;
    padding: 24px 24px 52px;
  }

  .mobile-menu-footer .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    box-sizing: border-box;
  }

  .mobile-menu-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }

  .mobile-menu-legal a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
  }

  .section-hero {
    padding: 36px 20px 48px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-bullets {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero-bullets li {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    padding-left: 24px;
  }

  .hero-bullets li::before {
    width: 14px;
    height: 14px;
  }

  .hero-bullets li strong {
    color: var(--navy);
    font-weight: 600;
  }

  .hero-image {
    height: 220px;
    margin-top: 36px;
  }

  .supp-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .supp-left {
    padding: 0;
  }

  .supp-right {
    padding: 22px;
    border-radius: 24px;
  }

  .supp-kicker {
    max-width: none;
    font-size: 12px;
    margin-top: 14px;
  }

  .supp-heading {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .supp-desc {
    max-width: none;
    font-size: 14px;
    line-height: 1.75;
  }

  .supp-divider {
    width: 58px;
    margin: 22px 0 14px;
  }

  .supp-panel-note {
    padding-bottom: 14px;
    margin-bottom: 12px;
  }

  .supp-claims {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .supp-claim {
    min-height: 0;
    padding: 16px 16px 18px;
    align-items: flex-start;
    gap: 14px;
  }

  .supp-claim-text {
    font-size: 15px;
    max-width: none;
  }

  .page-hero {
    padding: 40px 20px 48px;
  }

  .section-about,
  .section-services,
  .section-faq,
  .section-supplements {
    padding: 64px 0;
  }

  .about-inner,
  .two-col {
    padding: 0 20px;
  }

  .section-cta {
    padding: 20px 0 56px;
  }

  .section-cta .container {
    padding: 0 20px;
  }

  .cta-banner {
    padding: 36px 28px;
    border-radius: 14px;
  }

  footer {
    padding: 0 0 20px;
    overflow: hidden;
  }

  .footer-inner {
    padding: 48px 20px 0;
    box-sizing: border-box;
  }

  .section-stats {
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(89, 147, 185, 0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  z-index: 90;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(89, 147, 185, 0.45);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ── SHARED TABLE CARD ── */
.table-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(29,51,71,0.06);
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-card table th {
  padding: 13px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(89,147,185,0.04);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table-card table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(89,147,185,0.07);
  vertical-align: middle;
  color: var(--text);
}
.table-card table tbody tr:last-child td { border-bottom: none; }
.table-card table tbody tr { transition: background 0.12s; }
.table-card table tbody tr:hover { background: rgba(89,147,185,0.035); }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Availability badges ─────────────────────────── */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.avail-badge--low {
  background: #FFF3E0;
  color: #C2660A;
  border: 1px solid #F5C790;
}
.avail-badge--full {
  background: #FDECEA;
  color: #B71C1C;
  border: 1px solid #F5C6C6;
}

/* ── Waitlist modal ─────────────────────────────── */
.waitlist-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.45);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.waitlist-modal.visible { display: flex; }
.waitlist-modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.waitlist-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.waitlist-modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  line-height: 1;
}
.waitlist-close:hover { color: var(--navy); }
.waitlist-field {
  margin-bottom: 14px;
}
.waitlist-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.waitlist-field input,
.waitlist-field select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
}
.waitlist-field input:focus,
.waitlist-field select:focus {
  border-color: var(--teal);
}
.waitlist-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.waitlist-submit {
  width: 100%;
  margin-top: 6px;
}
.waitlist-success {
  display: none;
  text-align: center;
  padding: 16px 0 4px;
}
.waitlist-success-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.waitlist-success-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.waitlist-success-text {
  font-size: 14px;
  color: var(--muted);
}
