/* =========================================================
   HolisticDoctorFinder — Master Stylesheet
   ========================================================= */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /* Green palette */
  --green-900: #1a3a2a;
  --green-800: #1f4a33;
  --green-700: #25603f;
  --green-600: #2d7a50;
  --green-500: #38996a;
  --green-400: #4db882;
  --green-300: #7ed4a8;
  --green-200: #b3e8cb;
  --green-100: #d9f5e8;
  --green-50:  #f0faf5;

  /* Gold palette */
  --gold-700: #a07000;
  --gold-600: #c98c00;
  --gold-500: #e8a800;
  --gold-400: #f0bc2e;
  --gold-300: #f5cf6b;
  --gold-200: #fae7b3;
  --gold-100: #fdf4d9;

  /* Neutrals */
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;

  /* Semantic */
  --red:         #dc2626;
  --red-light:   #fee2e2;
  --yellow:      #d97706;
  --yellow-light:#fef3c7;
  --blue:        #2563eb;
  --blue-light:  #dbeafe;

  /* Surfaces */
  --surface:     #ffffff;
  --surface-alt: #f8faf9;
  --cream:       #fdfcf8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Fira Code', monospace;

  /* Spacing */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 56px rgba(0,0,0,.12);

  /* Transitions */
  --ease: cubic-bezier(.25,.8,.25,1);
  --t-fast: 150ms var(--ease);
  --t: 250ms var(--ease);
  --t-slow: 400ms var(--ease);

  /* Layout */
  --max-w: 1200px;
  --max-w-sm: 800px;
  --header-h: 72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--gray-800); background: var(--surface); }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--green-900); }
p + p { margin-top: .75rem; }
strong { font-weight: 600; }

/* ── Utilities ─────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 1.5rem; }
.container-sm { max-width: var(--max-w-sm); margin-inline: auto; padding-inline: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.spin { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1.25rem; border-radius: var(--radius); border: 2px solid transparent;
  font-size: .9rem; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
  transition: all var(--t-fast); text-decoration: none; cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; }
.btn svg { flex-shrink: 0; }

.btn-primary   { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-800); border-color: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-gold      { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-400); border-color: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline   { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-50); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-ghost     { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-800); }

.btn-danger    { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { background: #b91c1c; }

.btn-sm  { padding: .375rem .875rem; font-size: .8rem; }
.btn-lg  { padding: .875rem 2rem;  font-size: 1rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; pointer-events: none; }

/* ── Badges / Tags ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .7rem; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600; letter-spacing: .03em;
}
.badge-green   { background: var(--green-100); color: var(--green-700); }
.badge-gold    { background: var(--gold-100);  color: var(--gold-700); }
.badge-gray    { background: var(--gray-100);  color: var(--gray-600); }
.badge-red     { background: var(--red-light); color: var(--red); }
.badge-yellow  { background: var(--yellow-light); color: var(--yellow); }
.badge-blue    { background: var(--blue-light); color: var(--blue); }

/* ── Flash Messages ─────────────────────────────────────── */
.flash-container { position: fixed; top: calc(var(--header-h) + 1rem); right: 1rem; z-index: 9000; display: flex; flex-direction: column; gap: .5rem; max-width: 380px; }
.flash { display: flex; align-items: flex-start; gap: .75rem; padding: .875rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: .875rem; font-weight: 500; }
.flash-success { background: var(--green-50); border: 1px solid var(--green-200); color: var(--green-800); }
.flash-error   { background: var(--red-light); border: 1px solid #fca5a5; color: #991b1b; }
.flash-warning { background: var(--yellow-light); border: 1px solid #fcd34d; color: #92400e; }
.flash-info    { background: var(--blue-light); border: 1px solid #93c5fd; color: #1e40af; }
.flash__icon   { font-size: 1rem; margin-top: .05rem; flex-shrink: 0; }
.flash__body   { flex: 1; }
.flash__close  { background: none; border: none; font-size: 1.1rem; line-height: 1; opacity: .5; padding: 0; transition: opacity var(--t-fast); cursor: pointer; }
.flash__close:hover { opacity: 1; }

/* ── Header ─────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; transition: background var(--t), box-shadow var(--t);
  background: transparent;
}
#site-header.scrolled { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
#site-header.dark { background: var(--green-900); }
#site-header.dark.scrolled { background: rgba(26,58,42,.97); }

.header-inner { display: flex; align-items: center; gap: 1rem; height: 100%; width: 100%; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--green-800); white-space: nowrap; text-decoration: none; flex-shrink: 0; }
.site-logo svg { color: var(--green-600); }
.dark .site-logo { color: #fff; }
.dark .site-logo svg { color: var(--green-300); }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav-link { padding: .5rem .75rem; border-radius: var(--radius); font-size: .875rem; font-weight: 500; color: var(--gray-700); transition: all var(--t-fast); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--green-700); background: var(--green-50); }
.dark .nav-link { color: rgba(255,255,255,.8); }
.dark .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }

/* User Menu */
.user-menu { position: relative; }
.user-menu__trigger { display: flex; align-items: center; gap: .5rem; padding: .4rem .75rem .4rem .4rem; border-radius: var(--radius-full); background: var(--green-50); border: 1px solid var(--green-200); transition: all var(--t-fast); cursor: pointer; }
.user-menu__trigger:hover { background: var(--green-100); }
.dark .user-menu__trigger { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.user-menu__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--green-200); }
.user-menu__name { font-size: .85rem; font-weight: 600; color: var(--green-800); }
.dark .user-menu__name { color: #fff; }
.user-menu__caret { width: 16px; height: 16px; color: var(--gray-500); transition: transform var(--t-fast); }
.user-menu.open .user-menu__caret { transform: rotate(180deg); }
.user-menu__dropdown { position: absolute; top: calc(100% + .5rem); right: 0; min-width: 200px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200); padding: .5rem; display: none; z-index: 200; }
.user-menu.open .user-menu__dropdown { display: block; animation: fadeDown .15s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.user-menu__item { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border-radius: var(--radius); font-size: .875rem; color: var(--gray-700); transition: all var(--t-fast); white-space: nowrap; }
.user-menu__item:hover { background: var(--green-50); color: var(--green-800); }
.user-menu__item.danger:hover { background: var(--red-light); color: var(--red); }
.user-menu__divider { height: 1px; background: var(--gray-200); margin: .3rem 0; }

/* Mobile nav toggle */
#nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; background: none; border: none; }
#nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--t-fast); }
.dark #nav-toggle span { background: #fff; }
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta-group { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-500) 100%);
  color: #fff; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 5rem 0 4rem;
}
.hero__orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); opacity: .25;
}
.hero__orb--1 { width: 500px; height: 500px; background: var(--green-400); top: -100px; right: -100px; animation: drift1 18s ease-in-out infinite; }
.hero__orb--2 { width: 350px; height: 350px; background: var(--gold-400); bottom: -80px; left: 10%; animation: drift2 22s ease-in-out infinite; }
.hero__orb--3 { width: 200px; height: 200px; background: var(--green-300); top: 40%; right: 25%; animation: drift1 14s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.05); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-20px) scale(1.08); } }

.hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-300); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 500px; line-height: 1.7; margin-bottom: 2rem; }

/* Search box */
.search-box { background: rgba(255,255,255,.12); backdrop-filter: blur(16px); border-radius: var(--radius-xl); padding: 1.5rem; border: 1px solid rgba(255,255,255,.2); }
.search-box__row { display: flex; gap: .75rem; align-items: stretch; flex-wrap: wrap; }
.search-box__field { flex: 1 1 200px; position: relative; }
.search-box__field input { width: 100%; height: 52px; padding: 0 1rem 0 2.8rem; border-radius: var(--radius-lg); border: none; background: rgba(255,255,255,.95); font-size: .95rem; color: var(--gray-800); outline: none; transition: box-shadow var(--t-fast); }
.search-box__field input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.5); }
.search-box__icon { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.search-box__field .location-detect { position: absolute; right: .6rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--green-600); padding: .25rem; display: flex; }
.search-box__field .location-detect:hover { color: var(--green-800); }
.search-box__btn { flex-shrink: 0; height: 52px; }
.search-suggestions { position: absolute; top: calc(100% + .3rem); left: 0; right: 0; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 50; overflow: hidden; }
.suggestion-item { padding: .75rem 1rem; font-size: .875rem; color: var(--gray-700); cursor: pointer; transition: background var(--t-fast); }
.suggestion-item:hover { background: var(--green-50); color: var(--green-800); }

/* Hero stats */
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stat__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.hero-stat__label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .2rem; }

/* ── Section headings ───────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--green-900); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-cream { background: var(--cream); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-600); margin-bottom: .6rem; }
.section-dark .eyebrow { color: var(--green-300); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-head p { margin-top: .75rem; color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

/* ── Specialty cards ────────────────────────────────────── */
.specialties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.specialty-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem; padding: 1.5rem 1rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--gray-200); transition: all var(--t); cursor: pointer; text-decoration: none; color: var(--gray-700); }
.specialty-card:hover { border-color: var(--green-400); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--green-800); }
.specialty-card__icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--green-50); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: background var(--t-fast); }
.specialty-card:hover .specialty-card__icon { background: var(--green-100); }
.specialty-card__name { font-weight: 600; font-size: .875rem; line-height: 1.3; }
.specialty-card__count { font-size: .75rem; color: var(--gray-400); }

/* ── Doctor cards ───────────────────────────────────────── */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.doctor-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.doctor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.doctor-card__cover { height: 110px; background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%); position: relative; }
.doctor-card__avatar { position: absolute; bottom: -28px; left: 1.25rem; width: 60px; height: 60px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; background: var(--green-100); }
.doctor-card__body { padding: 2.2rem 1.25rem 1.25rem; flex: 1; }
.doctor-card__name { font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: .15rem; }
.doctor-card__cred { font-size: .8rem; color: var(--gray-500); margin-bottom: .5rem; }
.doctor-card__specialties { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
.doctor-card__specialty { padding: .2rem .6rem; border-radius: var(--radius-full); background: var(--green-50); color: var(--green-700); font-size: .72rem; font-weight: 600; }
.doctor-card__meta { display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--gray-500); margin-bottom: .5rem; }
.doctor-card__meta svg { flex-shrink: 0; color: var(--gray-400); }
.doctor-card__rating { display: flex; align-items: center; gap: .3rem; font-size: .8rem; font-weight: 600; color: var(--gray-700); }
.doctor-card__footer { padding: .75rem 1.25rem 1.25rem; border-top: 1px solid var(--gray-100); display: flex; gap: .5rem; }
.doctor-card__footer .btn { flex: 1; }
.plan-badge { position: absolute; top: .75rem; right: .75rem; }

/* ── Stars ──────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; }
.star-full  { color: var(--gold-500); }
.star-half  { color: var(--gold-500); }
.star-empty { color: var(--gray-300); }

/* ── Trust banner ───────────────────────────────────────── */
.trust-banner { background: var(--green-800); color: #fff; padding: 2rem 0; }
.trust-banner__inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.trust-item__text strong { display: block; font-size: .95rem; font-weight: 600; }
.trust-item__text span { font-size: .8rem; opacity: .7; }

/* ── How it works ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-card__num { width: 52px; height: 52px; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.step-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ── Provider CTA ───────────────────────────────────────── */
.provider-cta { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; border-radius: var(--radius-xl); padding: 4rem; display: flex; align-items: center; gap: 3rem; overflow: hidden; position: relative; }
.provider-cta__content { flex: 1; }
.provider-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; margin-bottom: 1rem; }
.provider-cta p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.provider-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.provider-cta__mockup { flex: 0 0 320px; }
.mockup-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-xl); }
.mockup-card__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }
.mockup-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-100); }
.mockup-card__info span { display: block; height: 10px; border-radius: 4px; background: var(--gray-200); }
.mockup-card__info span:first-child { width: 120px; margin-bottom: 6px; }
.mockup-card__info span:last-child { width: 80px; background: var(--green-100); }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1rem; }
.mockup-stat { background: var(--gray-50); border-radius: var(--radius); padding: .75rem; }
.mockup-stat span { display: block; }
.mockup-stat span:first-child { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--green-700); }
.mockup-stat span:last-child { font-size: .7rem; color: var(--gray-400); margin-top: .1rem; }
.mockup-bar { height: 8px; border-radius: 4px; background: var(--gray-100); margin-bottom: .5rem; overflow: hidden; }
.mockup-bar__fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green-500), var(--green-400)); }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--gray-200); display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card__quote { font-size: .95rem; color: var(--gray-700); line-height: 1.7; flex: 1; }
.testimonial-card__quote::before { content: '"'; font-size: 2.5rem; color: var(--green-200); font-family: var(--font-display); line-height: 0; vertical-align: -.5rem; margin-right: .1rem; }
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--green-100); }
.testimonial-card__name { font-weight: 600; font-size: .875rem; color: var(--green-900); }
.testimonial-card__role { font-size: .78rem; color: var(--gray-400); }

/* ── Blog cards ─────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card__thumb { aspect-ratio: 16/9; background: var(--green-100); overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); margin-bottom: .5rem; }
.blog-card__title { font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: .5rem; line-height: 1.35; }
.blog-card__excerpt { font-size: .875rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; font-size: .78rem; color: var(--gray-400); }

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter { background: linear-gradient(135deg, var(--green-800), var(--green-600)); color: #fff; border-radius: var(--radius-xl); padding: 3.5rem; text-align: center; }
.newsletter h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .75rem; }
.newsletter p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.newsletter__form { display: flex; max-width: 480px; margin-inline: auto; gap: 0; }
.newsletter__form input { flex: 1; height: 52px; padding: 0 1.25rem; border: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); font-size: .9rem; outline: none; }
.newsletter__form button { height: 52px; padding: 0 1.5rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

/* ── Footer ─────────────────────────────────────────────── */
.footer-wave { display: block; line-height: 0; margin-bottom: -2px; }
.site-footer { background: var(--green-900); color: rgba(255,255,255,.75); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .site-logo { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .5rem; }
.social-link { width: 36px; height: 36px; border-radius: var(--radius); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: all var(--t-fast); }
.social-link:hover { background: var(--green-600); color: #fff; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--t-fast); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.35); margin-top: 1rem; line-height: 1.6; }

/* ── Search layout ──────────────────────────────────────── */
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start; padding: 2rem 0 4rem; }
.search-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); }
.filter-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1rem; }
.filter-card h3 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 1rem; }
.filter-option { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; cursor: pointer; font-size: .875rem; color: var(--gray-700); }
.filter-option input[type=checkbox] { accent-color: var(--green-600); width: 15px; height: 15px; cursor: pointer; }
.filter-range { width: 100%; accent-color: var(--green-600); }
.search-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: .5rem; }
.search-header h2 { font-size: 1.3rem; }
.search-controls { display: flex; align-items: center; gap: .75rem; }
.sort-select { padding: .4rem .75rem; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: .85rem; background: #fff; color: var(--gray-700); }
.view-toggle { display: flex; border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.view-btn { padding: .4rem .6rem; background: #fff; border: none; color: var(--gray-400); transition: all var(--t-fast); }
.view-btn.active { background: var(--green-600); color: #fff; }
.search-results-list .doctor-card { flex-direction: row; }
.search-results-list .doctor-card__cover { width: 100px; height: auto; flex-shrink: 0; }
.search-results-list .doctor-card__avatar { bottom: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); position: absolute; }

/* ── Doctor profile (public) ────────────────────────────── */
.profile-hero { background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%); color: #fff; padding: 3rem 0 5rem; }
.profile-hero__inner { display: flex; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.profile-hero__avatar { width: 120px; height: 120px; border-radius: 50%; border: 4px solid #fff; object-fit: cover; background: var(--green-200); flex-shrink: 0; }
.profile-hero__info h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: .25rem; }
.profile-hero__cred { color: rgba(255,255,255,.75); margin-bottom: .5rem; }
.profile-hero__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.profile-hero__tag { background: rgba(255,255,255,.15); border-radius: var(--radius-full); padding: .25rem .7rem; font-size: .78rem; font-weight: 600; }
.profile-content { margin-top: -3rem; position: relative; z-index: 1; }
.profile-main { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.profile-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 1.75rem; margin-bottom: 1.5rem; }
.profile-card h2 { font-size: 1.2rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--gray-100); }
.profile-card h3 { font-size: 1rem; margin-bottom: .75rem; color: var(--green-800); }
.education-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.education-item__icon { width: 40px; height: 40px; border-radius: var(--radius); background: var(--green-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-600); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; padding: .4rem 0; border-bottom: 1px solid var(--gray-100); }
.hours-row .day { color: var(--gray-600); font-weight: 500; }
.hours-row .time { color: var(--gray-800); }
.inquiry-card { background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--radius-lg); padding: 1.75rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.inquiry-card h3 { font-size: 1.15rem; color: var(--green-900); margin-bottom: 1.25rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; height: 200px; background: var(--green-100); margin-top: 1rem; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Dashboard layout ───────────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--header-h)); }
.dash-sidebar { background: var(--green-900); color: #fff; padding: 1.5rem 0; }
.dash-sidebar__user { padding: 0 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1rem; }
.dash-sidebar__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--green-700); margin-bottom: .75rem; }
.dash-sidebar__name { font-weight: 700; font-size: .95rem; color: #fff; }
.dash-sidebar__plan { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .15rem; }
.dash-nav__section { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); padding: .75rem 1.25rem .4rem; }
.dash-nav__item { display: flex; align-items: center; gap: .7rem; padding: .65rem 1.25rem; margin: .1rem .5rem; border-radius: var(--radius); font-size: .875rem; color: rgba(255,255,255,.7); transition: all var(--t-fast); cursor: pointer; text-decoration: none; }
.dash-nav__item:hover { background: rgba(255,255,255,.07); color: #fff; }
.dash-nav__item.active { background: var(--green-700); color: #fff; }
.dash-nav__item svg { flex-shrink: 0; }
.dash-nav__badge { margin-left: auto; background: var(--gold-500); color: var(--green-900); border-radius: var(--radius-full); padding: .1rem .5rem; font-size: .7rem; font-weight: 700; }
.dash-main { padding: 2rem 2.5rem; background: var(--gray-50); overflow-x: hidden; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.dash-topbar h1 { font-size: 1.6rem; }

/* Dash stat cards */
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.dash-stat { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 1.25rem; }
.dash-stat__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); margin-bottom: .4rem; }
.dash-stat__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-800); line-height: 1; }
.dash-stat__change { font-size: .78rem; margin-top: .3rem; }
.dash-stat__change.up   { color: var(--green-600); }
.dash-stat__change.down { color: var(--red); }

/* Profile completeness */
.completeness-bar { height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; margin: .5rem 0; }
.completeness-bar__fill { height: 100%; background: linear-gradient(90deg, var(--green-500), var(--green-400)); border-radius: 4px; transition: width .6s var(--ease); }
.completeness-item { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: .85rem; }
.completeness-item .check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .65rem; }
.completeness-item.done .check { background: var(--green-100); color: var(--green-600); }
.completeness-item.todo .check { background: var(--gray-100); color: var(--gray-400); }
.completeness-item.done { color: var(--gray-700); }
.completeness-item.todo { color: var(--gray-400); }

/* Dash card */
.dash-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); padding: 1.5rem; margin-bottom: 1.5rem; }
.dash-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.dash-card__header h2 { font-size: 1.1rem; }
.dash-card__header h3 { font-size: 1rem; }

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-label .req { color: var(--red); margin-left: .2rem; }
.form-control {
  display: block; width: 100%; padding: .6rem .875rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-size: .9rem; color: var(--gray-900); background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-control:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); }
.form-control.error { border-color: var(--red); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: .78rem; color: var(--gray-400); margin-top: .3rem; }
.form-error { font-size: .78rem; color: var(--red); margin-top: .3rem; }
.input-group { position: relative; }
.input-group .form-control { padding-left: 2.5rem; }
.input-group .input-icon { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
.input-group .input-addon { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); background: none; border: none; cursor: pointer; display: flex; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-100); }
.form-section:last-child { border-bottom: none; }
.form-section h3 { font-size: 1rem; color: var(--green-800); margin-bottom: 1rem; }
.char-counter { display: block; font-size: .75rem; color: var(--gray-400); text-align: right; margin-top: .2rem; }

/* ── Auth card ──────────────────────────────────────────── */
.auth-page { min-height: 100vh; background: linear-gradient(160deg, var(--green-900), var(--green-700)); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth-card { background: #fff; border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); }
.auth-card__logo { text-align: center; margin-bottom: 2rem; }
.auth-card__logo .site-logo { justify-content: center; }
.auth-card h1 { font-size: 1.6rem; text-align: center; margin-bottom: .4rem; }
.auth-card__sub { text-align: center; color: var(--gray-500); font-size: .9rem; margin-bottom: 2rem; }
.auth-divider { display: flex; align-items: center; gap: .75rem; margin: 1.5rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.auth-divider span { font-size: .78rem; color: var(--gray-400); }
.auth-footer { text-align: center; font-size: .875rem; color: var(--gray-500); margin-top: 1.5rem; }
.auth-footer a { color: var(--green-700); font-weight: 600; }

/* ── Pricing cards ──────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card { background: #fff; border: 2px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; transition: all var(--t); }
.pricing-card.popular { border-color: var(--green-500); position: relative; }
.pricing-card.popular::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green-600); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .8rem; border-radius: var(--radius-full); white-space: nowrap; }
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card__name { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-600); margin-bottom: .5rem; }
.pricing-card__price { margin-bottom: 1.5rem; }
.pricing-card__amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--green-900); line-height: 1; }
.pricing-card__amount sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; }
.pricing-card__period { font-size: .85rem; color: var(--gray-400); }
.pricing-card__features { list-style: none; margin-bottom: 2rem; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: .6rem; padding: .4rem 0; font-size: .875rem; color: var(--gray-600); }
.pricing-card__features li::before { content: '✓'; color: var(--green-500); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.pricing-card__features li.no { color: var(--gray-400); }
.pricing-card__features li.no::before { content: '–'; color: var(--gray-300); }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .3rem; margin-top: 2.5rem; }
.pagination a, .pagination span { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); font-size: .875rem; font-weight: 500; transition: all var(--t-fast); border: 1px solid transparent; }
.pagination a { color: var(--gray-600); border-color: var(--gray-200); }
.pagination a:hover { background: var(--green-50); border-color: var(--green-300); color: var(--green-700); }
.pagination .current { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.pagination .dots { color: var(--gray-400); border: none; }
.pagination .prev, .pagination .next { width: auto; padding: 0 .75rem; }

/* ── Admin layout ───────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - var(--header-h)); }
.admin-sidebar { background: var(--gray-900); color: #fff; padding: 1rem 0; }
.admin-sidebar .admin-section { font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: .75rem 1rem .3rem; }
.admin-nav-item { display: flex; align-items: center; gap: .65rem; padding: .6rem 1rem; margin: .1rem .4rem; border-radius: var(--radius); font-size: .85rem; color: rgba(255,255,255,.65); transition: all var(--t-fast); text-decoration: none; }
.admin-nav-item:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-nav-item.active { background: var(--green-800); color: #fff; }
.admin-main { padding: 2rem 2.5rem; background: var(--gray-50); }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.admin-header h1 { font-size: 1.5rem; }

/* Data table */
.data-table-wrap { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table th { text-align: left; padding: .75rem 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); background: var(--gray-50); border-bottom: 1px solid var(--gray-200); white-space: nowrap; }
.data-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }
.data-table .actions { display: flex; align-items: center; gap: .4rem; }
.table-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--gray-200); gap: .75rem; flex-wrap: wrap; }
.table-toolbar .search-input { padding: .45rem .875rem .45rem 2.25rem; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: .85rem; width: 220px; outline: none; }
.table-toolbar .search-input:focus { border-color: var(--green-500); box-shadow: 0 0 0 2px var(--green-100); }
.table-filter-group { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Status badges */
.status { display: inline-flex; align-items: center; gap: .3rem; padding: .2rem .65rem; border-radius: var(--radius-full); font-size: .72rem; font-weight: 600; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.status-active   { background: var(--green-100); color: var(--green-700); }
.status-active::before   { background: var(--green-500); }
.status-pending  { background: var(--yellow-light); color: var(--yellow); }
.status-pending::before  { background: var(--yellow); }
.status-suspended { background: var(--red-light); color: var(--red); }
.status-suspended::before { background: var(--red); }
.status-inactive { background: var(--gray-100); color: var(--gray-500); }
.status-inactive::before { background: var(--gray-400); }

/* ── Reveal animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .provider-cta { flex-direction: column; }
  .provider-cta__mockup { display: none; }
  .dash-layout { grid-template-columns: 200px 1fr; }
  .profile-main { grid-template-columns: 1fr 300px; }
  .admin-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar { position: static; }
  #nav-toggle { display: flex; }
  #main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--green-900); flex-direction: column; align-items: flex-start;
    padding: 1.5rem; gap: .25rem; transform: translateX(100%); transition: transform var(--t);
    overflow-y: auto;
  }
  #main-nav.open { transform: none; }
  .nav-link { color: #fff; font-size: 1.05rem; padding: .75rem 1rem; width: 100%; }
  .nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
  .nav-cta-group { flex-direction: column; width: 100%; margin-top: 1rem; }
  .nav-cta-group .btn { width: 100%; justify-content: center; }
  .user-menu { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .profile-main { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 3rem; min-height: auto; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-radius: var(--radius-lg); }
  .newsletter__form button { border-radius: var(--radius-lg); }
}
@media (max-width: 480px) {
  .doctors-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-banner__inner { gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .search-box__row { flex-direction: column; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-main { padding: 1rem; }
  .admin-main { padding: 1rem; }
}
