/* ============================================================
   Dr. Likitha — Consultant Physiotherapist
   style.css  ·  Shared across all 4 pages
   Fonts: DM Serif Display + Inter
   ============================================================ */

:root {
  --primary:    #0A2F73;
  --primary-d:  #071e4d;
  --primary-l:  #1249a8;
  --teal:       #14B8C4;
  --teal-d:     #0891B2;
  --ground:     #EFF5FF;
  --surface:    #ffffff;
  --text:       #0C1F3F;
  --muted:      #5A6A8A;
  --border:     #D4E1F7;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Inter', system-ui, -apple-system, sans-serif;
  --sh-sm:      0 2px 12px rgba(10,47,115,.07);
  --sh:         0 6px 28px rgba(10,47,115,.11);
  --sh-lg:      0 16px 56px rgba(10,47,115,.16);
  --sh-xl:      0 24px 80px rgba(10,47,115,.20);
  --r:          14px;
  --r-lg:       22px;
  --r-xl:       32px;
  --t:          all .26s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ground);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
}
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.18; color: var(--text); margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* anchor targets: offset below sticky header */
section[id], [id] { scroll-margin-top: 84px; }

/* ------------------------------------------------------------------ Sections */
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-surface { background: var(--surface); }
.bg-ground  { background: var(--ground); }

/* ------------------------------------------------------------------ Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.sec-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 400; letter-spacing: -.01em; margin-bottom: 14px;
}
.sec-sub {
  font-size: 1rem; color: var(--muted); max-width: 580px; line-height: 1.74; margin: 0;
}
.text-center .sec-sub { margin: 0 auto; }

/* ------------------------------------------------------------------ Utilities */
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); animation: pdot 2s infinite;
}
@keyframes pdot {
  0%,100% { box-shadow: 0 0 0 0 rgba(20,184,196,.5); }
  60%      { box-shadow: 0 0 0 8px rgba(20,184,196,0); }
}
.ic-blue   { background: linear-gradient(135deg, var(--primary), var(--primary-l)); }
.ic-teal   { background: linear-gradient(135deg, var(--teal), var(--teal-d)); }
.ic-green  { background: linear-gradient(135deg, #10b981, #059669); }
.ic-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.ic-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ic-rose   { background: linear-gradient(135deg, #f43f5e, #e11d48); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
.reveal[data-d="5"] { transition-delay: .5s; }
.reveal[data-d="6"] { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
}

/* ================================================================
   PRE-HEADER
   position:relative = normal document flow, scrolls away naturally.
   The sticky header then sticks to top:0 — zero JS needed.
================================================================ */
.pre-header {
  position: relative; z-index: 910;
  background: linear-gradient(90deg, var(--primary-d), var(--primary) 50%, var(--primary-l));
  padding: 10px 0; text-align: center;
  font-family: var(--sans); font-size: .78rem;
  color: rgba(255,255,255,.8); font-weight: 500; letter-spacing: .02em;
}
.pre-header strong { color: var(--teal); }
.pre-header a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.pre-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.55); font-size: 1rem; line-height: 1; padding: 4px 10px;
  transition: color .2s;
}
.pre-close:hover { color: #fff; }

/* ================================================================
   HEADER  —  always white, position:sticky
   Clean minimal style: dark logo square, gray nav, dark pill CTA.
================================================================ */
#siteHeader {
  position: sticky;
  top: 0; z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid #eef1f8;
  padding: 0;
  transition: box-shadow .25s;
}
#siteHeader.scrolled { box-shadow: 0 2px 20px rgba(10,47,115,.07); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  height: 68px;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  background: #1e2530;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  color: #fff; flex-shrink: 0; letter-spacing: .02em;
}
.logo-name {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: #1e2530; display: block; line-height: 1.1;
}
.logo-role {
  font-family: var(--sans); font-size: .6rem; font-weight: 500;
  color: var(--muted); display: block; margin-top: 2px; letter-spacing: .04em;
}

/* Desktop nav */
.main-nav { display: flex; gap: 0; }
.main-nav .nav-link {
  font-family: var(--sans); font-size: .875rem; font-weight: 500;
  color: #555 !important;
  padding: 6px 14px; border-radius: 8px; transition: var(--t);
  white-space: nowrap;
}
.main-nav .nav-link:hover  { color: #1e2530 !important; background: #f4f6fb; }
.main-nav .nav-link.active { color: #1e2530 !important; font-weight: 600; }

/* Hamburger */
.hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: #1e2530; transition: var(--t);
}
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (max-width: 991px) {
  .hamburger-btn { display: flex; }
  .main-nav { display: none !important; }
}

/* Mobile menu */
#mobMenu {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, var(--primary-d), var(--primary));
  z-index: 895; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
#mobMenu.open { transform: none; }
#mobMenu .mob-link {
  font-family: var(--serif); font-size: 1.7rem; color: rgba(255,255,255,.85); transition: color .2s;
}
#mobMenu .mob-link:hover, #mobMenu .mob-link.active { color: var(--teal); }
.mob-install-btn {
  display: none; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: var(--primary); background: #fff;
  border: none; border-radius: 50px;
  padding: 13px 28px; cursor: pointer; transition: var(--t);
  letter-spacing: .01em; margin-top: 8px;
}
.mob-install-btn i { color: var(--teal); font-size: .95rem; }
.mob-install-btn:hover { background: var(--teal); color: #fff; }
.mob-install-btn:hover i { color: #fff; }

/* ================================================================ BUTTONS */
.btn-book,
.btn-primary-c,
.btn-teal-c,
.btn-wa-c,
.btn-outline-w-c,
.btn-outline-p-c {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-weight: 600;
  line-height: 1.2; white-space: nowrap; cursor: pointer;
  text-decoration: none; border: none;
  transition: var(--t); border-radius: 50px;
  padding: 13px 28px; font-size: .9rem;
}
.btn-book        { background:#1e2530; color:#fff; padding:10px 22px; font-size:.875rem; box-shadow: none; }
.btn-book:hover  { background:var(--primary); color:#fff; transform:translateY(-1px); box-shadow: 0 4px 16px rgba(10,47,115,.25); }
.btn-header-install {
  display: none; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  color: var(--primary); background: transparent;
  border: 1.5px solid var(--border); border-radius: 50px;
  padding: 8px 16px; cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-header-install i { font-size: .82rem; color: var(--teal); }
.btn-header-install:hover { border-color: var(--teal); color: var(--teal); background: rgba(20,184,196,.06); }
/* Hide header install btn on mobile — mob menu button handles it instead */
@media (max-width: 991px) { .btn-header-install { display: none !important; } }
.btn-primary-c   { background:var(--primary); color:#fff; box-shadow:0 4px 16px rgba(10,47,115,.3); }
.btn-primary-c:hover { color:#fff; background:var(--primary-d); transform:translateY(-2px); box-shadow:0 8px 28px rgba(10,47,115,.4); }
.btn-teal-c      { background:var(--teal); color:#fff; box-shadow:0 4px 16px rgba(20,184,196,.3); }
.btn-teal-c:hover    { color:#fff; background:var(--teal-d); transform:translateY(-2px); box-shadow:0 8px 28px rgba(20,184,196,.4); }
.btn-wa-c        { background:linear-gradient(135deg,#25D366,#128C7E); color:#fff; box-shadow:0 4px 16px rgba(37,211,102,.3); }
.btn-wa-c:hover  { color:#fff; transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.4); }
.btn-outline-w-c { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.5); padding:11px 26px; }
.btn-outline-w-c:hover { color:#fff; background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.9); }
.btn-outline-p-c { background:transparent; color:var(--primary); border:1.5px solid var(--border); padding:11px 26px; }
.btn-outline-p-c:hover { color:var(--primary); border-color:var(--teal); background:rgba(20,184,196,.05); transform:translateY(-2px); }
.btn-call-c { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(10,47,115,.3); display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: .9rem; line-height: 1.2; white-space: nowrap; text-decoration: none; border: none; border-radius: 50px; padding: 13px 28px; transition: var(--t); }
.btn-call-c:hover { color: #fff; background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,47,115,.4); }
.btn-sm-c  { padding:9px 18px !important; font-size:.82rem !important; }
.btn-full  { width:100%; justify-content:center; }

/* ================================================================ PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(145deg, var(--primary-d) 0%, var(--primary) 55%, var(--primary-l) 100%);
  padding: 72px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(20,184,196,.12) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { color: rgba(20,184,196,.9); }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: #fff; }
.page-hero p  { font-family: var(--sans); font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.72; max-width: 560px; margin-top: 14px; }
.breadcrumb-bar {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .78rem;
  color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.breadcrumb-bar a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--teal); }
.breadcrumb-bar .bc-cur { color: var(--teal); font-weight: 600; }

/* ================================================================ HERO (home page) */
.hero-section {
  background: linear-gradient(145deg, var(--primary-d) 0%, var(--primary) 55%, var(--primary-l) 100%);
  padding: 80px 0 96px;
  min-height: calc(100vh - 70px);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 40%, rgba(20,184,196,.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 5%  85%, rgba(255,255,255,.04) 0%, transparent 65%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(20,184,196,.9); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff; margin-bottom: 20px; letter-spacing: -.02em; line-height: 1.1;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-family: var(--sans); font-size: 1.05rem;
  color: rgba(255,255,255,.72); line-height: 1.75; max-width: 500px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.h-stat { display: flex; flex-direction: column; gap: 3px; }
.h-stat-num { font-family: var(--serif); font-size: 2rem; color: var(--teal); line-height: 1; }
.h-stat-lbl { font-family: var(--sans); font-size: .65rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.h-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* Doctor card */
.doc-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl); padding: 34px 28px;
  position: relative; overflow: hidden;
}
.doc-card::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(20,184,196,.1); pointer-events: none;
}
.doc-av {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; color: #fff;
  border: 2px solid rgba(255,255,255,.25); flex-shrink: 0; position: relative;
  box-shadow: 0 4px 18px rgba(20,184,196,.35);
}
.online-dot {
  position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px;
  border-radius: 50%; background: #22c55e; border: 2px solid rgba(10,47,115,.8);
}
.doc-name  { font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.doc-cred  { font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.58); margin-top: 2px; }
.doc-stars { color: #fbbf24; font-size: .85rem; margin-top: 4px; }
.doc-feats { display: flex; flex-direction: column; gap: 11px; margin: 22px 0; position: relative; z-index: 1; }
.doc-feat  { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: .84rem; color: rgba(255,255,255,.82); }
.feat-ck {
  width: 20px; height: 20px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(20,184,196,.35);
}
.doc-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 20px; border-radius: 12px;
  background: rgba(255,255,255,.11); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: .875rem;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .22s, border-color .22s; position: relative; z-index: 1;
}
.doc-cta:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.3); }

/* ================================================================ ABOUT CARD */
.about-img-card {
  background: linear-gradient(145deg, var(--primary), var(--primary-l));
  border-radius: var(--r-xl); padding: 48px 36px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--sh-xl);
}
.about-img-card::before {
  content: ''; position: absolute; top:-60px; left:-60px;
  width:180px; height:180px; border-radius:50%; background:rgba(255,255,255,.04);
}
.about-img-card::after {
  content: ''; position: absolute; bottom:-50px; right:-50px;
  width:160px; height:160px; border-radius:50%; background:rgba(20,184,196,.1);
}
.about-av {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif); font-size: 2.5rem; color: #fff;
  border: 3px solid rgba(255,255,255,.22); position: relative; z-index: 1;
  box-shadow: 0 8px 30px rgba(20,184,196,.4);
}
.about-dr-name  { font-family: var(--serif); font-size: 1.45rem; color: #fff; position: relative; z-index: 1; }
.about-dr-title { font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.58); margin: 6px 0 28px; position: relative; z-index: 1; letter-spacing: .04em; }
.about-sc {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px; text-align: center; position: relative; z-index: 1;
}
.about-sc strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--teal); line-height: 1; }
.about-sc span   { font-family: var(--sans); font-size: .65rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; display: block; }
.about-body { font-family: var(--sans); font-size: .96rem; color: var(--muted); line-height: 1.8; }
.about-hl {
  padding: 15px 18px; background: var(--ground);
  border-left: 3px solid var(--teal); border-radius: 0 var(--r) var(--r) 0; height: 100%;
}
.about-hl h4 { font-family: var(--sans); font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.about-hl p  { font-family: var(--sans); font-size: .78rem; color: var(--muted); line-height: 1.55; margin: 0; }
.mvv-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 16px; text-align: center; transition: var(--t); height: 100%;
}
.mvv-card:hover { border-color: var(--teal); box-shadow: var(--sh); transform: translateY(-3px); }
.mvv-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.mvv-card h4 { font-family: var(--sans); font-size: .85rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.mvv-card p  { font-family: var(--sans); font-size: .75rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ================================================================ WHY CARDS */
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 26px;
  transition: var(--t); position: relative; overflow: hidden; height: 100%;
}
.why-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--teal-d));
  transform: scaleY(0); transform-origin: bottom; transition: transform .3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(20,184,196,.25); }
.why-card:hover::before { transform: scaleY(1); }
.why-icon { width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon i { color: #fff; font-size: 1.25rem; }
.why-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.why-card p  { font-family: var(--sans); font-size: .84rem; color: var(--muted); line-height: 1.68; margin: 0; }

/* ================================================================ SERVICE CARDS */
.svc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 34px 28px;
  display: flex; flex-direction: column;
  transition: var(--t); height: 100%; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: rgba(20,184,196,.2); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num  { font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.svc-icon { width: 64px; height: 64px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-icon i { color: #fff; font-size: 1.4rem; }
.svc-card h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.svc-card p  { font-family: var(--sans); font-size: .84rem; color: var(--muted); line-height: 1.68; flex: 1; margin-bottom: 18px; }
.svc-benefits {
  list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px;
}
.svc-benefits li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--sans); font-size: .82rem; color: var(--text); line-height: 1.4;
}
.svc-benefits li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5 6.5-7' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover; flex-shrink: 0; margin-top: 1px;
}

/* ================================================================ CONDITIONS */
.cond-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 22px; text-align: center;
  transition: var(--t); height: 100%;
}
.cond-card:hover { transform: translateY(-6px); border-color: rgba(20,184,196,.35); box-shadow: var(--sh-lg); }
.cond-icon {
  width: 74px; height: 74px; border-radius: 50%; background: var(--ground);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; transition: background .3s;
}
.cond-icon i { font-size: 1.5rem; color: var(--primary); transition: color .3s; }
.cond-card:hover .cond-icon { background: linear-gradient(135deg, var(--teal), var(--teal-d)); }
.cond-card:hover .cond-icon i { color: #fff; }
.cond-card h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.cond-card p  { font-family: var(--sans); font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ================================================================ PROCESS */
.process-section {
  background: linear-gradient(145deg, var(--primary-d), var(--primary), var(--primary-l));
  position: relative; overflow: hidden;
}
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(20,184,196,.12) 0%, transparent 70%);
}
.process-flow {
  display: flex; align-items: flex-start; position: relative; margin-top: 64px;
}
.process-flow::before {
  content: ''; position: absolute; top: 34px;
  left: calc(10% + 36px); right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(20,184,196,.35), rgba(255,255,255,.08));
}
.proc-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
.proc-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,.09); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; color: var(--teal);
  margin-bottom: 20px; position: relative; z-index: 1;
  transition: var(--t); backdrop-filter: blur(8px);
}
.proc-step:hover .proc-num { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 0 0 6px rgba(20,184,196,.2); transform: scale(1.08); }
.proc-step h3 { font-family: var(--sans); font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proc-step p  { font-family: var(--sans); font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.62; margin: 0; }
@media (max-width: 768px) {
  .process-flow { flex-direction: column; }
  .process-flow::before { display: none; }
  .proc-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; padding: 0 0 32px; border-left: 2px solid rgba(255,255,255,.13); padding-left: 28px; margin-left: 34px; }
  .proc-step:last-child { padding-bottom: 0; border-left-color: transparent; }
  .proc-num { flex-shrink: 0; margin-bottom: 0; margin-left: -51px; }
}

/* ================================================================ BENEFITS / COUNTERS */
.ben-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 38px 22px; text-align: center;
  transition: var(--t); height: 100%; position: relative; overflow: hidden;
}
.ben-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.ben-card:hover { transform: translateY(-5px); border-color: rgba(20,184,196,.25); box-shadow: var(--sh-lg); }
.ben-card:hover::before { transform: scaleX(1); }
.ben-icon { width: 68px; height: 68px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ben-icon i { color: #fff; font-size: 1.35rem; }
.ben-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 8px; }
.ben-num    { font-family: var(--serif); font-size: 3rem; color: var(--primary); line-height: 1; }
.ben-suffix { font-family: var(--serif); font-size: 1.4rem; color: var(--primary); }
.ben-card h3 { font-family: var(--sans); font-size: .94rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ben-card p  { font-family: var(--sans); font-size: .82rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* ================================================================ TESTIMONIALS */
.test-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: var(--t); height: 100%; position: relative; overflow: hidden;
}
.test-card::before {
  content: '\201C'; position: absolute; top: -8px; left: 18px;
  font-family: var(--serif); font-size: 6rem; color: var(--teal);
  opacity: .1; line-height: 1; pointer-events: none;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(20,184,196,.28); }
.test-stars { color: #fbbf24; font-size: .88rem; letter-spacing: 1px; margin-bottom: 14px; }
.test-text  { font-family: var(--sans); font-size: .87rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px; position: relative; }
.test-av    { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 700; color: #fff; font-size: .85rem; flex-shrink: 0; }
.test-name  { font-family: var(--sans); font-size: .87rem; font-weight: 700; color: var(--primary); }
.test-cond  { font-family: var(--sans); font-size: .73rem; color: var(--teal); font-weight: 500; margin-top: 2px; }

/* ================================================================ CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 55%, var(--teal-d) 100%);
  padding: 80px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(20,184,196,.14) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { font-family: var(--sans); font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ================================================================ FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; background: var(--surface); transition: border-color .22s, box-shadow .22s; }
.faq-item:hover { border-color: rgba(20,184,196,.28); }
.faq-item.open  { border-color: var(--teal); box-shadow: var(--sh-sm); }
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left; outline: none;
}
.faq-question:focus-visible { outline: 2px solid var(--teal); outline-offset: -2px; }
.faq-q-text { font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--primary); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ground); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .22s, transform .3s;
  color: var(--primary); font-size: 1rem;
}
.faq-item.open .faq-toggle { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-answer-inner { padding: 4px 22px 20px; font-family: var(--sans); font-size: .875rem; color: var(--muted); line-height: 1.74; }

/* ================================================================ CONTACT */
.contact-info-card {
  background: linear-gradient(145deg, var(--primary-d), var(--primary-l));
  border-radius: var(--r-xl); padding: 44px 36px; height: 100%;
  position: relative; overflow: hidden;
}
.contact-info-card::before { content:''; position:absolute; top:-60px; left:-60px; width:200px; height:200px; border-radius:50%; background:rgba(255,255,255,.04); }
.contact-info-card::after  { content:''; position:absolute; bottom:-50px; right:-50px; width:200px; height:200px; border-radius:50%; background:rgba(20,184,196,.1); }
.contact-info-card h3 { font-family: var(--serif); font-size: 1.7rem; color: #fff; margin-bottom: 6px; position: relative; z-index: 1; }
.contact-sub { font-family: var(--sans); font-size: .84rem; color: rgba(255,255,255,.56); margin-bottom: 32px; position: relative; z-index: 1; }
.c-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; position: relative; z-index: 1; }
.c-icon-wrap { width: 46px; height: 46px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon-wrap i { font-size: .95rem; color: var(--teal); }
.c-label { font-family: var(--sans); font-size: .66rem; color: rgba(255,255,255,.44); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; display: block; }
.c-val   { font-family: var(--sans); font-size: .94rem; font-weight: 600; color: #fff; display: block; margin-top: 1px; }
.c-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; margin-top: 24px; }
.contact-form-card { background: var(--surface); border-radius: var(--r-xl); padding: 44px 36px; box-shadow: var(--sh-xl); border: 1px solid var(--border); }
.contact-form-card h3   { font-family: var(--serif); font-size: 1.35rem; color: var(--primary); margin-bottom: 6px; }
.form-sub { font-family: var(--sans); font-size: .83rem; color: var(--muted); margin-bottom: 26px; }
.form-label { display: block; font-family: var(--sans); font-size: .72rem !important; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; }
.form-ctrl {
  display: block; width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--sans); font-size: .88rem; color: var(--text);
  background: var(--surface); transition: border-color .22s, box-shadow .22s;
  outline: none; line-height: 1.5;
}
.form-ctrl:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,196,.1); }
.form-ctrl::placeholder { color: var(--muted); opacity: .5; }
.form-note { font-family: var(--sans); font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; margin-bottom: 0; }
select.form-ctrl {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
textarea.form-ctrl { resize: vertical; min-height: 112px; }
@media (max-width: 575px) { .contact-info-card, .contact-form-card { padding: 30px 22px; } }

/* ================================================================ PWA INSTALL CHIP */
#pwaInstall {
  position: fixed; bottom: 108px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  display: none; align-items: center; gap: 10px;
  padding: 11px 14px 11px 18px; border-radius: 50px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  z-index: 850; box-shadow: 0 6px 24px rgba(10,47,115,.38);
  cursor: pointer; white-space: nowrap; border: none;
  animation: pwa-up .35s ease;
}
#pwaInstall i { font-size: .92rem; flex-shrink: 0; }
#pwaInstall span { flex-shrink: 0; }
#pwaClose {
  background: rgba(255,255,255,.18); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s;
}
#pwaClose:hover { background: rgba(255,255,255,.32); }
@keyframes pwa-up {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 480px) {
  #pwaInstall { bottom: 88px; font-size: .78rem; padding: 10px 12px 10px 16px; }
}

/* ================================================================ FOOTER */
.footer { background: #07111f; padding: 80px 0 0; }
.f-logo-name { font-family: var(--serif); font-size: 1.15rem; color: #fff; display: block; margin-bottom: 2px; }
.f-logo-role { font-family: var(--sans); font-size: .65rem; color: var(--teal); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 16px; display: block; }
.f-desc { font-family: var(--sans); font-size: .83rem; line-height: 1.74; margin-bottom: 22px; color: rgba(255,255,255,.46); }
.f-soc { width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.07); display:flex; align-items:center; justify-content:center; font-size:.88rem; color:rgba(255,255,255,.5); transition:var(--t); text-decoration:none; }
.f-soc:hover { background:var(--teal); color:#fff; border-color:transparent; transform:translateY(-2px); }
.f-title { font-family:var(--sans); font-size:.7rem; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px; }
.f-links { list-style:none; padding:0; display:flex; flex-direction:column; gap:10px; }
.f-links a { font-family:var(--sans); font-size:.83rem; color:rgba(255,255,255,.44); transition:color .2s, padding-left .2s; display:block; }
.f-links a:hover { color:var(--teal); padding-left:4px; }
.f-ci { display:flex; align-items:flex-start; gap:10px; margin-bottom:14px; }
.f-ci-icon { color:var(--teal); flex-shrink:0; margin-top:2px; font-size:.88rem; }
.f-ci span { font-family:var(--sans); font-size:.83rem; color:rgba(255,255,255,.5); line-height:1.5; }
.footer-divider { border-color:rgba(255,255,255,.07) !important; margin:56px 0 0; }
.footer-bottom { padding:22px 0; text-align:center; font-family:var(--sans); font-size:.77rem; color:rgba(255,255,255,.25); line-height:1.7; }

/* ================================================================ FLOATING WA */
.wa-float { position:fixed; bottom:26px; right:26px; z-index:800; }
.wa-ring  { position:absolute; inset:-4px; border-radius:50%; background:rgba(37,211,102,.28); animation:wa-ring 2.5s ease-out infinite; }
@keyframes wa-ring { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.9);opacity:0} }
.wa-btn { position:relative; z-index:1; width:58px; height:58px; background:linear-gradient(135deg,#25D366,#128C7E); border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 22px rgba(37,211,102,.45); transition:transform .2s; text-decoration:none; }
.wa-btn:hover { transform:scale(1.1); }
.wa-btn i { color:#fff; font-size:1.45rem; }
.wa-tip { position:absolute; right:70px; top:50%; transform:translateY(-50%); background:#fff; color:var(--primary); padding:8px 13px; border-radius:9px; font-family:var(--sans); font-size:.77rem; font-weight:600; white-space:nowrap; box-shadow:var(--sh); opacity:0; pointer-events:none; transition:opacity .22s; }
.wa-tip::after { content:''; position:absolute; right:-5px; top:50%; transform:translateY(-50%); border:5px solid transparent; border-right:none; border-left-color:#fff; }
.wa-float:hover .wa-tip { opacity:1; }

/* ================================================================ BACK TO TOP */
.back-to-top { position:fixed; bottom:96px; right:28px; width:42px; height:42px; background:var(--primary); color:#fff; border:none; border-radius:12px; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:0; pointer-events:none; transform:translateY(10px); transition:opacity .3s, transform .3s, background .2s; z-index:799; box-shadow:0 4px 14px rgba(10,47,115,.28); }
.back-to-top.visible { opacity:1; pointer-events:all; transform:none; }
.back-to-top:hover   { background:var(--teal); }
.back-to-top i       { font-size:.88rem; }

/* ================================================================ INTERACTIVE BODY MAP */
.bm-gender-wrap { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.gender-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .875rem; font-weight: 600;
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer; transition: var(--t);
}
.gender-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.gender-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(10,47,115,.22); }

.bm-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.bm-canvas-col { display: flex; flex-direction: column; align-items: center; gap: 14px; }

#bodyCanvasWrap {
  width: 100%; height: 560px;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, #f0f5ff 0%, #eaf0fb 55%, #f3f0ff 100%);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--sh);
}
#bodyCanvasWrap canvas { display: block; width: 100% !important; height: 100% !important; }

.bm-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.72); backdrop-filter: blur(10px);
  color: var(--muted); font-family: var(--sans); font-size: .72rem; font-weight: 500;
  padding: 7px 18px; border-radius: 50px; white-space: nowrap;
  pointer-events: none; border: 1px solid rgba(10,47,115,.09); z-index: 10;
}
.bm-hint i { margin-right: 5px; color: var(--teal); }

.bm-reset-btn {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--muted); font-family: var(--sans); font-size: .78rem; font-weight: 600;
  padding: 8px 20px; border-radius: 50px; cursor: pointer; transition: var(--t);
  display: inline-flex; align-items: center; gap: 6px;
}
.bm-reset-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Info panel */
.bm-info-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 38px 34px; min-height: 380px;
  display: flex; align-items: center; box-shadow: var(--sh-sm);
}
.bm-info-panel > div { width: 100%; }

/* Default state */
#bodyInfoDefault { text-align: center; }
.bip-icon {
  width: 66px; height: 66px; background: linear-gradient(135deg, #f0f5ff, #e9f0fb);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; border: 1px solid var(--border);
}
.bip-icon i { font-size: 1.45rem; color: var(--primary); opacity: .45; }
#bodyInfoDefault h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
#bodyInfoDefault p { font-family: var(--sans); font-size: .83rem; color: var(--muted); line-height: 1.68; margin-bottom: 26px; }
.bip-tips { display: flex; flex-direction: column; gap: 9px; }
.bip-tip {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .78rem; color: var(--muted);
  background: var(--ground); padding: 9px 14px; border-radius: 10px;
}
.bip-tip i { color: var(--teal); width: 16px; text-align: center; flex-shrink: 0; }

/* Active pain info */
#bodyInfoActive { display: flex; flex-direction: column; gap: 14px; }
@keyframes bia-enter { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.bia-enter { animation: bia-enter .32s ease; }
.bia-badge {
  display: inline-block; font-family: var(--sans); font-size: .7rem; font-weight: 700;
  color: #fff; padding: 4px 14px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em;
}
#bodyInfoActive h4 { font-family: var(--sans); font-size: 1.12rem; font-weight: 700; color: var(--primary); margin: 0; }
.bia-service { font-family: var(--sans); font-size: .76rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.bia-desc { font-family: var(--sans); font-size: .84rem; color: var(--muted); line-height: 1.68; margin: 0; }
.bia-cta { align-self: flex-start; }
.bia-back {
  background: transparent; border: none; color: var(--muted);
  font-family: var(--sans); font-size: .78rem; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s;
}
.bia-back:hover { color: var(--primary); }

/* Legend */
.bm-legend { display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: center; padding-top: 8px; }
.bm-legend-item { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .79rem; font-weight: 500; color: var(--muted); }
.bm-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }

/* Responsive */
@media (max-width: 960px) {
  .bm-layout { grid-template-columns: 1fr; }
  #bodyCanvasWrap { height: 420px; }
  .bm-info-panel { min-height: auto; }
}
@media (max-width: 520px) {
  #bodyCanvasWrap { height: 350px; }
  .bm-info-panel { padding: 28px 22px; }
}

/* ================================================================ ABOUT — QUAL CARDS */
.qual-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 22px; display: flex; gap: 16px; align-items: flex-start; transition: var(--t); height: 100%; }
.qual-card:hover { border-color: rgba(20,184,196,.3); box-shadow: var(--sh); transform: translateY(-3px); }
.qual-icon { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.qual-icon i { color: #fff; font-size: 1.2rem; }
.qual-title { font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.qual-sub { font-family: var(--sans); font-size: .81rem; color: var(--muted); line-height: 1.58; margin: 0; }

/* ================================================================ ABOUT — APPROACH STEPS */
.approach-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); transition: var(--t); margin-bottom: 12px; }
.approach-item:last-child { margin-bottom: 0; }
.approach-item:hover { border-color: rgba(20,184,196,.3); box-shadow: var(--sh-sm); }
.approach-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-d)); color: #fff; font-family: var(--sans); font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.approach-item h4 { font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.approach-item p { font-family: var(--sans); font-size: .82rem; color: var(--muted); line-height: 1.58; margin: 0; }

/* ================================================================ RESPONSIVE */
@media (max-width: 991px) { .section { padding: 72px 0; } .hero-section { padding: 60px 0 72px; min-height: auto; } }
@media (max-width: 767px)  { .section { padding: 56px 0; } .cta-banner { padding: 60px 0; } }
@media (max-width: 575px)  { .section { padding: 48px 0; } .wa-float { bottom:18px; right:18px; } .back-to-top { bottom:84px; right:18px; } .hero-stats { gap:18px; } .sec-title { font-size:1.75rem; } }

/* Desktop Large */
.testimonial-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollTestimonials 80s linear infinite;
}

.testimonial-slider:hover {
    animation-play-state: paused;
}

.test-card {
    width: 380px;
    min-width: 380px;
    flex-shrink: 0;
}

/* Laptop */
@media (max-width: 1199px) {
    .test-card {
        width: 340px;
        min-width: 340px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .testimonial-slider {
        gap: 20px;
        animation-duration: 70s;
    }

    .test-card {
        width: 300px;
        min-width: 300px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .testimonial-slider {
        gap: 16px;
        animation-duration: 60s;
    }

    .test-card {
        width: 280px;
        min-width: 280px;
        padding: 20px;
    }

    .test-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .test-name {
        font-size: 15px;
    }

    .test-cond {
        font-size: 13px;
    }

    .test-av {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .testimonial-slider {
        gap: 14px;
        animation-duration: 50s;
    }

    .test-card {
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: 350px;
        padding: 18px;
    }

    .test-stars {
        font-size: 16px;
    }

    .test-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .test-name {
        font-size: 14px;
        font-weight: 600;
    }

    .test-cond {
        font-size: 12px;
    }

    .test-av {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .test-card {
        width: calc(100vw - 24px);
        min-width: calc(100vw - 24px);
        padding: 16px;
    }

    .test-text {
        font-size: 12px;
    }
}

/* Infinite Scroll Animation */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Desktop Auto Scroll */
.testimonial-wrapper{
    overflow:hidden;
    position:relative;
}

.testimonial-slider{
    display:flex;
    gap:24px;
    width:max-content;
    animation:scrollTestimonials 80s linear infinite;
}

.testimonial-slider:hover{
    animation-play-state:paused;
}

.test-card{
    width:380px;
    min-width:380px;
}

/* Mobile Slider */
@media (max-width: 767px){

    .testimonial-wrapper{
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;
        -webkit-overflow-scrolling:touch;
    }

    .testimonial-wrapper::-webkit-scrollbar{
        display:none;
    }

    .testimonial-slider{
        animation:none;
        width:auto;
        display:flex;
        gap:16px;
    }

    .test-card{
        width:90vw;
        min-width:90vw;
        scroll-snap-align:center;
    }

    .testimonial-nav{
        display:flex !important;
        justify-content:center;
        gap:12px;
        margin-top:20px;
    }
}

/* Hide arrows on desktop */
.testimonial-nav{
    display:none;
}

.testimonial-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

.testimonial-btn:hover{
    transform:scale(1.05);
}