*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white: #f8faf9;
      --blue: #2a6ea6;
      --blue-light: #e8f1f9;
      --blue-mid: #b8d4ec;
      --green: #3a8c6e;
      --green-light: #e5f3ed;
      --green-mid: #a8d5c2;
      --ink: #1a2520;
      --ink-soft: #4a5e57;
      --ink-muted: #8a9e97;
      --border: #d5e5de;
      --medical: #1e5a8a;
      --medical-light: #e3eef7;
    }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: rgba(26,37,32,0.92);
  backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.mobile-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-nav-logo span { color: var(--green-mid); }
.mobile-nav-divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(255,255,255,0.15);
}
.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-menu-icon span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile menu drawer */
.mobile-menu-drawer {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 199;
  background: rgba(26,37,32,0.97);
  backdrop-filter: blur(20px);
  border-radius: 1.2rem;
  padding: 1.2rem;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  animation: drawerUp 0.25s ease;
}
.mobile-menu-drawer.open { display: flex; }
@keyframes drawerUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  transition: background 0.15s, color 0.15s;
}
.drawer-link:hover, .drawer-link.active {
  background: rgba(58,140,110,0.2);
  color: white;
}
.drawer-link-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
.drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.3rem 0;
}
.drawer-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border-radius: 100px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.3rem;
  transition: background 0.2s;
}
.drawer-book-btn:hover { background: var(--blue); }

@media (max-width: 900px) {
  .mobile-nav { display: flex; }
}

    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.5rem 4rem;
      background: rgba(248,250,249,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300;
      letter-spacing: 0.05em; color: var(--ink); text-decoration: none;
    }
    .nav-logo span { color: var(--green); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none;
      color: var(--ink-soft); transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--green); }
    .nav-cta {
      background: var(--green) !important; color: white !important;
      padding: 0.6rem 1.4rem; border-radius: 100px;
    }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: 9rem 4rem 5rem;
      background: var(--ink);
      position: relative; overflow: hidden;
    }
    .page-header::before {
      content: ''; position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(58,140,110,0.13) 0%, transparent 70%);
      top: 50%; left: 10%; transform: translate(-50%, -50%);
    }
    .page-header::after {
      content: ''; position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(42,110,166,0.1) 0%, transparent 70%);
      top: 20%; right: 5%;
    }
    .header-inner {
      max-width: 1100px; margin: 0 auto;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .header-tag {
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--green-mid);
      font-weight: 500; margin-bottom: 1rem; display: block;
    }
    .header-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 300; color: white; line-height: 1.1;
      margin-bottom: 1.2rem;
    }
    .header-title em { font-style: italic; color: var(--green-mid); }
    .header-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.5);
      font-weight: 300; line-height: 1.7; margin-bottom: 2rem;
    }
    .header-cta {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--green); color: white;
      padding: 0.9rem 2rem; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
    }
    .header-cta:hover { background: var(--blue); }

    /* Quick nav pills */
    .header-quick-nav {
      display: flex; flex-direction: column; gap: 0.6rem;
    }
    .quick-nav-label {
      font-size: 0.7rem; text-transform: uppercase;
      letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
      margin-bottom: 0.4rem;
    }
    .quick-nav-pill {
      display: flex; align-items: center; gap: 0.8rem;
      padding: 0.7rem 1.1rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0.6rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      cursor: pointer;
    }
    .quick-nav-pill:hover { border-color: var(--green-mid); background: rgba(58,140,110,0.08); }
    .qnp-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
    .qnp-name { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 300; }
    .qnp-arrow { margin-left: auto; color: rgba(255,255,255,0.25); font-size: 0.75rem; }
    .qnp-medical { border-color: rgba(42,110,166,0.3); }
    .qnp-medical .qnp-name { color: var(--blue-mid); }

    /* ── SIGNATURE SERVICE ── */
    .signature-section {
      background: white;
      border-bottom: 1px solid var(--border);
    }
    .signature-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 6rem 2rem;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }
    .sig-label {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--green);
      font-weight: 500; margin-bottom: 1rem;
    }
    .sig-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--green); }
    .sig-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 300; line-height: 1.15;
      margin-bottom: 1.2rem;
    }
    .sig-title em { font-style: italic; color: var(--green); }
    .sig-body {
      font-size: 0.92rem; line-height: 1.8;
      color: var(--ink-soft); font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .sig-meta {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-bottom: 2rem;
    }
    .sig-tag {
      font-size: 0.75rem; padding: 0.35rem 0.9rem;
      border-radius: 100px; border: 1px solid var(--border);
      color: var(--ink-soft); font-weight: 300;
    }
    .sig-tag.green { background: var(--green-light); border-color: var(--green-mid); color: var(--green); }

    /* Benefits list */
    .benefits-list {
      list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
      margin-bottom: 2rem;
    }
    .benefits-list li {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.88rem; color: var(--ink-soft); font-weight: 300; line-height: 1.5;
    }
    .benefits-list li::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--green); flex-shrink: 0; margin-top: 0.45rem;
    }

    /* Expect box */
    .expect-box {
      background: var(--green-light);
      border-left: 3px solid var(--green);
      border-radius: 0 0.75rem 0.75rem 0;
      padding: 1.2rem 1.5rem;
      margin-bottom: 2rem;
    }
    .expect-label {
      font-size: 0.7rem; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--green);
      font-weight: 500; margin-bottom: 0.5rem;
    }
    .expect-text {
      font-size: 0.88rem; color: var(--ink-soft);
      font-weight: 300; line-height: 1.7; font-style: italic;
    }

    .sig-visual {
      position: relative;
    }
    .sig-visual-card {
      aspect-ratio: 4/5;
      border-radius: 2rem;
      background: linear-gradient(160deg, var(--green-light), var(--blue-light));
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .sig-visual-icon { font-size: 5rem; opacity: 0.3; }
    .sig-visual-stat {
      position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
      background: white; border-radius: 1rem;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 10px 40px rgba(26,37,32,0.1);
    }
    .sig-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 300;
      color: var(--green); line-height: 1;
    }
    .sig-stat-label { font-size: 0.78rem; color: var(--ink-muted); margin-top: 0.2rem; }

    .btn-book-service {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--green); color: white;
      padding: 0.9rem 2rem; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .btn-book-service:hover { background: var(--blue); transform: translateY(-1px); }

    /* ── SERVICES GRID ── */
    .services-section {
      padding: 6rem 2rem;
      max-width: 1100px; margin: 0 auto;
    }
    .section-header {
      margin-bottom: 3rem;
    }
    .section-label {
      display: inline-flex; align-items: center; gap: 0.8rem;
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--green);
      font-weight: 500; margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300; line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--green); }

    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5px; background: var(--border);
      border: 1.5px solid var(--border); border-radius: 1.5rem;
      overflow: hidden;
    }

    .svc-card {
      background: white; padding: 2.5rem 2rem;
      transition: background 0.25s;
      display: flex; flex-direction: column;
    }
    .svc-card:hover { background: var(--green-light); }

    .svc-icon-wrap {
      width: 3rem; height: 3rem; border-radius: 50%;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: 1.5rem;
      transition: background 0.25s;
    }
    .svc-card:hover .svc-icon-wrap { background: white; }

    .svc-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 300;
      margin-bottom: 0.5rem;
    }
    .svc-duration {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--ink-muted);
      font-weight: 500; margin-bottom: 0.8rem;
    }
    .svc-desc {
      font-size: 0.85rem; line-height: 1.7;
      color: var(--ink-soft); font-weight: 300;
      margin-bottom: 1rem; flex: 1;
    }
    .svc-best-for {
      font-size: 0.75rem; color: var(--ink-muted);
      font-weight: 400; margin-bottom: 1.2rem;
    }
    .svc-best-for span { color: var(--green); font-weight: 500; }
    .svc-link {
      font-size: 0.78rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--green);
      text-decoration: none; font-weight: 500;
      display: flex; align-items: center; gap: 0.4rem;
      transition: gap 0.2s;
    }
    .svc-link:hover { gap: 0.7rem; }

    /* Coming soon card */
    .svc-card.coming-soon {
      background: var(--white);
      border: 2px dashed var(--border) !important;
      opacity: 0.6;
    }
    .svc-card.coming-soon:hover { background: var(--white); opacity: 0.8; }
    .coming-soon-badge {
      display: inline-block;
      font-size: 0.65rem; text-transform: uppercase;
      letter-spacing: 0.12em; font-weight: 500;
      color: var(--ink-muted); border: 1px solid var(--border);
      padding: 0.2rem 0.7rem; border-radius: 100px;
      margin-bottom: 1rem;
    }

    /* ── COMPARISON TABLE ── */
    .comparison-section {
      background: var(--ink); padding: 6rem 2rem;
    }
    .comparison-inner { max-width: 1100px; margin: 0 auto; }
    .comparison-section .section-label { color: var(--green-mid); }
    .comparison-section .section-title { color: white; margin-bottom: 2.5rem; }
    .comparison-section .section-title em { color: var(--green-mid); }

    .comp-table {
      width: 100%; border-collapse: collapse;
      font-size: 0.85rem;
    }
    .comp-table th {
      text-align: left; padding: 0.8rem 1.2rem;
      font-size: 0.7rem; text-transform: uppercase;
      letter-spacing: 0.12em; font-weight: 500;
      color: rgba(255,255,255,0.4);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .comp-table td {
      padding: 1rem 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.7); font-weight: 300;
      vertical-align: middle;
    }
    .comp-table tr:last-child td { border-bottom: none; }
    .comp-table tr:hover td { background: rgba(255,255,255,0.03); }
    .comp-name { font-weight: 500; color: white; }
    .comp-intensity {
      display: flex; gap: 3px;
    }
    .intensity-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
    }
    .intensity-dot.filled { background: var(--green); }
    .comp-price { color: var(--green-mid); font-weight: 400; }
    .comp-book-btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.75rem; color: var(--green-mid);
      text-decoration: none; font-weight: 500;
      transition: color 0.2s;
    }
    .comp-book-btn:hover { color: white; }

    /* ── MEDICAL SERVICES ── */
    .medical-section {
      padding: 6rem 2rem;
      max-width: 1100px; margin: 0 auto;
    }
    .medical-header-wrap {
      display: flex; align-items: flex-start;
      gap: 1rem; margin-bottom: 2.5rem;
    }
    .medical-badge-large {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--medical-light);
      border: 1px solid var(--blue-mid);
      color: var(--medical); padding: 0.4rem 1rem;
      border-radius: 100px; font-size: 0.75rem;
      font-weight: 500; letter-spacing: 0.06em;
      white-space: nowrap; margin-top: 0.4rem;
    }
    .medical-disclaimer {
      background: var(--medical-light);
      border: 1px solid var(--blue-mid);
      border-radius: 0.75rem; padding: 1rem 1.5rem;
      font-size: 0.82rem; color: var(--medical);
      font-weight: 300; line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .medical-disclaimer strong { font-weight: 500; }

    .medical-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .medical-card {
      border: 1.5px solid var(--blue-mid);
      border-radius: 1.5rem; padding: 2.5rem 2rem;
      background: white; position: relative;
      overflow: hidden; transition: box-shadow 0.2s;
    }
    .medical-card:hover { box-shadow: 0 10px 40px rgba(42,110,166,0.1); }
    .medical-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--green));
    }
    .medical-card-icon {
      font-size: 2rem; margin-bottom: 1.2rem; display: block;
    }
    .medical-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300;
      margin-bottom: 0.4rem; color: var(--ink);
    }
    .medical-card-subtitle {
      font-size: 0.75rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--medical);
      font-weight: 500; margin-bottom: 1rem;
    }
    .medical-card-body {
      font-size: 0.88rem; line-height: 1.8;
      color: var(--ink-soft); font-weight: 300;
      margin-bottom: 1.5rem;
    }
    .medical-card-points {
      list-style: none; display: flex;
      flex-direction: column; gap: 0.5rem;
      margin-bottom: 1.8rem;
    }
    .medical-card-points li {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 0.83rem; color: var(--ink-soft);
      font-weight: 300; line-height: 1.5;
    }
    .medical-card-points li::before {
      content: ''; width: 5px; height: 5px;
      border-radius: 50%; background: var(--blue);
      flex-shrink: 0; margin-top: 0.45rem;
    }
    .medical-whatsapp-btn {
      display: flex; align-items: center; justify-content: center;
      gap: 0.6rem; background: #25D366; color: white;
      padding: 0.9rem 1.5rem; border-radius: 100px;
      font-size: 0.85rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
      width: 100%;
    }
    .medical-whatsapp-btn:hover { background: #1ebe5d; }
    .wa-icon { width: 1rem; height: 1rem; fill: white; flex-shrink: 0; }

    /* ── QUIZ ── */
    .quiz-section {
      padding: 6rem 2rem;
      background: var(--green-light);
    }
    .quiz-inner { max-width: 680px; margin: 0 auto; text-align: center; }
    .quiz-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 300; margin-bottom: 0.6rem;
    }
    .quiz-title em { font-style: italic; color: var(--green); }
    .quiz-sub {
      font-size: 0.9rem; color: var(--ink-soft);
      font-weight: 300; margin-bottom: 3rem; line-height: 1.6;
    }

    .quiz-card {
      background: white; border-radius: 1.5rem;
      padding: 2.5rem; text-align: left;
      box-shadow: 0 10px 40px rgba(26,37,32,0.08);
    }
    .quiz-step { display: none; }
    .quiz-step.active { display: block; }

    .quiz-q-num {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.15em; color: var(--ink-muted);
      font-weight: 500; margin-bottom: 0.6rem;
    }
    .quiz-q-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300;
      margin-bottom: 1.5rem; line-height: 1.3;
    }
    .quiz-options {
      display: flex; flex-direction: column; gap: 0.6rem;
      margin-bottom: 1.5rem;
    }
    .quiz-opt {
      display: flex; align-items: center; gap: 0.8rem;
      padding: 0.9rem 1.1rem;
      border: 1.5px solid var(--border); border-radius: 0.75rem;
      cursor: pointer; transition: border-color 0.2s, background 0.2s;
      font-size: 0.88rem; color: var(--ink-soft); font-weight: 300;
    }
    .quiz-opt:hover { border-color: var(--green); background: var(--green-light); color: var(--ink); }
    .quiz-opt.selected { border-color: var(--green); background: var(--green-light); color: var(--green); font-weight: 400; }
    .quiz-opt-icon { font-size: 1.1rem; width: 1.5rem; text-align: center; }

    .quiz-progress {
      display: flex; gap: 0.4rem; margin-bottom: 1.5rem;
    }
    .quiz-prog-dot {
      flex: 1; height: 3px; border-radius: 100px;
      background: var(--border); transition: background 0.3s;
    }
    .quiz-prog-dot.done { background: var(--green); }

    /* Result */
    .quiz-result { display: none; }
    .quiz-result.active { display: block; }
    .result-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; text-align: center; }
    .result-label {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.15em; color: var(--green);
      font-weight: 500; text-align: center; margin-bottom: 0.5rem;
    }
    .result-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300;
      text-align: center; margin-bottom: 0.8rem;
    }
    .result-body {
      font-size: 0.88rem; color: var(--ink-soft);
      font-weight: 300; line-height: 1.7;
      text-align: center; margin-bottom: 2rem;
    }
    .result-actions {
      display: flex; gap: 0.8rem; flex-wrap: wrap;
    }
    .result-btn-primary {
      flex: 1; display: flex; align-items: center;
      justify-content: center; gap: 0.5rem;
      background: var(--green); color: white;
      padding: 0.9rem; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
    }
    .result-btn-primary:hover { background: var(--blue); }
    .result-btn-secondary {
      flex: 1; display: flex; align-items: center;
      justify-content: center;
      background: none; color: var(--ink-soft);
      padding: 0.9rem; border-radius: 100px;
      font-size: 0.85rem; border: 1.5px solid var(--border);
      cursor: pointer; font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s, color 0.2s;
    }
    .result-btn-secondary:hover { border-color: var(--green); color: var(--green); }

    /* ── FAQ ── */
    .faq-section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
    .faq-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; border: 1px solid var(--border);
      border-radius: 1.5rem; overflow: hidden;
    }
    .faq-item {
      padding: 1.8rem 2rem;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      cursor: pointer; transition: background 0.2s;
    }
    .faq-item:nth-child(even) { border-right: none; }
    .faq-item:nth-last-child(-n+2) { border-bottom: none; }
    .faq-item:hover { background: var(--green-light); }
    .faq-q {
      font-size: 0.9rem; font-weight: 500;
      color: var(--ink); margin-bottom: 0.6rem;
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 1rem;
    }
    .faq-toggle { color: var(--green); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.2s; }
    .faq-a {
      font-size: 0.85rem; color: var(--ink-soft);
      font-weight: 300; line-height: 1.7;
      display: none;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }

    /* ── BOTTOM CTA ── */
    .bottom-cta {
      margin: 0 2rem 6rem;
      max-width: 1100px; margin-left: auto; margin-right: auto;
      margin-bottom: 6rem;
      background: var(--ink); border-radius: 2rem;
      padding: 5rem 4rem;
      display: grid; grid-template-columns: 1fr auto;
      gap: 4rem; align-items: center;
      position: relative; overflow: hidden;
    }
    .bottom-cta::before {
      content: ''; position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(58,140,110,0.12);
      right: -80px; top: -80px;
    }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300; color: white; line-height: 1.2;
      position: relative; z-index: 1;
    }
    .cta-title em { font-style: italic; color: var(--green-mid); }
    .cta-sub {
      font-size: 0.88rem; color: rgba(255,255,255,0.45);
      font-weight: 300; margin-top: 0.6rem;
      position: relative; z-index: 1;
    }
    .cta-actions {
      display: flex; flex-direction: column;
      gap: 0.8rem; flex-shrink: 0;
      position: relative; z-index: 1;
    }
    .cta-btn-primary {
      background: var(--green); color: white;
      padding: 1rem 2rem; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; text-align: center;
      transition: background 0.2s;
    }
    .cta-btn-primary:hover { background: var(--blue); }
    .cta-btn-wa {
      background: #25D366; color: white;
      padding: 1rem 2rem; border-radius: 100px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; text-align: center;
      transition: background 0.2s;
      display: flex; align-items: center;
      justify-content: center; gap: 0.5rem;
    }
    .cta-btn-wa:hover { background: #1ebe5d; }

    /* ── REVEAL ANIMATION ── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── COMPARISON TABLE ROW HOVER ── */
.comp-row:hover td { background: rgba(255,255,255,0.05); cursor: pointer; }
.comp-table-wrap { overflow-x: auto; }

/* ── MOBILE COMPARISON CARDS ── */
.comp-mobile-cards { display: none; }
.comp-mobile-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.8rem;
}
.comp-mobile-card:hover { background: rgba(58,140,110,0.12); }
.cmc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.cmc-name {
  font-weight: 500;
  color: white;
  font-size: 0.92rem;
}
.cmc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--green-mid);
}
.cmc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cmc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.cmc-val {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.cmc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cmc-learn {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.cmc-book {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green-mid);
  text-decoration: none;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .comp-table-wrap { display: none; }
  .comp-mobile-cards { display: block; }
}

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .page-header { padding: 7rem 1.5rem 3rem; }
      .header-inner { grid-template-columns: 1fr; gap: 2rem; }
      .header-quick-nav { flex-direction: row; flex-wrap: wrap; }
      .quick-nav-pill { flex: 1; min-width: 140px; }
      .signature-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
      .sig-visual { display: none; }
      .services-section { padding: 4rem 1.5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .comparison-section { padding: 4rem 1.5rem; overflow-x: auto; }
      .comp-table { min-width: 600px; }
      .medical-section { padding: 4rem 1.5rem; }
      .medical-grid { grid-template-columns: 1fr; }
      .quiz-section { padding: 4rem 1.5rem; }
      .faq-section { padding: 4rem 1.5rem; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-item { border-right: none; }
      .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
      .faq-item:last-child { border-bottom: none; }
      .bottom-cta { padding: 3rem 1.5rem; grid-template-columns: 1fr; gap: 2rem; margin: 0 1.5rem 4rem; }
    }