@font-face {
    font-family: 'Marcellus-Regular';
    src: url('../fonts/Marcellus-Regular.woff2') format('woff2'),url('../fonts/Marcellus-Regular.ttf') format('truetype');
    font-display: swap
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/monserat/Montserrat-Medium.woff2') format('woff2'),url('../fonts/monserat/Montserrat-Medium.ttf') format('truetype');
    font-display: swap
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/monserat/Montserrat-SemiBold.woff2') format('woff2'),url('../fonts/monserat/Montserrat-SemiBold.ttf') format('truetype');
    font-display: swap
}



/* ============================================================
   DESIGN TOKENS — "Clinical Trust + Modern Warmth"
   ============================================================ */
:root {
  --c-ink: #0e2a2c; /* deep medical teal-black */
  --c-ink-2: #1b4348;
  --c-primary: #0f4c46; /* primary teal */
  --c-primary-2: #0a3d38;
  --c-accent: #d9573d; /* warm coral CTA */
  --c-accent-2: #c24426;
  --c-gold: #b8893e; /* credential gold */
  --c-sage: #7ba89a;
  --c-sage-soft: #e5efea;
  --c-cream: #faf6ee; /* warm background */
  --c-cream-2: #f4ecdd;
  --c-paper: #fdfbf5;
  --c-line: #e0d6c2;
  --c-line-soft: #efe7d6;
  --c-muted: #5a6b6a;
  --c-muted-2: #7a8786;
  --c-success: #2e7d5b;
  --c-warn: #b8893e;



  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-1: 0 1px 2px rgba(14, 42, 44, 0.05),
    0 4px 14px rgba(14, 42, 44, 0.06);
  --shadow-2: 0 4px 12px rgba(14, 42, 44, 0.08),
    0 16px 40px rgba(14, 42, 44, 0.1);
  --shadow-3: 0 24px 60px rgba(14, 42, 44, 0.18);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--c-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--c-accent);
}
button {

  cursor: pointer;
  border: 0;
  background: none;
}


h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
h4 {
  font-size: 1.1rem;

  font-weight: 700;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
}

.container {
 width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin: 0 auto;
}
.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--c-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(217, 87, 61, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  background: var(--c-accent-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(217, 87, 61, 0.45);
}
.btn-dark {
  background: var(--c-ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--c-primary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
}
.btn-ghost:hover {
  background: var(--c-paper);
  border-color: var(--c-ink);
}
.btn-light {
  background: #fff;
  color: var(--c-ink);
  box-shadow: var(--shadow-1);
}
.btn-light:hover {
  background: var(--c-cream);
}

.btn-common {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.btn-primary{
  color: #fff !important;
}
/* Pulse dot for live signals */
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22a06b;
  box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 160, 107, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 160, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 160, 107, 0);
  }
}

/* ============================================================
   HEADER (lightweight — keep brand consistency, footer below
   pulls from existing site nav server-side as before)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(250, 246, 238, 0.86);
  border-bottom: 1px solid var(--c-line-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 38px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--c-ink);
  font-weight: 500;
  font-size: 0.94rem;
}
.nav-links a:hover {
  color: var(--c-accent);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }
}

/* Trust strip on top */
.trust-strip {
  background: var(--c-ink);
  color: #e5efea;
  font-size: 0.78rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.trust-strip-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
 
  background: radial-gradient(
      80% 60% at 12% 10%,
      rgba(123, 168, 154, 0.22),
      transparent 60%
    ),
    radial-gradient(70% 60% at 95% 0%, rgba(217, 87, 61, 0.12), transparent 60%),
    var(--c-cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -40% -40% -40%;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(15, 76, 70, 0.08),
    transparent 70%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--c-line);
    font-size: 12px;
    font-weight: 600;
    color: var(--c-ink-2);
    box-shadow: var(--shadow-1);
    background: var(--o5);
    border: 1.5px solid var(--o4);
    color: var(--o1);
}
.hero-tag .pulse {
  margin-right: 2px;
}

.hero h1 {

  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero h1 em {
    font-style: italic;
    color: var(--c-primary);
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-weight: 600;
}
.hero-sub{
      font-family: Montserrat-Medium;
}
.btn-wa:hover {

    color: #fff;
}
.hero-features {
 
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: var(--c-ink-2);
  font-weight: 500;
}
.hero-features li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-features svg {
  flex-shrink: 0;
  color: var(--c-primary);
}
.hero-sub{
  font-size: 16px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--c-muted);
}
.hero-cta-meta strong {
  color: var(--c-ink);
}

/* Hero stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 38px;
  padding: 22px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  max-width: 560px;
}
.hero-stats .stat {
  padding: 0 18px;
}
.hero-stats .stat:first-child {
  padding-left: 0;
}
.hero-stats .stat:not(:last-child) {
  border-right: 1px solid var(--c-line);
}
.stat-num {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num small {
  font-size: 1rem;
  vertical-align: top;
  margin-left: 2px;
  color: var(--c-primary);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Hero visual card stack */
.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-visual .card-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: #fff;
}
.hero-visual .card-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-overlay-card {
  position: absolute;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  max-width: 280px;
}
.hero-overlay-1 {
  left: -22px;
  top: 38px;
}
.hero-overlay-2 {
  right: -12px;
  bottom: 62px;
}
.hero-overlay-3 {
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}
.hero-overlay-card .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--c-sage-soft);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-overlay-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-ink);
}
.hero-overlay-card span {
  color: var(--c-muted);
  font-size: 0.78rem;
}

/* Live activity ticker on hero */
.live-ticker {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 0.82rem;
  color: var(--c-ink-2);
}

/* ============================================================
   SECTION FRAMEWORK
   ============================================================ */
section {
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}
.section-cream {
  background: var(--c-cream);
}
.section-paper {
  background: var(--c-paper);
}
.section-ink {
  background: var(--c-ink);
  color: #efe7d6;
}
.section-ink h1,
.section-ink h2,
.section-ink h3 {
  color: #faf6ee;
}
.section-ink .eyebrow {
  color: #d9573d;
}
.section-ink .eyebrow::before {
  background: #d9573d;
}
.section-sage {
  background: var(--c-sage-soft);
}

.section-head {
  margin-bottom: 48px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-top: 8px;
}

/* ============================================================
   CONDITIONS GRID
   ============================================================ */
.conditions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cond-card {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  padding: 20px;
  border-radius: var(--r-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cond-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-primary);
}
.cond-card .ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--c-sage-soft);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cond-card h4 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}
.cond-card p {
  margin: 0;
  font-size: 0.83rem;

}

.btn-teal:hover {

    color: #fff;
}

.compliance .item small{
	   font-family: Montserrat-Medium;

}

/* ============================================================
   SYMPTOM TABLE — Symptom → Cause → GP Action
   ============================================================ */
.sym-table {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-1);
}
.sym-table table {
  width: 100%;
  border-collapse: collapse;
}
.sym-table th,
.sym-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 0.95rem;
  vertical-align: top;
}
.sym-table th {
  background: var(--c-ink);
  color: #faf6ee;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.sym-table tr:last-child td {
  border-bottom: 0;
}
.sym-table tr:hover td {
  background: var(--c-cream-2);
}
.sym-table .sym {
  font-weight: 600;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: 1.05rem;
}
.sym-table .cause {
  color: var(--c-muted-2);
}
.sym-table .action {
  color: var(--c-primary);
  font-weight: 500;
}

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step .num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-style: italic;
}
.step h4 {
  margin-bottom: 6px;
}
.step p {
  margin: 0;
  color: var(--c-muted);
  font-size: 0.92rem;
}


.discnt_ofer strong {
    color: #fff;
}

/* ============================================================
   DOCTORS GRID — preserves exact backend output structure.
   The backend continues to render each doctor as
     <img>, <h3>, qualifications, etc., inside a wrapper.
     We wrap the loop output in `.doctors-list` and let CSS do the rest.
   ============================================================ */
.doctors-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.toolbar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  font-size: 0.82rem;
  color: var(--c-ink-2);
  font-weight: 500;
}
.filter-chip.active {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.toolbar-meta {
  font-size: 0.84rem;
  color: var(--c-muted);
}
.toolbar-meta strong {
  color: var(--c-ink);
}

.doctors-list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

/* The doctor card structure mirrors the backend's existing markdown/HTML loop.
   The backend currently renders each doctor as a sequence of:
     <img>, <h3>, paragraphs/lists for qualification, expertise, language, slot,
     and two anchor CTAs (View Profile / Book Session).
   We wrap that loop in a parent `.doctors-list > article.doc-card` with
   semantic class hooks. Backend just adds `class="doc-card"` to its container. */

.doc-card {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-primary);
}
.doc-card::before {
  content: "✓ Verified";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-sage-soft);
  color: var(--c-primary);
}

/* Style the IMAGE the backend already outputs */
.doc-card > img,
.doc-card .doc-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-cream);
  box-shadow: 0 0 0 1px var(--c-line);
  margin-bottom: 14px;
}

/* Style the H3 and paragraphs */
.doc-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 4px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.doc-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--c-muted);
}
.doc-card p:nth-of-type(1) {
  color: var(--c-primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.doc-card p:nth-of-type(2) {
  font-weight: 600;
  color: var(--c-ink-2);
  font-size: 0.88rem;
  margin-top: 4px;
}
.doc-card p:nth-of-type(3) {
  font-size: 0.83rem;
  color: var(--c-muted);
  margin-bottom: 14px;
}

/* lists (Expertise / Language / Session Mode lists) */
.doc-card ul {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}
.doc-card ul li {
  font-size: 0.82rem;
  color: var(--c-ink-2);
  line-height: 1.5;
}

/* Ratings inline (rendered by backend if available, else fallback) */
.doc-card .doc-rating {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--c-ink-2);
  margin-top: 6px;
}
.doc-card .doc-rating .stars {
  color: #d9a441;
  letter-spacing: 0.04em;
}

/* Slot pill */
.doc-card .doc-slot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-sage-soft);
  color: var(--c-primary);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 10px 0 14px;
}
.doc-card .doc-slot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a06b;
  animation: pulse 1.8s infinite;
}

/* CTA links */
.doc-card a {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}
.doc-card a:first-of-type {
  border: 1.5px solid var(--c-line);
  color: var(--c-ink-2);
  margin-right: 8px;
}
.doc-card a:first-of-type:hover {
  border-color: var(--c-ink);
  color: var(--c-ink);
}
.doc-card a:last-of-type {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 87, 61, 0.3);
}
.doc-card a:last-of-type:hover {
  background: var(--c-accent-2);
  color: #fff;
}

/* Container for the two CTAs */
.doc-card .doc-cta-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

/* Hide the duplicate "Next Available slot" block that backend outputs twice */
.doc-card .doc-slot ~ .doc-slot,
.doc-card .doc-slot + h6,
.doc-card h6 + .doc-slot {
  display: none !important;
}

/* ============================================================
   GP vs SPECIALIST DECISION
   ============================================================ */
.decision-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .decision-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.decision-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--c-line-soft);
  position: relative;
  overflow: hidden;
}
.decision-card.gp {
  background: linear-gradient(135deg, var(--c-sage-soft), #fff 50%);
  border-color: var(--c-sage);
}
.decision-card h3 {
  margin-bottom: 14px;
}
.decision-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.decision-card li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--c-line-soft);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--color-4);
    line-height: 22px;
}
.decision-card li:last-child {
  border-bottom: 0;
}
.decision-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-primary);
}
.decision-card.specialist li svg {
  color: var(--c-accent);
}

/* ============================================================
   PROTOCOLS — clinical
   ============================================================ */
.proto-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.proto-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-soft);
  position: relative;
}
.proto-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  background: var(--c-cream-2);
  color: var(--c-ink-2);
  padding: 4px 10px;
  border-radius: 6px;
}
.proto-card h4 {
  margin-bottom: 8px;
  padding-right: 80px;
}
.proto-card ol {
  padding-left: 18px;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.proto-card ol li {
  padding: 3px 0;
}

/* ============================================================
   PRICING COMPARE
   ============================================================ */
.price-compare {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .price-compare {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.price-card {
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line-soft);
}
.price-card.featured {
  background: var(--c-ink);
  color: #faf6ee;
  border-color: var(--c-ink);
  transform: scale(1.03);
  box-shadow: var(--shadow-3);
}
.price-card.featured h4 {
  color: #faf6ee;
}
.price-card .price {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  margin: 8px 0 16px;
}
.price-card .price small {
  font-size: 0.95rem;
  color: var(--c-muted);
  font-weight: 400;
}
.price-card.featured .price small {
  color: var(--c-sage);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 0.92rem;
}
.price-card ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-line-soft);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.price-card.featured ul li {
  border-color: rgba(255, 255, 255, 0.12);
}
.price-card .badge-best {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.test-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid var(--c-line-soft);
  display: flex;
  flex-direction: column;
}
.test-card .stars {
  color: #d9a441;
  letter-spacing: 0.05em;
  font-size: 1rem;
  margin-bottom: 10px;
}
.test-card .quote {
  font-family: var(--f-display);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--c-ink);
  margin: 0 0 16px;
  flex: 1;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.test-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
}
.test-card .author strong {
  color: var(--c-ink);
  display: block;
  font-size: 0.92rem;
}

/* ============================================================
   USE CASES (segments)
   ============================================================ */
.segments {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.segment {
  position: relative;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--c-cream-2), #fff 60%);
  border: 1px solid var(--c-line-soft);
}
.segment .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--c-ink);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.segment h4 {
  margin-bottom: 8px;
}
.segment ul {
  padding-left: 18px;
  margin: 0;
  color: var(--c-muted);
  font-size: 0.9rem;
}
.segment ul li {
  padding: 3px 0;
}

/* ============================================================
   ECOSYSTEM FLOW
   ============================================================ */
.ecosystem {
  background: linear-gradient(180deg, var(--c-cream), var(--c-paper));
  padding: 48px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
}
.eco-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
  align-items: stretch;
}
@media (min-width: 780px) {
  .eco-flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}
.eco-step {
  position: relative;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  text-align: center;
}
@media (min-width: 780px) {
  .eco-step {
    border-radius: 0;
    border-right: 0;
  }
  .eco-step:first-child {
    border-top-left-radius: var(--r-md);
    border-bottom-left-radius: var(--r-md);
  }
  .eco-step:last-child {
    border-top-right-radius: var(--r-md);
    border-bottom-right-radius: var(--r-md);
    border-right: 1px solid var(--c-line-soft);
  }
  .eco-step:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
  }
}
.eco-step .ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--c-sage-soft);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.eco-step strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.eco-step span {
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* ============================================================
   OUTCOMES BAND (numbers)
   ============================================================ */
.outcomes {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-ink);
  color: #faf6ee;
}
.outcomes .out {
  padding: 32px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.outcomes .out:last-child {
  border-right: 0;
}
.out-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-accent);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.out-label {
  font-size: 0.86rem;
  color: #c8d4d0;
  line-height: 1.4;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: grid;
  gap: 14px;

}
.faq {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-primary);
  transition: transform 0.2s ease;
}
.faq[open] summary::after {
  content: "−";
}
.faq[open] {
  box-shadow: var(--shadow-1);
}
.faq .faq-body {
  padding: 0 24px 22px;
  color: var(--c-muted);
  border-top: 1px solid var(--c-line-soft);
  padding-top: 16px;
}

/* ============================================================
   QUICK ANSWERS / KNOWLEDGE BLOCKS (AI-readable)
   ============================================================ */
.qa-block {
  background: #fff;
  border-left: 4px solid var(--c-accent);
  padding: 22px 26px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--shadow-1);
  margin: 24px 0;
}
.qa-block .qa-tag {
 
  font-size: 0.7rem;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.qa-block h4 {
  margin: 6px 0 10px;

  font-weight: 500;
  font-size: 1.18rem;
}
.qa-block p {
  margin: 0;

  font-size: 0.96rem;
}

/* ============================================================
   INTERNAL LINKS — RELATED SPECIALISTS / CONTENT HUB
   ============================================================ */
.related-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.related-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  color: var(--c-ink);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s, transform 0.2s;
}
.related-grid a:hover {
  border-color: var(--c-primary);
  transform: translateY(-1px);
  color: var(--c-primary);
}
.related-grid a img {
  width: 18px;
  height: 18px;
}

.content-hub {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 22px;
}
.content-hub a {
  padding: 22px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  color: var(--c-ink);
}
.content-hub a:hover {
  border-color: var(--c-primary);
  color: var(--c-ink);
}
.content-hub a span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.content-hub a strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.08rem;
}

/* ============================================================
   MEDICAL REVIEWER STRIP (E-E-A-T signal)
   ============================================================ */
.reviewer {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-1);
  max-width: 680px;
}
.reviewer img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-cream);
}
.reviewer .meta span {
  display: block;
  font-size: 0.74rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.reviewer .meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.18rem;
  color: var(--c-ink);
  margin-top: 2px;
}
.reviewer .meta small {
  display: block;
  font-size: 0.86rem;
  color: var(--c-muted-2);
  margin-top: 2px;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 10px 16px;
  display: none;
  box-shadow: 0 -8px 30px rgba(14, 42, 44, 0.1);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.sticky-cta-meta {
  flex: 1;
  font-size: 0.78rem;
  color: var(--c-muted);
}
.sticky-cta-meta strong {
  display: block;
  font-family: var(--f-display);
  color: var(--c-ink);
  font-size: 1rem;
}
.sticky-cta .btn {
  flex-shrink: 0;
}
@media (max-width: 780px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 84px;
  }
}

/* ============================================================
   MISC — feature pills, dividers, helpers
   ============================================================ */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-ink-2);
}
.pill svg {
  color: var(--c-primary);
}
.pill.dark {
  background: var(--c-ink);
  color: #faf6ee;
  border-color: var(--c-ink);
}

.divider {
  height: 1px;
  background: var(--c-line);
  margin: 64px 0;
}

.split-2 {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.split-2 img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bullet-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid var(--c-line-soft);
  color: var(--c-ink-2);
  font-size: 0.96rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-sage-soft);
  box-shadow: inset 0 0 0 4px var(--c-primary);
}

/* Trust / compliance grid */
.compliance {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.compliance .item {
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}
.compliance .item .ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-cream-2);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance .item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--c-ink);
}
.compliance .item small {
  font-size: 0.76rem;
  color: var(--c-muted);
}

/* Full-bleed photo wash */
.photo-wash {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.photo-wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 76, 70, 0.55),
    rgba(14, 42, 44, 0.1)
  );
}

/* CTA panel */
.cta-panel {
  background: linear-gradient(135deg, var(--c-ink), var(--c-primary));
  border-radius: var(--r-xl);
  padding: 48px;
  color: #faf6ee;
  position: relative;
  overflow: hidden;
}
.cta-panel h2 {
  color: #faf6ee;
  max-width: 580px;
}
.cta-panel p {
  color: #c8d4d0;
  max-width: 560px;
  margin-bottom: 24px;
}
.cta-panel::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 87, 61, 0.18), transparent 70%);
}

/* Symptom checker widget */
.symptom-widget {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-2);
  margin-top: 32px;
}
.sym-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}
.sym-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--c-cream-2);
  color: var(--c-ink-2);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sym-chip:hover {
  background: var(--c-ink);
  color: #fff;
}

/* Footer trust */
.legal-note {
  font-size: 0.78rem;
  color: var(--c-muted-2);
  line-height: 1.6;
  border-left: 3px solid var(--c-line);
  padding: 12px 18px;
  background: var(--c-paper);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-top: 28px;
}

/* Background lattice for ink section */
.bg-lattice {
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0
  );
  background-size: 22px 22px;
}

/* Print / accessibility / focus */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   SKIP TO CONTENT (a11y + SEO)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 1000;
  background: var(--c-ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.88rem;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ============================================================
   FLOATING BUTTONS  (WhatsApp + Call)
   ============================================================ */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 780px) {
  .float-actions {
    bottom: 90px;
    right: 14px;
  }
}
.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14, 42, 44, 0.25);
  transition: transform 0.2s ease;
  position: relative;
}
.float-btn:hover {
  transform: scale(1.08);
}
.float-btn.wa {
  background: #25d366;
}
.float-btn.call {
  background: var(--c-ink);
}
.float-btn img {
  width: 26px;
  height: 26px;
}
.float-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-ink);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.float-btn:hover::after {
  opacity: 1;
}
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
.float-btn.wa .float-pulse {
  background: rgba(37, 211, 102, 0.45);
}
.float-btn.call .float-pulse {
  background: rgba(15, 76, 70, 0.35);
}
@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ============================================================
   TOC / On-page nav (sitelinks signal)
   ============================================================ */
.page-toc {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 18px;
  margin: 30px auto 32px;
  box-shadow: var(--shadow-1);
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.page-toc strong {
 font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-ink);
  padding-right: 12px;
  border-right: 1px solid var(--c-line);
  margin-right: 6px;
}
.page-toc a {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t1);
    background: var(--c-cream);
    font-family: Montserrat-SemiBold;
}
.page-toc a:hover {
    background: var(--o2);
    color: #fff;
}
.page-toc a[aria-current="true"] {
  background: var(--o2);
  color: #fff;
}

/* ============================================================
   PRESS BAND
   ============================================================ */
.press-band {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.press-band h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 18px;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 15px;
  opacity: 0.78;
}
.press-logos span {
font-family: Montserrat-SemiBold;
    font-weight: 500;
    font-size: 15px;
    color: var(--body);
    letter-spacing: -0.01em;
    /* filter: grayscale(100%); */
    background: #fff1de;
    padding: 10px 14px;
    border-radius: 100px;
    border: 1px solid #ffdcac;
    font-weight: 500;
}
.press-logos span em {
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.92rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare th,
.compare td {
     padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-line-soft);
}
.compare thead th {
  background: var(--c-ink);
  color: #faf6ee;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare thead th.us {
  background: var(--c-primary);
  color: #faf6ee;
}
.compare thead th.us::before {
  content: "★ ";
  color: #f4c552;
}
.compare tbody td:first-child {
  font-weight: 600;
  color: var(--t1);
}
.compare tbody td.yes {
  color: var(--c-primary);
  font-weight: 600;
}

.compare tbody td.us {
  background: var(--c-sage-soft);
     color: var(--c-success);
  font-weight: 600;
}
.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare th, .compare td {

    color: var(--t1);
}

/* ============================================================
   AWARDS / RECOGNITION
   ============================================================ */
.awards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.award {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
}
.award .yr {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--c-accent);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  flex-shrink: 0;
}
.award strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.award span {
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ============================================================
   HOLISTIC CARE 4-card  (preserved from original page concept)
   ============================================================ */
.holistic {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.holistic-card {
  padding: 30px 26px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-soft);
  position: relative;
}
.holistic-card .hi-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-sage-soft), var(--c-cream-2));
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.holistic-card h4 {
  margin-bottom: 12px;
}
.holistic-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 18px;
}
.holistic-card ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--c-muted);
  padding-left: 20px;
  position: relative;
}
.holistic-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}
.holistic-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-accent);
}

/* ============================================================
   MIND-BODY connection band (preserved from original)
   ============================================================ */
.mb-band {
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-sage-soft));
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .mb-band {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.mb-band h2 {
  margin-bottom: 18px;
}
.mb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mb-list li {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  border-left: 4px solid var(--c-primary);
}
.mb-list strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.mb-list span {
  font-size: 0.88rem;
  color: var(--c-muted);
}

/* ============================================================
   PARTNERS / INSURANCE
   ============================================================ */
.partners {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.partner {
  background: #fff;
  padding: 20px;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  text-align: center;
}
.partner .label {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-ink-2);
  display: block;
  margin-bottom: 4px;
}
.partner small {
  color: var(--c-muted);
  font-size: 0.74rem;
}

/* ============================================================
   CITIES SERVED  (internal links + long-tail)
   ============================================================ */
.cities {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.cities a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  color: var(--c-ink);
  font-size: 0.92rem;
}
.cities a:hover {
  border-color: var(--c-primary);
  transform: translateY(-1px);
  color: var(--c-primary);
}
.cities a strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  display: block;
}
.cities a span {
  font-size: 0.74rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.cities a .ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c-cream);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   GLOSSARY
   ============================================================ */
.glossary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.term {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
  padding: 20px 22px;
}
.term dt {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.term dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-muted-2);
  line-height: 1.5;
}

/* ============================================================
   REFERENCES
   ============================================================ */
.refs {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  padding: 24px 28px;
  border-radius: var(--r-md);
}
.refs ol {
  padding-left: 20px;
  margin: 0;
  counter-reset: r;
}
.refs li {
  padding: 6px 0;
  font-size: 0.86rem;
  color: var(--c-muted);
  line-height: 1.55;
}
.refs li a {
  color: var(--c-primary);
  border-bottom: 1px dotted var(--c-primary);
  word-break: break-word;
}
.refs li a:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--c-paper), var(--c-cream-2));
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
  border: 1px solid var(--c-line);
}
@media (min-width: 880px) {
  .newsletter {
    grid-template-columns: 1.2fr 1fr;
  }
}
.newsletter h3 {
  margin-bottom: 6px;
}
.newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
}
.newsletter input {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font: inherit;
  outline: none;
  color: var(--c-ink);
}
.newsletter .btn {
  padding: 11px 22px;
}
.newsletter small {
  display: block;
  margin-top: 10px;
  color: var(--c-muted);
  font-size: 0.78rem;
}

/* ============================================================
   VIDEO EMBED PLACEHOLDER
   ============================================================ */
.video-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-ink);
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-2);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: #fff;
}
.video-card .play .pbtn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
.video-card:hover .play .pbtn {
  transform: scale(1.08);
}
.video-card .play strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.video-card .play span {
  font-size: 0.85rem;
  opacity: 0.88;
}

/* ============================================================
   EXPERT QUOTE
   ============================================================ */
.expert-quote {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line-soft);
}
.expert-quote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--f-display);
  font-size: 14rem;
  line-height: 1;
  color: var(--c-cream-2);
  pointer-events: none;
  z-index: 0;
}
.expert-quote .qbody {
  position: relative;
  z-index: 1;
}
.expert-quote blockquote {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-ink);
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-style: italic;
}
.expert-quote .author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.expert-quote .author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.expert-quote .author strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.08rem;
}
.expert-quote .author span {
  color: var(--c-muted);
  font-size: 0.84rem;
}

/* ============================================================
   LANGUAGES served
   ============================================================ */
.langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 0.88rem;
  color: var(--c-ink-2);
  font-weight: 500;
}
.lang-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-sage);
}

/* ============================================================
   SEVERITY SELF-CHECK (3-tier triage)
   ============================================================ */
.severity {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.sev {
  padding: 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sev:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.sev .sev-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  align-self: flex-start;
}
.sev h3 {
    font-size: 19px;
    margin: 0;
    line-height: 24px;
}
.sev p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.sev ul {
  padding: 0;
  list-style: none;
  margin: 0;
  flex: 1;
}
.sev ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.sev ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sev .sev-cta {
  margin-top: auto;
}

.sev.green {
  background: #e5efea;
  color: var(--c-primary-2);
}
.sev.green .sev-tag {
  background: #9bcbb1;
  color: #0a3d38;
}
.sev.green ul li::before {
  background: var(--c-primary);
}
.sev.amber {
  background: #fff1de;
  color: #7a4d14;
}
.sev.amber .sev-tag {
  background: #f4c552;
  color: #5a3a0e;
}
.sev.amber ul li::before {
  background: #b8893e;
}
.sev.red {
  background: #fbe3dc;
  color: #8a2818;
}
.sev.red .sev-tag {
  background: #d9573d;
  color: #fff;
}
.sev.red ul li::before {
  background: #c24426;
}

@media (max-width: 780px) {
  .sev:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* ============================================================
   TRUST / PAYMENT BADGES
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  margin-top: 24px;
}
.trust-badges strong {
  font-family: var(--f-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  padding-right: 14px;
  border-right: 1px solid var(--c-line);
  margin-right: 8px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--c-cream);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--c-ink-2);
  font-weight: 600;
}

/* ============================================================
   BOOKING STEPS PREVIEW (mini visual)
   ============================================================ */
.booking-preview {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--c-line);
}
.booking-stages {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.stage {
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid var(--c-line-soft);
}
.stage:last-child {
  border-right: 0;
}
.stage .num-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--f-display);
  font-size: 1rem;
  border: 2px solid var(--c-line);
}
.stage.done .num-dot {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.stage.done .num-dot::before {
  content: "✓";
  font-size: 0.95rem;
}
.stage.done .num-dot span {
  display: none;
}
.stage strong {
  display: block;
  font-size: 0.9rem;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.stage span.t {
  font-size: 0.74rem;
  color: var(--c-muted);
}

@media (max-width: 780px) {
  .stage {
    border-right: 0;
    border-bottom: 1px solid var(--c-line-soft);
  }
  .stage:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   FAMILY DOCTOR positioning band
   ============================================================ */
.family-band {
  background: radial-gradient(
      60% 80% at 100% 0%,
      rgba(184, 137, 62, 0.1),
      transparent
    ),
    var(--c-paper);
  padding: 60px;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.family-band h2 em {
  font-style: italic;
  color: var(--c-gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.family-band .pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}
.family-band .pillar {
  padding: 22px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line-soft);
}
.family-band .pillar strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-ink);
  margin-bottom: 6px;
}
.family-band .pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-muted);
}

@media (max-width: 780px) {
  .family-band {
    padding: 32px 22px;
  }
  .mb-band {
    padding: 30px 22px;
  }
  .ecosystem {
    padding: 24px 18px;
  }
  .newsletter {
    padding: 30px 22px;
  }
  .expert-quote {
    padding: 28px 22px;
  }
  .expert-quote blockquote {
    font-size: 1.15rem;
  }
}

/* ============================================================
   READING PROGRESS BAR (fixed top)
   ============================================================ */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  z-index: 99;
  transition: width 0.15s ease;
  pointer-events: none;
}

/* ============================================================
   AUTHOR BYLINE (top of article)
   ============================================================ */
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin: 24px 0 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 0.84rem;
  color: var(--c-muted);
}
.byline .by {
  display: flex;
  align-items: center;
  gap: 10px;
}
.byline .by img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.byline .by strong {
  color: var(--c-ink);
  font-weight: 600;
}
.byline .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.byline .meta-item svg {
  color: var(--c-primary);
  flex-shrink: 0;
}
.byline .meta-item strong {
  color: var(--c-ink);
  font-weight: 600;
}

/* ============================================================
   TL;DR / KEY TAKEAWAYS BOX
   ============================================================ */
.tldr {
  background: linear-gradient(135deg, var(--c-cream-2), #fff);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  margin: 30px 0;
  position: relative;
}
.tldr .tldr-tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.tldr h3 {
  margin: 6px 0 14px;
  font-size: 1.18rem;
  font-family: var(--f-display);
  font-weight: 600;
}
.tldr ul {
  padding: 0;
  margin: 0;
  list-style: none;
  columns: 1;
  gap: 8px;
}
@media (min-width: 780px) {
  .tldr ul {
    columns: 2;
    column-gap: 32px;
  }
}
.tldr ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--c-ink-2);
  break-inside: avoid;
}
.tldr ul li::before {
  content: "→";
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--c-accent);
  font-weight: 700;
}

/* ============================================================
   HEALTH CALCULATORS
   ============================================================ */
.calc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.calc {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.calc h4 {
  margin-bottom: 8px;
}
.calc p {
  font-size: 0.86rem;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.calc-fields {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.calc-fields label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-fields input,
.calc-fields select {
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--c-ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.calc-fields input:focus,
.calc-fields select:focus {
  border-color: var(--c-primary);
}
.calc-result {
  margin-top: auto;
  padding: 14px;
  background: var(--c-cream);
  border-radius: var(--r-sm);
  text-align: center;
}
.calc-result .val {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-ink);
}
.calc-result .lbl {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-top: 2px;
}
.calc-result.danger {
  background: #ffe9e1;
  color: var(--c-accent);
}
.calc-result.danger .val {
  color: var(--c-accent-2);
}
.calc-result.warn {
  background: #fff3dc;
}
.calc-result.warn .val {
  color: #a06a1f;
}
.calc-result.ok {
  background: var(--c-sage-soft);
}
.calc-result.ok .val {
  color: var(--c-primary);
}
.calc-cta {
  margin-top: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--c-accent);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.share-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 0;
  margin: 30px 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 0.86rem;
  color: var(--c-muted);
}
.share-row strong {
  color: var(--c-ink);
  margin-right: 6px;
  font-family: var(--f-display);
  font-weight: 500;
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-2);
  transition: all 0.2s ease;
}
.share-btn:hover {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
  transform: translateY(-2px);
}

/* ============================================================
   ADVISORY BOARD
   ============================================================ */
.advisory {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.advisor {
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  text-align: center;
}
.advisor img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--c-cream);
  box-shadow: 0 0 0 1px var(--c-line);
}
.advisor strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.advisor .deg {
  font-size: 0.78rem;
  color: var(--c-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.advisor span {
  display: block;
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ============================================================
   LIVE SOCIAL-PROOF TICKER (toast-style)
   ============================================================ */
.activity-toast {
  position: fixed;
  bottom: 90px;
  left: 18px;
  z-index: 75;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-2);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
  max-width: 280px;
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}
.activity-toast.show {
  transform: translateX(0);
}
.activity-toast .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-sage-soft);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-family: var(--f-display);
}
.activity-toast strong {
  display: block;
  color: var(--c-ink);
  font-size: 0.84rem;
}
.activity-toast span {
  color: var(--c-muted);
  font-size: 0.76rem;
}
@media (max-width: 780px) {
  .activity-toast {
    bottom: 84px;
    left: 8px;
    right: 8px;
    max-width: none;
  }
}

/* ============================================================
   EXIT-INTENT / DISCOUNT RIBBON
   ============================================================ */
.discount-ribbon {
  background: linear-gradient(135deg, var(--c-accent), #e97955);
  color: #fff;
  padding: 14px 0;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.discount-ribbon strong {
  font-family: var(--f-display);
  font-weight: 600;
}
.discount-ribbon code {
  font-family: var(--f-mono);
  background: rgba(0, 0, 0, 0.18);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.86rem;
  margin: 0 4px;
  letter-spacing: 0.05em;
}
.discount-ribbon .x {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  opacity: 0.7;
  cursor: pointer;
}

.out-label {
    
    font-family: Montserrat-Medium;
}


.outcomes .out {
   
    text-align: center;
}

.out-num {
   
    font-size: 26px;
  
}

.why_onlne_pysc .hero-features li strong{
  color: var(--muted);
}


.frm_teen .segments-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    width: 100%;
    margin: auto;
}


.test-card .quote {
font-family: Montserrat-Medium;
    font-size: 15px;
    line-height: 1.45;
    color: var(--muted);
    margin: 0 0 16px;
    flex: 1;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}

.compliance {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cmn_helth .hero-features {
    margin-bottom: 20px;
  
    display: initial;
}

.cmn_helth .hero-features li {

    margin-bottom: 10px;
}

.psycho-band li strong {
    font-weight: 700;
    color: var(--c-paper);
}


.city_reach_sec{
  background:#fff;
  position:relative;
  overflow:hidden;
  padding:90px 0;
}

.city_reach_sec::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background:rgba(255,255,255,.45);
  border-radius:50%;
  top:-180px;
  right:-120px;
  filter:blur(10px);
}

.city_head{
  text-align:center;
  margin-bottom:55px;
}

.city_head h2{

  line-height:1.15;
  margin-bottom:16px;
}

.city_head p{
  max-width:760px;
  margin:auto;
  color:#6b7280;
  font-size:1rem;
}

.city_grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
  position:relative;
  z-index:2;
}
.newsletter small {
   
    font-family: Montserrat-Medium;
}
.city_card{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(10px);
 border: 1px solid rgb(231 231 231 / 90%);
  border-radius:24px;
      padding: 12px 20px;
  display:flex;
  align-items:center;
  gap:18px;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  transition:.35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.city_card:hover{
  transform:translateY(-6px);
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.1);
}

.city_card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.4));
  opacity:0;
  transition:.3s ease;
}

.city_card:hover::after{
  opacity:1;
}

.city_icon{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:18px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.city_content{
  flex:1;
}

.city_content h4{
  margin:0 0 1px;
  font-size:1.08rem;

  font-weight:700;
}

.city_content p{
  margin:0;
  color:#6b7280;
  font-size:13px;
  line-height:1.5;
}

.city_arrow{
  font-size:1.1rem;
  color:#111827;
  transition:.3s ease;
}

.city_card:hover .city_arrow{
  transform:translate(4px,-4px);
}

.highlight_city{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
}

.highlight_city .city_content h4,
.highlight_city .city_content p,
.highlight_city .city_arrow{
  color:#fff;
}

.highlight_city .city_icon{
  background:rgba(255,255,255,.12);
  color:#fff;
}


.award-card {
  
    padding: 22px 20px;
   
}

.newsltr_frm{
	display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: #fff;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--c-line);
	padding-right: 13px;
}

@media(max-width:767px){

  .city_reach_sec{
    padding:70px 0;
  }

  .city_card{
    padding:20px;
    border-radius:20px;
  }

  .city_icon{
    width:52px;
    height:52px;
    min-width:52px;
  }

  .city_head{
    margin-bottom:38px;
  }

}
@media (max-width: 780px) {
  .discount-ribbon {
    font-size: 0.82rem;
    padding-right: 36px;
  }
}

/* ============================================================
   OFFICE LOCATION / MAP CARD (local SEO)
   ============================================================ */
.office-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  padding: 30px;
  overflow: hidden;
}
@media (min-width: 880px) {
  .office-card {
    grid-template-columns: 1fr 1fr;
  }
}
.office-card .info h3 {
  margin-bottom: 12px;
}
.office-card .info p {
  color: var(--c-muted);
  margin-bottom: 14px;
}
.office-card .info dl {
  margin: 0;
  display: grid;
  gap: 8px;
}
.office-card .info dt {
  font-size: 0.74rem;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.office-card .info dd {
  margin: 0 0 6px;
  color: var(--c-ink-2);
  font-size: 0.92rem;
}
.office-card .info dd a {
  color: var(--c-primary);
  font-weight: 600;
}
.office-map {
  position: relative;
  min-height: 260px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-cream);
}
.office-map iframe,
.office-map .map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}
.map-placeholder {
  background: repeating-linear-gradient(
    45deg,
    var(--c-sage-soft) 0 6px,
    var(--c-cream) 6px 18px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-family: var(--f-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 30px;
}

/* ============================================================
   EMERGENCY BANNER (YMYL safety signal)
   ============================================================ */
.emergency-banner {
  background: #fff3dc;
  border: 1px solid #e0bc68;
  border-radius: var(--r-md);
  padding: 14px 22px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #664500;
}
.emergency-banner .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0bc68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emergency-banner strong {
  display: block;
  color: #5c3a00;
  font-family: var(--f-display);
  font-size: 1rem;
  margin-bottom: 2px;
}
.emergency-banner a {
  color: #a04d00;
  font-weight: 700;
}

/* ============================================================
   DOCTOR DAY / VACCINE BADGE / SEASONAL HEALTH ALERT
   ============================================================ */
.alert-band {
  background: linear-gradient(135deg, var(--c-ink), var(--c-primary));
  color: #faf6ee;
  padding: 18px 24px;
  border-radius: var(--r-md);
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
}
.alert-band .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #faf6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.alert-band strong {
  font-family: var(--f-display);
  font-size: 1rem;
  display: block;
  color: #faf6ee;
  margin-bottom: 2px;
}
.alert-band span {
  color: #c8d4d0;
  font-size: 0.84rem;
}
.alert-band a {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--c-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
@media (max-width: 780px) {
  .alert-band {
    flex-wrap: wrap;
  }
  .alert-band a {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   FEEDBACK MICRO-WIDGET (article rating)
   ============================================================ */
.feedback {
  background: var(--c-cream-2);
  border-radius: var(--r-md);
  padding: 22px 26px;
  text-align: center;
  border: 1px solid var(--c-line-soft);
  margin-top: 30px;
}
.feedback p {
  margin: 0 0 14px;
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-ink);
}
.feedback-btns {
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.feedback-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.feedback-btn:hover {
  transform: translateY(-1px);
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.feedback-btn.active {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}

/* ============================================================
   ABOUT BLOCK (organisation E-E-A-T)
   ============================================================ */
.about-block {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  background: linear-gradient(180deg, var(--c-paper), #fff);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-xl);
  padding: 40px;
}
@media (min-width: 880px) {
  .about-block {
    grid-template-columns: 1.3fr 1fr;
  }
}
.about-block h2 {
  margin-bottom: 14px;
}
.about-block .stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}
.about-block .stats div {
  padding: 14px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-line-soft);
}
.about-block .stats strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--c-primary);
}
.about-block .stats span {
  font-size: 0.82rem;
  color: var(--c-muted);
}


.cf-bg {
    background: linear-gradient(2deg, #ffd9c7e3 0%, #fffffe 100%);
}

.gnrl_cncrn .sec-hdr-btns a{
      border-radius: var(--r) !important;
    font-size: 12px;
        padding: 7px 15px;
}

.conditions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}

.condition-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 16px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 22px;
    transition: all .35s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.condition-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#00b894,#00cec9);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s ease;
}

.condition-card:hover{
  transform:translateY(-6px);
  border-color:#bcefe8;
  box-shadow:0 18px 45px rgba(0,184,148,.12);
}

.condition-card:hover::before{
  transform:scaleX(1);
}

.condition-icon{
  min-width:58px;
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#e8fffb,#dff7ff);
  color:#00a884;
  box-shadow:0 8px 20px rgba(0,168,132,.10);
}

.condition-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: var(--t1);
    line-height: 1.3;
}

.condition-content p {
    margin: 0;
    font-size: 14px;


}

.symptm_scn{
  background: #fff;
}

.compare th, .compare td {
    
    font-family: Montserrat-SemiBold;
}


.section-holistic-care{
  padding:90px 0;
  background:
  linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
  position:relative;
  overflow:hidden;
}

.section-holistic-care .container{
  max-width:1280px;
  margin:auto;
  padding:0 20px;
}

.section-head.center{
  text-align:center;
  max-width:860px;
  margin:0 auto 40px;
}

.section-head .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e8f1ff;
  color:#2563eb;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:18px;
}



.section-head p{
  font-size:1.05rem;
  line-height:1.8;
  color:#64748b;
}

.holistic-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.holistic-pro-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
    padding: 25px 20px;
  position:relative;
  transition:.35s ease;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  box-shadow:
  0 4px 20px rgba(15,23,42,.04);
}

.holistic-pro-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#2563eb,#06b6d4);
}

.holistic-pro-card:hover{
  transform:translateY(-8px);
  border-color:#cbd5e1;
  box-shadow:
  0 18px 50px rgba(15,23,42,.12);
}

.hc-top{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:24px;
}

.hc-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
  linear-gradient(135deg,#eff6ff,#dbeafe);
  color:#2563eb;
}

.hc-badge{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:2px;
}

.holistic-pro-card h3 {
    font-size: 16px;
    line-height: 1.4;
    color: var(--c-primary-2);
    margin: 0;
    font-weight: 700;
}
.hc-list{
  list-style:none;
  padding:0;
  margin:0 0 26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.hc-list li {
    position: relative;
    padding-left: 28px;
    color: var(--c-muted);
    line-height: 22px;
    font-size: 15px;
}

.hc-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2563eb;
  box-shadow:0 0 0 5px rgba(37,99,235,.12);
}

.hc-link {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: #f8fafc;
    border: 1px solid #006d68;
    color: var(--t1);
    transition: .3s ease;
}

.hc-link span{
  transition:.3s ease;
}

.hc-link:hover{
  background:var(--t1);
  color:#fff;
  border-color:var(--t2);
}

.hc-link:hover span{
  transform:translateX(4px);
}


.mind-body-section{
  position:relative;
  padding:100px 0;
  overflow:hidden;
  background:
    
    radial-gradient(circle at top left,
      rgba(212,163,115,.22) 0%,
      transparent 34%),

    radial-gradient(circle at bottom right,
      rgba(184,134,82,.18) 0%,
      transparent 30%),

    radial-gradient(circle at center right,
      rgba(255,255,255,.75) 0%,
      transparent 28%),

    linear-gradient(
      135deg,
      #fffdf9 0%,
      #faf6ee 22%,
      #f8efe3 50%,
      #fdf8f1 75%,
      #fffdfa 100%
    );
}

.mind-body-section .container{
  max-width:1280px;
  margin:auto;
  padding:0 20px;
}

.mb-wrapper{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.mb-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(184,134,82,.10);
  color:#b88652;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:22px;
  border:1px solid rgba(184,134,82,.12);
}

.mb-content h2{
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:1.08;
  font-weight:800;
  color:#2d241d;
  margin-bottom:22px;
  letter-spacing:-1.5px;
}


.mb-points{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.mb-point{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:20px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(222,210,194,.7);
  backdrop-filter:blur(12px);
  border-radius:24px;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
}

.mb-point::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background:linear-gradient(180deg,#b88652,#d4a373);
  opacity:0;
  transition:.35s ease;
}

.mb-point:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  border-color:#e6d5c3;
}

.mb-point:hover::before{
  opacity:1;
}

.mb-icon{
  width:60px;
  height:60px;
  min-width:60px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  background:linear-gradient(135deg,#fff,#f3e2cd);
  box-shadow:0 8px 20px rgba(184,134,82,.12);
}

.mb-text h4{
  margin:0 0 0px;
  font-size:1.1rem;

  font-weight:700;
}

.mb-text p{
  margin:0;
  
  line-height:21px;
  font-size:.95rem;
}

.mb-actions{
  margin-top:34px;
}

.mb-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:18px 28px;
  border-radius:18px;
  text-decoration:none;
  background:linear-gradient(135deg,#b88652,#d4a373);
  color:#fff;
  font-weight:700;
  font-size:1rem;
  transition:.35s ease;
  box-shadow:
  0 14px 40px rgba(184,134,82,.25);
}

.mb-btn span{
  transition:.3s ease;
}

.mb-btn:hover{
  transform:translateY(-4px);
  box-shadow:
  0 18px 50px rgba(184,134,82,.35);
}

.mb-btn:hover span{
  transform:translateX(4px);
}

.mb-image-wrap{
  position:relative;
}

.mb-image-card{
  position:relative;
  z-index:2;
  border-radius:34px;
  overflow:hidden;
  box-shadow:
  0 25px 70px rgba(45,36,29,.14);
  transform:perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition:.5s ease;
}

.mb-image-card:hover{
  transform:perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.mb-image-card img{
  width:100%;
  display:block;
}

.mb-glow{
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  background:#d4a373;
  filter:blur(90px);
  opacity:.22;
  top:-40px;
  right:-30px;
}

.floating-badge{
  position:absolute;
  z-index:3;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(45,36,29,.10);
  font-size:.9rem;
  font-weight:700;
  color:#2d241d;
  animation:floatY 4s ease-in-out infinite;
}

.badge-1{
  top:30px;
  left:-30px;
}

.badge-2{
  bottom:30px;
  right:-20px;
  animation-delay:1.5s;
}

@keyframes floatY{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

.video-card .play strong {
   
    font-size: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: #fff;
}
.mb-actions a:hover{
	color: #fff;
}


/* =========================
   Awards Section
========================= */

.awards-section{
  position:relative;
  padding:100px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at top left,#ede9ff 0%,transparent 30%),
    radial-gradient(circle at bottom right,#dff7f2 0%,transparent 35%),
    #fff;
}

.awards-section .container{
  width:min(1200px,92%);
  margin:auto;
}

/* =========================
   Section Head
========================= */

.section-head{
  max-width:860px;
  margin:0 auto 50px;
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(124,92,255,.08);
  color:#6f52ff;
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}



.section-head p{
  font-size:1.05rem;
  line-height:1.8;
  
}

/* =========================
   Grid
========================= */

.awards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =========================
   Card
========================= */

.award-card{
  position:relative;
     padding: 24px 25px;
  border-radius:28px;
  overflow:hidden;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.6);

  box-shadow:
    0 10px 35px rgba(15,23,42,.08);

  transition:.45s ease;
}

.award-card:hover{
  transform:translateY(-10px);
  box-shadow:
    0 22px 60px rgba(111,82,255,.18);
}

/* =========================
   Glow
========================= */

.award-glow{
  position:absolute;
  top:-70px;
  right:-70px;

  width:180px;
  height:180px;

  border-radius:50%;

  background:linear-gradient(135deg,#7c5cff,#00c2a8);

  filter:blur(70px);
  opacity:.18;

  transition:.5s ease;
}

.award-card:hover .award-glow{
  transform:scale(1.2);
  opacity:.28;
}

/* =========================
   Top
========================= */

.award-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 28px;
    position: absolute;
    right: 11px;
    TOP: 10PX;
}

.award-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 14px;

  border-radius:999px;

  background:#f3f4f6;

  color:#374151;

  font-size:.74rem;
  font-weight:700;
}

/* =========================
   Icon
========================= */

.award-icon{
  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:24px;

  background:linear-gradient(135deg,#7c5cff,#00c2a8);

  color:#fff;

  font-size:2rem;

  margin-bottom:26px;

  box-shadow:
    0 14px 35px rgba(124,92,255,.25);

  animation:floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

/* =========================
   Text
========================= */

.award-card h3 {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 2px;
}

.award-card p{

  line-height:1.7;
  font-size:.96rem;
}

/* =========================
   Bottom Line
========================= */

.award-line{
  width:70px;
  height:4px;

  border-radius:999px;

  margin-top:28px;

  background:linear-gradient(to right,#7c5cff,#00c2a8);

  transition:.4s ease;
}

.award-card:hover .award-line{
  width:120px;
}


/* =========================
   Partners Section
========================= */

.partners-section{
  position:relative;
  padding:100px 0;
  overflow:hidden;

  background:
    radial-gradient(circle at top right,#efe8ff 0%,transparent 30%),
    radial-gradient(circle at bottom left,#dcfdf4 0%,transparent 35%),
    #ffffff;
}

.partners-section .container{
  width:min(1180px,92%);
  margin:auto;
}

/* =========================
   Heading
========================= */

.partners-head{
  max-width:760px;
  margin:0 auto 65px;
  text-align:center;
}

.partners-head .eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(124,92,255,.08);

  color:#6f52ff;

  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;

  margin-bottom:18px;
}


.partners-head p{
  font-size:1.02rem;
  line-height:1.8;

}

/* =========================
   Grid
========================= */

.partners-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* =========================
   Partner Card
========================= */

.partner-card{
  position:relative;

  display:flex;
  align-items:center;
  gap:18px;

padding: 15px 20px;

  border-radius:24px;

  background:rgba(255,255,255,.72);

  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,.65);

  box-shadow:
    0 10px 30px rgba(15,23,42,.08);

  overflow:hidden;

  transition:.45s ease;
}

.partner-card::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(135deg,
    rgba(124,92,255,.06),
    rgba(0,194,168,.04));

  opacity:0;

  transition:.4s ease;
}

.partner-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 22px 55px rgba(111,82,255,.16);
}

.partner-card:hover::before{
  opacity:1;
}

/* =========================
   Icon
========================= */

.partner-icon{
  position:relative;

  width:60px;
  height:60px;

  min-width:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:20px;
}
.city-grid a:hover strong{
  color: #fff;
}
 /* BETTER PREMIUM CREAM OPTION */

background: linear-gradient(135deg, #fff4e6, #f6dcc2);

  color:#fff;

  font-size:1.9rem;

  box-shadow:
    0 12px 30px rgba(124,92,255,.22);

  animation:floatPartner 4s ease-in-out infinite;
}

@keyframes floatPartner{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}


.new_scn_hed {
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
}

/* =========================
   Info
========================= */

.partner-info{
  position:relative;
  z-index:2;
}

.partner-info h3{
  font-size:1.15rem;
  font-weight:800;


  margin-bottom:6px;
}

.partner-info span{
  display:inline-block;

  font-size:.92rem;
  color:#667085;
  line-height:1.6;
}

.spb-type {
    font-size: 11px;
    color: var(--color-4);
    font-weight: 500;
    font-family: Montserrat-Medium;
}

.spb-right .form_pricee {
    display: block;
}

.selected-price-box .form_ttl_pricee {
    display: flex;
    gap: 6px;
}

.spb-left {
 
    width: 70%;
}

.dynmic_prce {
    width: 32%;
    gap: 0px 10px !important;
}


.related-grid a{
	    color: var(--c-muted);
}


.segment-card {
   
    padding: 20px 15px;
  
}

.segment-card li{
	    font-size: 14px;
}

.out-num {
  
    font-weight: 600;
}

.city-grid a{
	gap: 8px;
}

.city-grid a strong {
    color: var(--muted);
    line-height: 20px;
    text-align: left;
}

.pdur small {
    font-weight: 600;
    line-height: 16px;
    display: block;
    margin-bottom: 8px;
}

.related-grid a{
	line-height: 19px;
}

.gp_vs_specialist {
    padding-top: 0;
}


.cfpw-container {
    background: #F0FAFA;
    border: 1px solid #b2dfdb;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.cfpw-type-tag {
    display: flex;
    background: #fff;
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    padding: 3px;
    gap: 3px;
    margin-bottom: 10px;
    justify-content: center;
    font-family: var(--fh);
    color: var(--t1);
	    font-size: 14px;
}

.hqpw-price-pill{
	    display: none;
}

.personl_pysctry .row{
	
	align-items: center;
}

/*=========================================
   MODERN BENTO LEGAL UI
=========================================*/

.hq-legal-modern{
  position:relative;
  overflow:hidden;
  padding:80px 0;
  background:
  radial-gradient(circle at top left,#dcfce7 0%,transparent 25%),
  radial-gradient(circle at bottom right,#dbeafe 0%,transparent 25%),
  #f8fafc;
}

/* GRID */

.hq-legal-modern-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:80px;
  align-items:center;
}

/* LEFT */

.hq-legal-modern-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 18px;
  border-radius:100px;
  background:#ffffff;
  color:#16a34a;
  font-size:.82rem;
  font-weight:700;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  margin-bottom:24px;
}





/* BENTO GRID */

.hq-legal-modern-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top: 15px;
}

.hq-legal-modern-card{
  position:relative;
  padding:20px;
  border-radius:30px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(18px);
  overflow:hidden;
  transition:.45s ease;
  box-shadow:
  0 12px 40px rgba(15,23,42,.06);
}

.hq-legal-modern-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(135deg,
  rgba(34,197,94,.08),
  rgba(59,130,246,.08));
  opacity:0;
  transition:.45s ease;
}

.hq-legal-modern-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 30px 70px rgba(15,23,42,.12);
}

.hq-legal-modern-card:hover::before{
  opacity:1;
}



.wide-card{
  grid-column:span 2;
}



/* TEXT */

.hq-legal-modern-card h4{
  position:relative;
  z-index:2;
  margin-bottom:4px;
  line-height: 25px;
}

.hq-legal-modern-card p{
  position:relative;
  z-index:2;
    font-size: 14px;
    line-height: 22px;

}

/* IMAGE */

.hq-legal-modern-visual{
  position:relative;
}

.hq-modern-bg-shape{
  position:absolute;
  width:320px;
  height:320px;
  background:
  linear-gradient(135deg,#86efac,#93c5fd);
  border-radius:50%;
  filter:blur(90px);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:.5;
  animation:hqBlob 8s ease-in-out infinite;
}

.hq-legal-modern-image{
  position:relative;
  z-index:2;
  overflow:hidden;
  border-radius:38px;
  transform:rotate(-4deg);
  box-shadow:
  0 40px 90px rgba(15,23,42,.18);
}

.hq-legal-modern-image img{
  width:100%;
  display:block;
  object-fit:cover;
  transition:transform .8s ease;
}

.hq-legal-modern-image:hover img{
  transform:scale(1.08);
}

/* FLOATING GLASS */

.hq-floating-glass{
  position:absolute;
  z-index:5;
  padding:18px 22px;
  border-radius:22px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(16px);
  box-shadow:
  0 18px 45px rgba(15,23,42,.12);
  animation:hqFloatCard 5s ease-in-out infinite;
}

.hq-floating-glass strong {
    display: block;
    color: var(--t1);
    font-size: 1rem;
    margin-bottom: 2px;
}

.hq-floating-glass span{
  font-size:.84rem;
  color: var(--muted);
      font-family: Montserrat-Medium;
}

.glass-1{
  top:35px;
  left:-20px;
}

.glass-2{
  bottom:40px;
  right:-20px;
  animation-delay:1.5s;
}

/* ANIMATION */

@keyframes hqBlob{
  0%{
    transform:translate(-50%,-50%) scale(1);
  }
  50%{
    transform:translate(-50%,-55%) scale(1.08);
  }
  100%{
    transform:translate(-50%,-50%) scale(1);
  }
}

@keyframes hqFloatCard{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-12px);
  }
  100%{
    transform:translateY(0px);
  }
}

/* RESPONSIVE */

@media(max-width:991px){

  .hq-legal-modern-grid{
    grid-template-columns:1fr;
    gap:70px;
  }

  .hq-legal-modern-title{
    font-size:2.4rem;
  }

  .hq-legal-modern-image{
    transform:none;
  }

}

@media(max-width:767px){

  .hq-legal-modern{
    padding:75px 0;
  }


  .hq-legal-modern-cards{
    grid-template-columns:1fr;
  }

  .large-card,
  .wide-card{
    grid-column:span 1;
  }

  .hq-legal-modern-card{
    padding:22px;
    border-radius:24px;
  }

  .hq-floating-glass{
    padding:12px 15px;
  }

  .hq-floating-glass span{
    font-size:.72rem;
  }

}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

  .partners-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .partners-section{
    padding:70px 0;
  }

  .partners-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .partner-card{
    padding:22px;
    border-radius:22px;
  }

  .partner-icon{
    width:62px;
    height:62px;
    min-width:62px;

    font-size:1.6rem;
    border-radius:18px;
  }

  .partner-info h3{
    font-size:1.05rem;
  }

}
/* =========================
   Responsive
========================= */

@media(max-width:991px){

  .awards-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:767px){

  .awards-section{
    padding:70px 0;
  }

  .awards-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .award-card{
    padding:28px 22px;
    border-radius:24px;
  }

  .award-icon{
    width:64px;
    height:64px;
    font-size:1.7rem;
  }

}
@media(max-width:1100px){

  .mb-wrapper{
    grid-template-columns:1fr;
    gap:50px;
  }

}




@media(max-width:768px){

  .mind-body-section{
    padding:70px 0;
  }

  .mb-content h2{
    letter-spacing:-1px;
  }

  .mb-point{
    padding:18px;
    border-radius:20px;
  }

  .mb-icon{
    width:52px;
    height:52px;
    min-width:52px;
    font-size:1.25rem;
  }

  .floating-badge{
    display:none;
  }

}

@media(max-width:1100px){

  .holistic-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .section-holistic-care{
    padding:70px 0;
  }

  .holistic-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .holistic-pro-card{
    padding:24px;
    border-radius:24px;
  }

  .hc-icon{
    width:56px;
    height:56px;
    min-width:56px;
  }

  .section-head{
    margin-bottom:40px;
  }

}

/* Tablet */
@media(max-width:991px){
  .conditions-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:767px){

  .conditions-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .condition-card{
    padding:20px;
    border-radius:18px;
  }

  .condition-content h4{
    font-size:18px;
  }

  .condition-content p{
    font-size:14px;
    line-height:1.6;
  }

  .condition-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
  }
}

/* ============================================================
   PRINT STYLESHEET
   ============================================================ */
@media print {
  .float-actions,
  .sticky-cta,
  .activity-toast,
  .read-progress,
  .discount-ribbon,
  .nav-cta,
  .nav-links,
  .video-card,
  .symptom-widget,
  .filter-chip,
  .toolbar-meta,
  .newsletter,
  .feedback {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .hero {
    background: #fff;
    padding: 20px 0;
  }
  section {
    padding: 24px 0;
    page-break-inside: avoid;
  }
  h1,
  h2,
  h3 {
    break-after: avoid;
  }
  .doc-card,
  .price-card,
  .cond-card,
  .step {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }
  a[href^="#"]:after,
  a[href^="javascript"]:after {
    content: "";
  }
  .container {
    max-width: none;
    padding: 0 20px;
  }
  .doctors-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   HIGH-CONTRAST / FORCED-COLORS MODE (accessibility)
   ============================================================ */
@media (forced-colors: active) {
  .btn,
  .doc-card,
  .step,
  .cond-card,
  .price-card,
  .calc,
  .advisor,
  .testimonial,
  .test-card {
    border: 2px solid CanvasText !important;
  }
  .btn-primary,
  .btn-dark {
    forced-color-adjust: none;
    background: Highlight;
    color: HighlightText;
  }
}

/* ============================================================
   VISUALLY HIDDEN HELPER (a11y)
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   MOBILE REFINEMENTS  (≤ 780 px)
   ============================================================ */
@media (max-width: 780px) {
  .trust-strip {
    font-size: 0.7rem;
    padding: 6px 0;
  }
  .trust-strip-inner {
    gap: 14px;
    padding: 0 14px;
  }
  .trust-strip span {
    flex-shrink: 0;
  }

 
 
  .hero-tag strong {
    display: inline;
  }

 

  .hero-features {
    gap: 8px 14px;
    font-size: 0.88rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    padding: 18px 0;
  }
  .hero-stats .stat {
    padding: 0 8px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: auto;
  }
  .hero-visual .card-banner img {
    height: 300px;
  }
  .hero-overlay-card {
    position: static;
    margin: 14px 0 0;
    max-width: none;
  }
  .hero-overlay-1,
  .hero-overlay-2,
  .hero-overlay-3 {
    transform: none;
  }

  .nav-cta .btn-ghost {
    display: none;
  }
  .brand img {
    height: 30px;
  }

  .reviewer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
  .reviewer img {
    width: 54px;
    height: 54px;
  }

  .doctors-toolbar {
    padding: 14px;
  }
  .filter-chip {
    font-size: 0.76rem;
    padding: 7px 12px;
  }

  .price-card.featured {
    transform: none;
  }
  .cta-panel {
    padding: 30px 22px;
  }

  .ecosystem {
    padding: 22px;
  }
  .eco-step:not(:last-child)::after {
    display: none;
  }

  .sym-table th,
  .sym-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-head {
    margin-bottom: 32px;
  }
  
  .dynmic_prce {
    width: 100%;
 
}

.selected-price-box {
   
    padding: 10px 8px;

}
.spb-left {
    width: 62%;
}

.page-toc {
   
    padding: 15px 10px;
    margin: 10px auto 32px;
  
}
.page-toc a {
   
    font-size: 12px;
   
}

.section-head.center {
 
    margin: 0 auto 30px;
}
.decision-card {
    
    padding: 16px 16px;
  
}

.sev {
    padding: 20px 16px;
   
}

.sev .sev-tag {
  
    font-size: 10px;
  
}

.compare th, .compare td {
    padding: 10px 15px;
  
}
    .mind-body-section {
        padding: 40px 0;
    }
	
	.mb-btn {
   
    padding: 12px 10px;
    border-radius: 10px;
   
    font-size: 15px;
   
}

.video-card .play {
   
    padding: 10px;
}

.video-card .play .pbtn {
    width: 50px;
    height: 50px;
   
}

    .video-card .play strong {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
	
	.awards-section {
        padding: 40px 0;
    }
	
	.award-icon{
		    margin-bottom: 16px;
	}
	
	.award-line {
   
    margin-top: 18px;
  
}
.award-card p {
  
    margin-bottom: 0;
}

.partners-head {
    max-width: 100%;
    margin: 0 auto 35px;
   
}
.partner-card {
        padding: 12px 10px;
        border-radius: 15px;
        text-align: center;
    }
	.partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.partner-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.6rem;
        border-radius: 18px;
        margin: auto;
    }
	
	.partner-info h3 {
    
        margin-bottom: 1px;
    }
	
	    .partner-card {
       
        display: block;
    }
	
	.city-grid a {
    padding: 10px 10px;
    gap: 8px;
   
}
.city_icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }
	
	.outcomes{
		    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}
	
	.outcomes .out {
    padding: 18px 12px;
   
   
}

.ai_assisted .quick-access img{
	display: none;
}

.compliance {
 
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.compliance .item {
    padding: 15px 12px;
   text-align: center;
    display: block;
    gap: 12px;
   
}

.compliance .item .ico {
  
    margin: auto;
    margin-bottom: 12px;
}

.compliance .item small {
   
    line-height: 16px;
    display: block;
}

.qa-block {
 
    padding: 18px 16px;

}

.related-grid {

    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.related-grid a {

    gap: 5px;
    padding: 12px 8px;
   
}

.sticky-cta {
        display: none;
    }
	
	.btn-primary{
		    padding: 11px 12px;
	}
	
	.hero-cta {
   
    gap: 12px;
  
}

.cf-bg {
        padding: 40px 18px;
    }
}
