/* ==========================================================================
   CURAVIAGLOBAL — Enterprise Design System
   ========================================================================== */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --purple-900: #2D1457;
  --purple-800: #4B2E83;
  --purple-700: #6F42C1;
  --purple-600: #8453D4;
  --purple-400: #9B6DFF;
  --purple-300: #B89AFF;
  --globe:      #5A4FCF;
  --deep-blue:  #2E3A8C;

  /* Semantic tokens */
  --brand:          var(--purple-700);
  --brand-dark:     var(--purple-800);
  --brand-light:    var(--purple-400);
  --accent:         var(--globe);

  /* Neutrals */
  --gray-900: #1C1033;
  --gray-800: #2C2244;
  --gray-700: #333333;
  --gray-600: #4A4567;
  --gray-500: #555555;
  --gray-400: #7A7A9A;
  --gray-300: #A8A8C8;
  --gray-200: #D8D4EF;
  --gray-100: #EDE9F8;
  --gray-50:  #F6F4FC;
  --white:    #FFFFFF;

  /* Surfaces */
  --surface-1: var(--white);
  --surface-2: var(--gray-50);
  --surface-3: var(--gray-100);

  /* Text */
  --text-primary:   var(--gray-700);
  --text-secondary: var(--gray-500);
  --text-muted:     var(--gray-400);
  --text-heading:   var(--purple-800);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(75,46,131,0.08);
  --shadow-sm: 0 2px 8px rgba(75,46,131,0.10);
  --shadow-md: 0 4px 20px rgba(75,46,131,0.13);
  --shadow-lg: 0 8px 40px rgba(75,46,131,0.16);
  --shadow-xl: 0 20px 60px rgba(75,46,131,0.20);

  /* Border radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Spacing scale (8px base) */
  --sp-1:  4px;  --sp-2:  8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Typography */
  --font-sans:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    150ms var(--ease);
  --t-base:    250ms var(--ease);
  --t-slow:    400ms var(--ease);
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: #f4f4f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

.section--alt {
  background: var(--surface-2);
}

/* ── DESIGN TOKENS — REUSABLE ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.section-eyebrow::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-light);
  flex-shrink: 0;
  opacity: 0.6;
}

.section-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  color: var(--text-heading);
  margin-bottom: var(--sp-5);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.section-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.78;
  max-width: 580px;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base), color var(--t-base);
  white-space: nowrap;
  user-select: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn i { font-size: 1.05rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(111,66,193,0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-900) 100%);
  box-shadow: 0 8px 24px rgba(111,66,193,0.45);
}

.btn--outline-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn--secondary {
  background: var(--surface-1);
  color: var(--brand);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.btn--secondary:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.btn--brand {
  background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(111,66,193,0.3);
}
.btn--brand:hover {
  box-shadow: 0 8px 24px rgba(111,66,193,0.4);
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(111,66,193,0.08);
  transition: box-shadow var(--t-base), background var(--t-base);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(75,46,131,0.10);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* fallback when logo.png missing */
.nav__logo-text {
  display: none;
  flex-direction: column;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nav__logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.nav__links a:hover { color: var(--text-heading); background: var(--gray-50); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200);
  color: var(--text-heading);
  font-size: 1.2rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.nav__burger:hover { border-color: var(--brand); background: var(--gray-50); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  inset-block-start: 72px;
  inset-inline: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: slideDown 200ms var(--ease-out) forwards;
}

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

.nav__drawer.open { display: block; }

.nav__drawer ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-5);
}

.nav__drawer ul a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 12px var(--sp-4);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-heading);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav__drawer ul a:hover { background: var(--gray-50); color: var(--brand); }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 120px var(--sp-20);
  background:
    linear-gradient(
      108deg,
      rgba(17,6,40,0.98)   0%,
      rgba(29,13,58,0.97)  16%,
      rgba(55,28,108,0.90) 34%,
      rgba(75,46,131,0.68) 52%,
      rgba(90,79,207,0.28) 70%,
      rgba(20,14,50,0.06)  100%
    ),
    url('static/hero.png') center 30% / cover no-repeat;
}

/* Subtle bottom fade so hero bleeds cleanly into trust strip */
.hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(17,6,40,0.18));
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-16);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(155,109,255,0.18);
  border: 1px solid rgba(155,109,255,0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow i { font-size: 0.85rem; animation: blink 2.4s ease-in-out infinite; }

@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.35; }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}

.hero__title strong {
  display: block;
  background: linear-gradient(135deg, var(--purple-300) 0%, #d4b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: var(--sp-10);
}

.hero__cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.hero__signin {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero__signin-btn {
  font-size: 0.88rem;
  padding: 9px 20px;
}
.hero__signin-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero__stat {
  padding: var(--sp-5) var(--sp-6);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Hero card — right side */
.hero__panel {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.hero__panel-header {
  padding: var(--sp-6) var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__panel-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.hero__panel-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(155,109,255,0.25);
  color: var(--purple-300);
  border: 1px solid rgba(155,109,255,0.3);
}

.hero__steps {
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero__step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.hero__step-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hero__step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(111,66,193,0.8);
  border: 1px solid rgba(155,109,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.hero__step-line {
  width: 1.5px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  margin-top: 4px;
}

.hero__step:last-child .hero__step-line { display: none; }

.hero__step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  padding-top: 6px;
}

.hero__panel-footer {
  padding: var(--sp-5) var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.hero__contact-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.hero__contact-row i { font-size: 1rem; color: var(--purple-300); flex-shrink: 0; }
.hero__contact-row a { color: rgba(255,255,255,0.85); font-weight: 500; transition: color var(--t-fast); }
.hero__contact-row a:hover { color: var(--purple-300); }

/* ── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--purple-800);
  padding-block: 18px;
}

.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 24px;
  color: rgba(255,255,255,0.72);
  font-size: 0.825rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}

.trust-strip__item:last-child { border-right: none; }

.trust-strip__item i {
  font-size: 1.1rem;
  color: var(--purple-300);
  flex-shrink: 0;
}

/* ── ABOUT ──────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

/* Image side */
.about__visual {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
  box-shadow:
    0 2px 4px rgba(29,13,58,0.06),
    0 8px 24px rgba(75,46,131,0.14),
    0 24px 64px rgba(75,46,131,0.18),
    0 0 0 1px rgba(111,66,193,0.10);
}

.about__image-frame img,
.about__image-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  filter: contrast(1.07) brightness(1.04) saturate(1.12);
  transition: filter 0.5s ease, transform 0.6s ease;
}

.about__image-frame:hover img {
  filter: contrast(1.10) brightness(1.06) saturate(1.16);
  transform: scale(1.025);
}


/* Accent border top-left glow */
.about__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1.5px rgba(155,109,255,0.22);
  z-index: 2;
  pointer-events: none;
}

/* Info card — sits below the image in normal flow */
.about__info-card {
  position: relative;
  margin-top: var(--sp-4);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.about__info-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}

.about__info-stats {
  display: flex;
  gap: var(--sp-8);
  padding-right: 88px; /* space for the badge */
}

.about__stat-val {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Decorative badge — anchored to top-right of the info card */
.about__badge {
  position: absolute;
  top: 50%;
  right: var(--sp-5);
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.3);
}

.about__badge-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

/* Text side */
.about__text { padding-block-start: var(--sp-4); }

.about__body { margin-bottom: var(--sp-8); }

.about__body p + p { margin-top: var(--sp-4); }

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.about__check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.about__check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(111,66,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about__check-icon i { font-size: 0.75rem; color: var(--brand); }

.about__check-text { font-size: 0.9625rem; color: var(--text-secondary); line-height: 1.5; }

/* ── TREATMENTS ─────────────────────────────────────────────────────────── */
.treatments__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.treatments__intro .section-eyebrow { justify-content: center; }
.treatments__intro .section-body { margin-inline: auto; }

.treatments__banner-wrap {
  position: relative;
  margin-bottom: var(--sp-12);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 21/7;
  background: linear-gradient(135deg, var(--purple-800), var(--globe));
  box-shadow: 0 8px 32px rgba(75,46,131,0.18), 0 0 0 1px rgba(111,66,193,0.10);
}

.treatments__banner-wrap img,
.treatments__banner-wrap .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) brightness(1.04) saturate(1.10);
}

.treatments__banner-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17,6,40,0.28) 100%);
  pointer-events: none;
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.treatment-card {
  background: var(--surface-1);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(75,46,131,0.06), 0 4px 12px rgba(75,46,131,0.06);
}

.treatment-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 4px 16px rgba(75,46,131,0.10), 0 16px 40px rgba(75,46,131,0.14);
  border-color: rgba(111,66,193,0.22);
}

.treatment-card:hover::before { transform: scaleX(1); }

.treatment-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(111,66,193,0.1) 0%, rgba(75,46,131,0.07) 100%);
  border: 1px solid rgba(111,66,193,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  transition: background var(--t-base), border-color var(--t-base);
}

.treatment-card:hover .treatment-card__icon {
  background: linear-gradient(135deg, rgba(111,66,193,0.18) 0%, rgba(75,46,131,0.14) 100%);
  border-color: rgba(111,66,193,0.25);
}

.treatment-card__icon i { font-size: 1.6rem; color: var(--brand); }

.treatment-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.treatment-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(111,66,193,0.08);
  color: var(--brand);
  letter-spacing: 0.04em;
}

.treatments__footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── WHY US ─────────────────────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
}

.why__left .section-body { margin-bottom: var(--sp-8); }

.why__left .btn { margin-bottom: var(--sp-10); }

.why__image-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple-700), var(--deep-blue));
  box-shadow: 0 8px 32px rgba(75,46,131,0.18), 0 24px 64px rgba(75,46,131,0.14), 0 0 0 1px rgba(111,66,193,0.10);
}

.why__image-frame img,
.why__image-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.07) brightness(1.04) saturate(1.10);
  transition: transform 0.6s ease, filter 0.5s ease;
}

.why__image-frame:hover img { transform: scale(1.03); filter: contrast(1.09) brightness(1.06) saturate(1.14); }

.why__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1.5px rgba(155,109,255,0.20);
  border-radius: var(--r-xl);
  pointer-events: none;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.why-card {
  background: var(--surface-1);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(111,66,193,0.2);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(111,66,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  transition: background var(--t-base);
}

.why-card:hover .why-card__icon { background: var(--brand); }

.why-card__icon i { font-size: 1.3rem; color: var(--brand); transition: color var(--t-fast); }
.why-card:hover .why-card__icon i { color: var(--white); }

.why-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
}

.why-card__body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────────────── */
.how__intro {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-20);
}

.how__intro .section-eyebrow { justify-content: center; }
.how__intro .section-body { margin-inline: auto; }

.how__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-bottom: var(--sp-20);
}

.how__connector {
  position: absolute;
  top: 35px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--deep-blue));
  z-index: 0;
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--sp-3);
  position: relative;
  z-index: 1;
}

.how__step-visual {
  position: relative;
  margin-bottom: var(--sp-6);
}

.how__step-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 2.5px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.how__step-ring i {
  font-size: 1.55rem;
  color: var(--brand);
  transition: color var(--t-fast);
}

.how__step:hover .how__step-ring {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 6px rgba(111,66,193,0.12), var(--shadow-md);
}

.how__step:hover .how__step-ring i { color: var(--white); }

.how__step:last-child .how__step-ring { background: var(--deep-blue); border-color: var(--deep-blue); }
.how__step:last-child .how__step-ring i { color: var(--white); }
.how__step:last-child:hover .how__step-ring { box-shadow: 0 0 0 6px rgba(46,58,140,0.14), var(--shadow-md); }

.how__step-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--text-heading);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-xs);
}

.how__step-title {
  font-size: 0.8375rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.how__step-body {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.how__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  position: relative;
}

/* Connector badge that sits centred in the gap between the two images */
.how__img-join {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.how__img-join-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.45rem;
  box-shadow:
    0 0 0 6px rgba(111,66,193,0.10),
    0 4px 20px rgba(111,66,193,0.28);
  animation: join-pulse 2.8s ease-in-out infinite;
}

@keyframes join-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(111,66,193,0.10), 0 4px 20px rgba(111,66,193,0.28); }
  50%       { box-shadow: 0 0 0 10px rgba(111,66,193,0.06), 0 6px 28px rgba(111,66,193,0.38); }
}

.how__img-join-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--brand);
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(111,66,193,0.35);
}

.how__image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple-700), var(--deep-blue));
  box-shadow: 0 6px 20px rgba(75,46,131,0.15), 0 20px 48px rgba(75,46,131,0.12);
}

.how__image-frame img,
.how__image-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) brightness(1.04) saturate(1.10);
  transition: transform 0.6s ease;
}

.how__image-frame:hover img { transform: scale(1.03); }

.how__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1.5px rgba(155,109,255,0.18);
  border-radius: var(--r-lg);
  pointer-events: none;
}

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact__left .section-body { margin-bottom: var(--sp-8); }

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 14px var(--sp-5);
  background: var(--surface-1);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.contact__channel:hover {
  border-color: rgba(111,66,193,0.25);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(111,66,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__channel-icon i { font-size: 1.2rem; color: var(--brand); }

.contact__channel-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 2px;
}

.contact__channel-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

.contact__docs-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.contact__docs-heading {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8375rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-4);
}

.contact__docs-heading i { font-size: 1rem; color: var(--brand); }

.contact__docs-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.contact__docs-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.contact__docs-list li i { font-size: 0.875rem; color: var(--brand); flex-shrink: 0; }

.contact__image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--purple-700), var(--deep-blue));
  box-shadow: 0 6px 20px rgba(75,46,131,0.15), 0 20px 48px rgba(75,46,131,0.12);
}

.contact__image-frame img,
.contact__image-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.07) brightness(1.04) saturate(1.10);
  transition: transform 0.6s ease;
}

.contact__image-frame:hover img { transform: scale(1.03); }

.contact__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1.5px rgba(155,109,255,0.18);
  border-radius: var(--r-lg);
  pointer-events: none;
}

/* ── FORM ───────────────────────────────────────────────────────────────── */
.form-card {
  background: var(--surface-1);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.form-card__top {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 100%);
}

.form-card__top-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-card__top-icon i { font-size: 1.3rem; color: var(--white); }

.form-card__top-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2px;
}

.form-card__top-sub { font-size: 0.8rem; color: rgba(255,255,255,0.68); }

.form-card__body { padding: var(--sp-8); }

.form-field { margin-bottom: var(--sp-5); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--gray-50);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(111,66,193,0.1);
}

.form-input::placeholder { color: var(--gray-300); }

.form-input--textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
}

.form-input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23A8A8C8'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-input--file {
  padding: 8px 14px;
  font-size: 0.84rem;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 0.975rem;
  justify-content: center;
  margin-top: var(--sp-2);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.form-privacy i { font-size: 0.8rem; color: var(--brand); flex-shrink: 0; }
.form-privacy a { color: var(--brand); text-decoration: underline; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
}

.form-success.visible { display: block; }

.form-success__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(111,66,193,0.08);
  border: 2px solid rgba(111,66,193,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  animation: successPop 0.5s var(--ease-out) forwards;
}

@keyframes successPop {
  0%   { transform: scale(0.7); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

.form-success__ring i { font-size: 2.2rem; color: var(--brand); }

.form-success__title { font-size: 1.5rem; margin-bottom: var(--sp-3); color: var(--text-heading); }

.form-success__body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 360px;
  margin-inline: auto;
}

.form-success__ref {
  margin-top: var(--sp-3);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-success__ref strong {
  color: var(--brand);
  font-family: monospace;
  font-size: 1rem;
}

.form-error-banner {
  display: none;
  align-items: center;
  gap: 10px;
  background: #fff0f0;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: #b91c1c;
}
.form-error-banner i { font-size: 1.1rem; flex-shrink: 0; }

/* ── IMAGE PLACEHOLDERS ─────────────────────────────────────────────────── */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 0%, #e8e1f5 100%);
  border: 2px dashed rgba(111,66,193,0.2);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  text-align: center;
  padding: var(--sp-6);
}

.img-ph i { font-size: 2.2rem; color: rgba(111,66,193,0.3); }

.img-ph__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  opacity: 0.75;
}

.img-ph__hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  background: rgba(111,66,193,0.07);
  padding: 2px 10px;
  border-radius: var(--r-sm);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.58);
}

.footer__upper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-20);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-4);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

.footer__logo-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: var(--sp-5);
}

.footer__desc {
  font-size: 0.84rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--sp-6);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-fast), transform var(--t-base);
}

.footer__social-btn i { font-size: 1rem; }

.footer__social-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__col ul a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}

.footer__col ul a:hover { color: var(--white); padding-left: 4px; }

.footer__lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
  flex-wrap: wrap;
}

.footer__copy { font-size: 0.78rem; }

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t-fast);
}

.footer__legal a:hover { color: rgba(255,255,255,0.75); }

/* ── WHY SOUTH AFRICA ───────────────────────────────────────────────────── */
.sa__intro {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}
.sa__intro .section-body { margin-inline: auto; }

.sa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.sa-card {
  background: var(--surface-1);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.sa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.sa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sa-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gray-100), var(--surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.sa-card__icon i { font-size: 1.5rem; color: var(--brand); }

.sa-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-3);
}

.sa-card__body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sa__quote {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--globe) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-16) var(--sp-20);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sa__quote::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: var(--sp-8);
  font-size: 9rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}

.sa__quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.65;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.sa__quote-cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── RECOVERY SUPPORT ───────────────────────────────────────────────────── */
.recovery__intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}
.recovery__intro .section-body { margin-inline: auto; }

.recovery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.recovery-card {
  background: var(--surface-1);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.recovery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recovery-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gray-100), var(--surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
}

.recovery-card__icon i { font-size: 1.65rem; color: var(--brand); }

.recovery-card__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.recovery-card__title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.recovery-card__body {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.recovery__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.recovery__cta p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}
.faq__intro .section-body { margin-inline: auto; }

.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-1);
  transition: box-shadow var(--t-base);
}

.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-8);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  user-select: none;
  transition: background var(--t-fast);
}

.faq__item summary:hover { background: var(--gray-50); }
.faq__item[open] summary { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; }

.faq__item summary::after {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%236F42C1' d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--t-base);
}

.faq__item[open] summary::after { transform: rotate(180deg); }

.faq__answer {
  padding: var(--sp-6) var(--sp-8);
  font-size: 0.9625rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq__answer p + p { margin-top: var(--sp-3); }

/* ── SCROLL TOP ─────────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(111,66,193,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  z-index: 500;
}

.scroll-top i { font-size: 1.2rem; }

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(111,66,193,0.5);
}

/* ── FLOATING SOCIAL SIDEBAR ─────────────────────────────────────────────── */
.float-social {
  position: fixed;
  right: 32px;
  bottom: 90px;          /* sits above the 46px scroll-top button (32px bottom + 46px + 12px gap) */
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.float-social.footer-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.float-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  background: transparent;
  color: #6F42C1;
  box-shadow: none;
  transition: transform 250ms ease, color 250ms ease;
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.float-social__btn:hover {
  transform: translateY(-4px) scale(1.1);
  color: #4B2E83;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */

/* ≥ 1280px */
@media (min-width: 1280px) {
  .container { max-width: 1240px; }
}

/* ≤ 1100px */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr 380px; gap: var(--sp-12); }
  .treatments__grid { grid-template-columns: repeat(3, 1fr); }
  .how__timeline { grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
  .how__connector { display: none; }
  .footer__upper { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .sa__grid { grid-template-columns: repeat(2, 1fr); }
  .recovery__grid { grid-template-columns: repeat(3, 1fr); }
  .sa__quote { padding: var(--sp-12) var(--sp-12); }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .section { padding-block: var(--sp-20); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .why__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .contact__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .trust-strip__list { justify-content: flex-start; overflow-x: auto; padding-inline: var(--sp-6); }
  .trust-strip__item { border-right: none; padding: 8px 16px; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-block: 108px var(--sp-16); }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .how__timeline { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .how__images { grid-template-columns: 1fr; }
  .how__img-join { display: none; }
  .why__features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__upper { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__lower { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .recovery__grid { grid-template-columns: repeat(2, 1fr); }
  .sa__quote { padding: var(--sp-10) var(--sp-8); }
  .faq__item summary { padding: var(--sp-5) var(--sp-6); font-size: 0.95rem; }
  .faq__answer { padding: var(--sp-5) var(--sp-6); }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .container { padding-inline: var(--sp-4); }
  .section { padding-block: var(--sp-16); }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero__stats { grid-template-columns: 1fr 1fr 1fr; gap: 1px; }
  .hero__stat-num { font-size: 1.5rem; }
  .treatments__grid { grid-template-columns: 1fr 1fr; }
  .how__timeline { grid-template-columns: 1fr; }
  .form-card__body { padding: var(--sp-6); }
  .form-card__top { padding: var(--sp-6); }
  .about__info-stats { flex-wrap: wrap; gap: var(--sp-4); }
  .btn { padding: 12px 22px; font-size: 0.875rem; }
  .scroll-top { bottom: var(--sp-5); right: var(--sp-5); }
  .float-social { right: 20px; bottom: 74px; gap: 6px; }
  .float-social__btn { width: 38px; height: 38px; min-width: 38px; min-height: 38px; font-size: 1rem; }
  .sa__grid { grid-template-columns: 1fr; }
  .recovery__grid { grid-template-columns: 1fr; }
  .sa__quote { padding: var(--sp-8) var(--sp-5); }
  .sa__quote-text { font-size: 1rem; }
}

/* ≤ 360px */
@media (max-width: 360px) {
  .hero__stats { grid-template-columns: 1fr; }
  .why__features { grid-template-columns: 1fr; }
  .treatments__grid { grid-template-columns: 1fr; }
}
