/* ============================================================
   Help Rehab Clinic — Main Stylesheet (v2 — Full Upgrade)
   Design: Warm Medical Premium · DM Serif Display + DM Sans
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --teal-dark:  #0f766e;
  --teal-50:    #f0fdfa;
  --teal-100:   #ccfbf1;
  --warm:       #1c1917;
  --warm-700:   #44403c;
  --warm-500:   #78716c;
  --warm-300:   #d6d3d1;
  --warm-100:   #f5f5f4;
  --white:      #ffffff;
  --gold:       #d97706;
  --whatsapp:   #25d366;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --shadow-teal: 0 8px 30px rgba(13,148,136,.25);

  --nav-h: 72px;
  --announce-h: 40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  /* Light mode surfaces */
  --bg-page:    #ffffff;
  --bg-alt:     #f5f5f4;
  --bg-card:    #ffffff;
  --text-body:  #1c1917;
  --text-muted: #78716c;
  --border:     #d6d3d1;
}

/* ── Dark Mode ─────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-page:    #0f1110;
  --bg-alt:     #1a1e1d;
  --bg-card:    #1e2422;
  --text-body:  #e7e5e4;
  --text-muted: #a8a29e;
  --border:     #2a3330;
  --warm:       #e7e5e4;
  --warm-700:   #d6d3d1;
  --warm-500:   #a8a29e;
  --warm-300:   #2a3330;
  --warm-100:   #1a1e1d;
  --white:      #1e2422;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  width: 100%;
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.18;
  color: var(--text-body);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,148,136,.35); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }

/* ── Page Loader ───────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-badge {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
  animation: loaderPulse 1s ease infinite alternate;
}
@keyframes loaderPulse { from { transform: scale(.95); } to { transform: scale(1.05); } }
.loader-name { color: rgba(255,255,255,.9); font-weight: 600; font-size: 1.05rem; margin-bottom: 20px; }
.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 100px;
  transition: width .8s ease;
}

/* ── Scroll Progress ───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 9998;
  width: 0%;
  transition: width .1s linear;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
  background: var(--teal-dark);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  z-index: 200;
  position: relative;
  transition: height .3s ease, opacity .3s ease;
}
.announce-bar.hidden { height: 0; opacity: 0; overflow: hidden; }
.announce-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  position: relative;
}
.announce-inner a { color: rgba(255,255,255,.9); text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }
.announce-dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.announce-close {
  position: absolute;
  right: 24px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.announce-close:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .site-header.scrolled {
  background: rgba(15,17,16,.96);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-badge {
  width: 40px; height: 40px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  transition: transform .2s;
}
.nav-logo:hover .logo-badge { transform: rotate(-5deg) scale(1.1); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 700; font-size: .95rem; color: var(--text-body); }
.logo-loc  { font-size: .72rem; color: var(--text-muted); }
.site-header:not(.scrolled) .logo-name,
.site-header:not(.scrolled) .logo-loc { color: rgba(255,255,255,.9); }
.site-header:not(.scrolled) .logo-badge { background: rgba(255,255,255,.2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover { background: var(--warm-100); color: var(--teal); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Dark toggle */
.dark-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  transition: var(--transition);
}
.dark-toggle:hover { background: rgba(255,255,255,.22); }
.site-header.scrolled .dark-toggle { background: var(--warm-100); color: var(--text-muted); }
.site-header.scrolled .dark-toggle:hover { background: var(--warm-300); color: var(--teal); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.lang-sel {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  width: auto;
}
.site-header.scrolled .lang-sel {
  background: var(--warm-100);
  border-color: var(--border);
  color: var(--text-body);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--text-body); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.04);
  animation: heroZoom 14s ease infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,24,22,.82) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.22) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  flex: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%  { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--teal-light); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .hero-card { background: rgba(30,36,34,.95); }
.hero-card-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 8px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--text-body);
}
.hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--warm-700);
}
.hero-card-contact {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hcc-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 2px; }
.hcc-val { font-weight: 600; font-size: .9rem; color: var(--text-body); }
.hcc-val a { color: var(--teal); }

/* Stats bar */
.hero-stats-bar {
  background: var(--teal-dark);
  position: relative;
  z-index: 2;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; color: var(--teal-light); font-weight: 700; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 4px; letter-spacing: .04em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.2); }

/* ── About ─────────────────────────────────────────────────── */
.about { background: var(--bg-page); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-teal);
}
.aib-num { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.aib-text { font-size: .75rem; opacity: .85; }
.about-text { padding-left: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.02rem; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
[data-theme="dark"] .pillar { background: rgba(13,148,136,.08); border-color: rgba(13,148,136,.2); }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pillar-icon svg { width: 20px; height: 20px; stroke: #fff; }
.pillar h3 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; color: var(--text-body); }
.pillar p  { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── Services ──────────────────────────────────────────────── */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.sc-icon {
  width: 52px; height: 52px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
[data-theme="dark"] .sc-icon { background: rgba(13,148,136,.12); }
.service-card:hover .sc-icon { background: var(--teal); }
.sc-icon svg { width: 26px; height: 26px; stroke: var(--teal); transition: var(--transition); }
.service-card:hover .sc-icon svg { stroke: #fff; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-body);
}
.service-card > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.service-card ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.service-card li {
  font-size: .82rem;
  color: var(--warm-700);
  padding-left: 16px;
  position: relative;
}
[data-theme="dark"] .service-card li { color: var(--text-muted); }
.service-card li::before {
  content: "–";
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 700;
}
.sc-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}
.sc-link:hover { color: var(--teal-dark); letter-spacing: .02em; }

/* ── Patient Journey ───────────────────────────────────────── */
.journey { background: var(--bg-page); }
.journey-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 16px;
  justify-content: space-between;
}
.journey-line {
  position: absolute;
  top: 50px;
  left: 80px; right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: .3;
  z-index: 0;
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.js-number {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .1em;
  margin-bottom: 8px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 2px 8px;
  border-radius: 100px;
}
[data-theme="dark"] .js-number { background: rgba(13,148,136,.12); border-color: rgba(13,148,136,.25); }
.js-icon {
  width: 64px; height: 64px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
}
.js-icon:hover { transform: scale(1.1) rotate(-5deg); }
.js-icon svg { width: 28px; height: 28px; stroke: #fff; }
.journey-step h3 { font-size: 1rem; font-weight: 700; color: var(--text-body); margin-bottom: 8px; }
.journey-step p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ── Team ──────────────────────────────────────────────────── */
.team { background: var(--bg-alt); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.doctor-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dc-img { aspect-ratio: 3/4; overflow: hidden; }
.dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.doctor-card:hover .dc-img img { transform: scale(1.05); }

/* Avatar style (no photo) */
.dc-avatar {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.dc-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15) 0%, transparent 60%);
}
.dc-avatar-initials {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: .05em;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.dc-info { padding: 20px; }
.dc-info h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; color: var(--text-body); }
.dc-role { font-size: .78rem; font-weight: 600; color: var(--teal); margin-bottom: 2px; }
.dc-qual { font-size: .75rem; color: var(--text-muted); margin-bottom: 10px; }
.dc-bio  { font-size: .8rem;  color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.dc-social { display: flex; gap: 8px; }
.dc-social-link {
  width: 28px; height: 28px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--teal);
  transition: var(--transition);
}
[data-theme="dark"] .dc-social-link { background: rgba(13,148,136,.1); border-color: rgba(13,148,136,.2); }
.dc-social-link:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--bg-page); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,148,136,.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { background: var(--teal-dark); overflow: hidden; }
.testimonials .section-eyebrow { color: var(--teal-light); }
.testimonials .section-title   { color: #fff; }
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  cursor: grab;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.13); transform: translateY(-4px); }
.testi-stars { font-size: 1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author strong { display: block; font-size: .88rem; color: #fff; font-style: normal; }
.testi-author span   { font-size: .78rem; color: rgba(255,255,255,.55); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.testi-dot.active { background: var(--teal-light); width: 24px; border-radius: 4px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg-alt); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}
.faq-sidebar p { color: var(--text-muted); margin-top: 12px; font-size: .95rem; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-body);
  background: none;
  transition: var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a p {
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ── Contact ───────────────────────────────────────────────── */
.contact { background: var(--bg-page); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.cd-item { display: flex; gap: 16px; }
.cd-icon {
  width: 44px; height: 44px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
[data-theme="dark"] .cd-icon { background: rgba(13,148,136,.1); border-color: rgba(13,148,136,.2); }
.cd-icon:hover { background: var(--teal); }
.cd-icon:hover svg { stroke: #fff; }
.cd-icon svg { width: 20px; height: 20px; stroke: var(--teal); transition: var(--transition); }
.cd-item div { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.cd-item div strong { color: var(--text-body); font-weight: 600; }
.cd-item div a { color: var(--teal); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--bg-page);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}
.form-group input.valid { border-color: #22c55e; }
.form-group input.invalid { border-color: #ef4444; }
.form-group textarea { resize: vertical; min-height: 110px; }
.field-hint {
  font-size: .75rem;
  min-height: 16px;
  display: block;
}
.field-hint.ok  { color: #16a34a; }
.field-hint.err { color: #dc2626; }
.form-status {
  font-size: .88rem;
  font-weight: 500;
  min-height: 20px;
  border-radius: var(--radius-sm);
  padding: 0;
  transition: var(--transition);
}
.form-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 12px 16px;
}
.form-status.error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 12px 16px;
}
.form-privacy { font-size: .76rem; color: var(--text-muted); text-align: center; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--warm);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
[data-theme="dark"] .footer { background: #080c0b; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo .logo-name { color: #fff; }
.footer-brand .nav-logo .logo-loc  { color: rgba(255,255,255,.5); }
.footer-brand .logo-badge { background: var(--teal); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-icon:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .85rem; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 44px; height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── WhatsApp Button ───────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 100px; left: 24px;
  width: 54px; height: 54px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 50;
  transition: var(--transition);
  animation: waPulse 3s ease infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}
.whatsapp-btn:hover { transform: scale(1.1); background: #20b858; }
.whatsapp-tooltip {
  position: absolute;
  left: 64px;
  background: var(--warm);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--warm);
}

/* ── Sticky Mobile CTA ─────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-cta-call {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.sticky-cta-call:hover { background: var(--teal-50); }
.sticky-cta-book {
  flex: 2;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.sticky-cta-book:hover { background: var(--teal-dark); }

/* ── Cookie Notice ─────────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-width: 560px;
  width: calc(100% - 48px);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}
.cookie-notice.show { transform: translateX(-50%) translateY(0); }
.cookie-notice.hide { transform: translateX(-50%) translateY(200px); opacity: 0; }
.cookie-notice p { font-size: .85rem; color: var(--text-muted); flex: 1; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Loading spinner ───────────────────────────────────────── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .journey-track { flex-wrap: wrap; gap: 32px; }
  .journey-line { display: none; }
  .journey-step { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { width: 100%; max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --announce-h: 36px; }
  .section { padding: 64px 0; }

  .announce-inner { font-size: .72rem; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  [data-theme="dark"] .nav-links { background: rgba(15,17,16,.98); }
  .nav-links.open { transform: none; }
  .nav-link { color: var(--text-muted) !important; width: 100%; border-radius: var(--radius-sm); }

  .hamburger { display: flex; }

  .hero-title { font-size: 2.4rem; }
  .hero-inner { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }

  .stat-item { padding: 0 20px; }
  .stats-row { gap: 4px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-img-block img { height: 360px; }
  .about-img-badge { right: 0; bottom: -12px; }
  .testi-card { flex: 0 0 280px; }

  .journey-step { flex: 0 0 100%; }

  .sticky-cta { display: flex; }
  .back-to-top { bottom: 80px; }
  .whatsapp-btn { bottom: 80px; }
  .cookie-notice { bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 80px; right: 16px; }
  .whatsapp-btn { bottom: 80px; left: 16px; }
  .hero-card { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
}

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */

/* ── Staggered reveal variants ─────────────────────────────── */
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-right { opacity:0; transform:translateX( 40px); transition:opacity .7s ease,transform .7s ease; }
.reveal-scale { opacity:0; transform:scale(.88);        transition:opacity .6s ease,transform .6s ease; }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity:1; transform:none; }

/* ── Floating hero particles ───────────────────────────────── */
.hero-particles { position:absolute; inset:0; pointer-events:none; z-index:1; overflow:hidden; }
.particle {
  position:absolute;
  border-radius:50%;
  background:rgba(20,184,166,.18);
  animation:floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform:translateY(0) scale(1);   opacity:.7; }
  100% { transform:translateY(-110vh) scale(1.4); opacity:0; }
}

/* ── Pulse ring on stat numbers ────────────────────────────── */
.stat-item { position:relative; }
.stat-item::after {
  content:'';
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:2px solid rgba(20,184,166,.3);
  animation:pulseRing 3s ease infinite;
  opacity:0;
}
@keyframes pulseRing {
  0%   { transform:scale(.8); opacity:.6; }
  70%  { transform:scale(1.3); opacity:0; }
  100% { opacity:0; }
}

/* ── Shimmer on service cards ──────────────────────────────── */
.service-card::after {
  content:'';
  position:absolute;
  top:0; left:-100%;
  width:60%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.06),transparent);
  transform:skewX(-20deg);
  transition:none;
}
.service-card:hover::after {
  animation:shimmer .6s ease forwards;
}
@keyframes shimmer {
  0%   { left:-100%; }
  100% { left:160%; }
}

/* ── Gradient border glow on doctor cards ──────────────────── */
.doctor-card {
  position:relative;
}
.doctor-card::before {
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:calc(var(--radius-lg) + 1px);
  background:linear-gradient(135deg,var(--teal),#7c3aed,var(--teal-light));
  opacity:0;
  transition:opacity .4s ease;
  z-index:-1;
}
.doctor-card:hover::before { opacity:1; }

/* ── Typewriter cursor on hero title ───────────────────────── */
.typewriter-cursor {
  display:inline-block;
  width:3px;
  height:.85em;
  background:var(--teal-light);
  margin-left:4px;
  vertical-align:middle;
  animation:blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Floating badge on about image ─────────────────────────── */
.about-img-badge {
  animation:floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-8px); }
}

/* ── Journey step icon spin on hover ───────────────────────── */
.journey-step:hover .js-icon {
  animation:spinOnce .5s ease forwards;
}
@keyframes spinOnce {
  0%   { transform:rotate(0deg) scale(1); }
  50%  { transform:rotate(180deg) scale(1.15); }
  100% { transform:rotate(360deg) scale(1); }
}

/* ── Teal underline slide on nav links ─────────────────────── */
.nav-link { position:relative; }
.nav-link::after {
  content:'';
  position:absolute;
  bottom:2px; left:12px; right:12px;
  height:2px;
  background:var(--teal-light);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
  border-radius:2px;
}
.nav-link:hover::after { transform:scaleX(1); }

/* ── Button ripple effect ───────────────────────────────────── */
.btn { position:relative; overflow:hidden; }
.btn .ripple {
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  transform:scale(0);
  animation:rippleAnim .55s linear;
  pointer-events:none;
}
@keyframes rippleAnim {
  to { transform:scale(4); opacity:0; }
}

/* ── Scroll-triggered section fade with slide ──────────────── */
.section-header { transition:opacity .8s ease, transform .8s ease; }

/* ── Testi card entrance ────────────────────────────────────── */
.testi-card {
  animation:none;
}
.testi-card.in-view {
  animation:cardPop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes cardPop {
  from { opacity:0; transform:translateY(20px) scale(.96); }
  to   { opacity:1; transform:none; }
}

/* ── Glowing teal line under section eyebrow ───────────────── */
.section-eyebrow {
  position:relative;
  display:inline-block;
}
.section-eyebrow::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,var(--teal),transparent);
  border-radius:2px;
}

/* ── FAQ item open animation ────────────────────────────────── */
.faq-item { transition:box-shadow .3s ease, transform .3s ease; }
.faq-item.open { transform:scale(1.01); box-shadow:var(--shadow-md); }

/* ── Pillar card pop ────────────────────────────────────────── */
.pillar {
  transition:var(--transition), box-shadow .3s ease;
}
.pillar:hover {
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 8px 24px rgba(13,148,136,.15);
}

/* ── Gallery item zoom with overlay slide ──────────────────── */
.gallery-overlay {
  transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity:1;
  transform:translateY(0);
}

/* ── Loader badge spin ──────────────────────────────────────── */
.loader-logo-badge {
  animation:loaderPulse 1s ease infinite alternate, loaderSpin 8s linear infinite;
}
@keyframes loaderSpin {
  from { border-radius:16px; }
  50%  { border-radius:50%; }
  to   { border-radius:16px; }
}

/* ── Awareness Section ─────────────────────────────────────── */
.awareness-section { background: var(--bg-alt); }

.awareness-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.aw-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.aw-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.aw-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.aw-icon { font-size: 2rem; margin-bottom: 12px; }
.aw-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.aw-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.4;
}
.aw-source {
  font-size: .72rem;
  color: var(--text-muted);
  font-style: italic;
}

.awareness-message {
  background: linear-gradient(135deg, var(--teal-dark), #0f766e);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: #fff;
}
.aw-msg-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.aw-msg-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: floatBadge 4s ease-in-out infinite;
}
.awareness-message h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.awareness-message p {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 640px;
}

@media (max-width: 900px) {
  .awareness-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .awareness-stats { grid-template-columns: 1fr; }
  .aw-msg-inner { flex-direction: column; }
  .awareness-message { padding: 28px 24px; }
}
