/* =========================================================
   Doctory — Design Tokens
   ========================================================= */
:root {
  /* Color */
  --ink-900: #102A4C;
  --ink-700: #1B3A6B;
  --accent-teal: #0EA5A4;
  --lilac-300: #C7BBF5;
  --lilac-100: #EFEAFB;
  --paper: #FBFAFF;
  --white: #FFFFFF;
  --line: rgba(16, 42, 76, 0.10);
  --text-muted: #5B6478;

  /* Type */
  --font-display: "Cairo", system-ui, sans-serif;
  --font-body: "Tajawal", system-ui, sans-serif;

  /* Radius / Shadow */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 32px rgba(27, 58, 107, 0.10);
  --shadow-pop: 0 18px 40px rgba(27, 58, 107, 0.16);

  /* Layout */
  --nav-h: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =========================================================
   Stub / Coming Soon Pages
   ========================================================= */
.stub-page {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 48px 24px;
  text-align: center;
}

.stub-page__inner {
  max-width: 520px;
}

.stub-page__icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.stub-page__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink-900);
}

.stub-page__text {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.stub-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent-teal); outline-offset: 2px; }
.btn--primary { background: var(--ink-700); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-pop); }
.btn--ghost { background: transparent; color: var(--ink-700); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--lilac-100); }

/* =========================================================
   Navbar
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(251, 250, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand__name {
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  position: relative;
  padding-bottom: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links__item.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--accent-teal);
}
.nav-links__item:hover { color: var(--accent-teal); }

/* ---- Specialties full-width mega menu ---- */
.nav-dropdown__chevron { transition: transform 0.18s ease; }
.nav-dropdown.is-open .nav-dropdown__chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-pop);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease;
  z-index: 99;
}
.mega-menu.is-open {
  max-height: 420px;
  opacity: 1;
  overflow-y: auto;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 22px 32px;
}
.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  transition: background 0.12s ease;
}
.mega-menu__link:hover { background: var(--lilac-100); color: var(--ink-700); }
.mega-menu__link .icon { font-size: 16px; }

.navbar__actions { display: flex; align-items: center; gap: 12px; }

.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-700);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger-icon-close { display: none; }
.navbar__burger[aria-expanded="true"] .burger-icon-open { display: none; }
.navbar__burger[aria-expanded="true"] .burger-icon-close { display: block; }

/* ---- Mobile slide-down menu ---- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}
.mobile-menu.is-open { max-height: 80vh; overflow-y: auto; }

.mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: start;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  border: none;
  background: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.mobile-menu__item.is-active { color: var(--accent-teal); }
.mobile-menu__login { color: var(--accent-teal); font-weight: 700; }

.mobile-menu__specialties {
  display: none;
  flex-direction: column;
  background: var(--lilac-100);
  padding: 4px 0;
}
.mobile-menu__specialties.is-open { display: flex; }
.mobile-menu__specialties .mega-menu__link {
  padding: 12px 40px;
  border-radius: 0;
  font-size: 14px;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .navbar__actions .btn--ghost { display: none; }
  .navbar__actions .btn--app-download { display: none; }
  .navbar__burger { display: flex; }
  .mobile-menu { display: flex; }
  .mega-menu__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   Doctory — Home Page Styles (Modern Redesign)
   ========================================================= */

/* ---------------------------------------------------------
   Scroll Reveal Base
--------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------
   Section Base
--------------------------------------------------------- */
.home-section {
  padding: 88px 0;
  position: relative;
}
.home-section:nth-child(even) {
  background: var(--paper);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  background: rgba(14,165,164,0.1);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-head__sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------------------------------------------------------
   Hero — redesigned
--------------------------------------------------------- */
.hero {
  position: relative;
  background: #0a1628;
  overflow: visible;
  padding: calc(var(--nav-h) + 72px) 0 0;
  min-height: 620px;
}

/* Layered background */
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(14,165,164,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 80%, rgba(99,102,241,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(27,58,107,0.7) 0%, transparent 70%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero__glow--1 {
  width: 500px; height: 350px;
  background: radial-gradient(circle, rgba(14,165,164,0.13) 0%, transparent 70%);
  top: -80px; left: 10%;
  animation-delay: 0s;
}
.hero__glow--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  top: 50px; left: 30%;
  animation-delay: -3s;
}
.hero__glow--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(14,165,164,0.08) 0%, transparent 70%);
  bottom: 60px; left: 5%;
  animation-delay: -6s;
}
@keyframes glowPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1) translate(10px, -10px); }
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 80%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
}

/* COPY */
.hero__copy { color: white; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,164,0.15);
  border: 1px solid rgba(14,165,164,0.35);
  color: #5eead4;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px 6px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease both;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2dd4bf;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(45,212,191,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(45,212,191,0); }
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero__title-line1 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: -0.01em;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
.hero__title-line2 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: white;
  letter-spacing: -0.03em;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}
.hero__title-em {
  font-style: normal;
  background: linear-gradient(135deg, #2dd4bf 0%, #818cf8 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero__title-line3 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: white;
  letter-spacing: -0.03em;
  animation: fadeSlideUp 0.7s 0.28s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeSlideUp 0.7s 0.35s ease both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeSlideUp 0.7s 0.42s ease both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* HERO VISUAL — doctor image */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeIn 0.9s 0.2s ease both;
}

.hv-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 18px 20px;
  color: white;
}

.hv-card--main {
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: hvFloat 7s ease-in-out infinite;
}
.hv-card--mini {
  bottom: 10px; right: 0;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  animation: hvFloat 6s ease-in-out infinite;
  animation-delay: -3s;
}
.hv-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 10px 14px;
  color: white;
  animation: hvFloat 5s ease-in-out infinite;
}
.hv-badge--verified {
  top: 175px; right: -20px;
  animation-delay: -2s;
}
@keyframes hvFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hv-doc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  transition: background 0.2s;
}
.hv-doc-row:hover { background: rgba(255,255,255,0.1); }
.hv-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.hv-name { font-size: 13px; font-weight: 700; font-family: var(--font-display); }
.hv-spec { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hv-price { margin-right: auto; font-size: 12px; font-weight: 700; color: #2dd4bf; white-space: nowrap; }
.hv-avail {
  background: rgba(45,212,191,0.2);
  border: 1px solid rgba(45,212,191,0.3);
  color: #2dd4bf;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.hv-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.hv-badge__icon { font-size: 18px; }
.hv-badge__text strong { display: block; font-size: 12px; font-weight: 700; font-family: var(--font-display); }
.hv-badge__text span { font-size: 10px; color: rgba(255,255,255,0.5); }
.hv-mini-avatar {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.hv-mini-name { font-size: 12px; font-weight: 700; font-family: var(--font-display); }
.hv-mini-stars { font-size: 10px; color: #fbbf24; margin-top: 2px; }
.hv-mini-num { margin-right: auto; font-size: 11px; color: rgba(255,255,255,0.45); }

/* SEARCH BAR — below hero content */
.hero__search-wrap {
  position: relative;
  z-index: 50;
  padding-bottom: 0;
  margin-bottom: -36px;
}

.search-bar {
  position: relative;
  background: white;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  align-items: stretch;
  overflow: visible;
  max-width: 960px;
  margin: 0 auto;
  animation: fadeSlideUp 0.7s 0.5s ease both;
}

.search-bar__sep {
  width: 1px;
  background: rgba(16,42,76,0.08);
  margin: 14px 0;
  flex-shrink: 0;
}

.search-bar__field {
  flex: 1;
  padding: 14px 18px 14px;
  position: relative;
  min-width: 0;
}
.search-bar__field--text { flex: 1.2; }

.search-bar__field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.search-bar__input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-bar__input input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-900);
  outline: none;
  cursor: pointer;
  min-width: 0;
  font-weight: 500;
}
.search-bar__input input::placeholder { color: #adb5c7; }
.search-bar__input input:not(:disabled) { cursor: pointer; }
.search-bar__input input:disabled { cursor: not-allowed; opacity: 0.5; }
.search-bar__input svg { color: #c0c8d8; flex-shrink: 0; transition: color 0.18s, transform 0.18s; }
.search-bar__input.is-active svg { color: var(--accent-teal); transform: rotate(180deg); }

.search-bar__submit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0EA5A4 0%, #0891b2 100%);
  color: white;
  border: none;
  padding: 0 28px;
  margin: 6px;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 20px rgba(14,165,164,0.4);
  flex-shrink: 0;
  white-space: nowrap;
}
.search-bar__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(14,165,164,0.5);
}
.search-bar__submit:active { transform: translateY(0); }

/* Dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0; left: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(16,42,76,0.18), 0 0 0 1px rgba(16,42,76,0.06);
  max-height: 280px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
  scrollbar-width: thin;
}
.search-dropdown.is-open { display: block; }
.search-dropdown__search {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(16,42,76,0.07);
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
  border-radius: 14px 14px 0 0;
}
.search-dropdown__search input {
  width: 100%;
  border: 1.5px solid rgba(16,42,76,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-900);
  outline: none;
  background: #f8f9ff;
  transition: border-color 0.15s;
}
.search-dropdown__search input:focus { border-color: var(--accent-teal); }
.search-dropdown__item {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-900);
  transition: background 0.12s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-dropdown__item:hover { background: #f0f9ff; color: var(--accent-teal); }
.search-dropdown__empty {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Quick pills */
.hero__quick {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
  padding-bottom: 56px;
}
.hero__quick-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  white-space: nowrap;
}
.quick-pill:hover {
  background: rgba(14,165,164,0.2);
  border-color: rgba(14,165,164,0.4);
  color: #2dd4bf;
  transform: translateY(-2px);
}

.hero__doctor-img {
  max-height: 380px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45));
  animation: hvFloat 6s ease-in-out infinite;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero__visual { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 32px; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__stats { justify-content: center; }
  .hero__badge { margin: 0 auto 24px; }
}
@media (max-width: 700px) {
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .search-bar {
    flex-direction: column;
    border-radius: 16px;
    max-width: 100%;
  }
  .search-bar__sep { display: none; }
  .search-bar__field { padding: 12px 16px; border-bottom: 1px solid rgba(16,42,76,0.07); }
  .search-bar__field:last-of-type { border-bottom: none; }
  .search-bar__submit { margin: 6px; border-radius: 12px; padding: 14px; justify-content: center; }
  .hero__quick { gap: 6px; padding-bottom: 48px; }
  .quick-pill { font-size: 11px; padding: 4px 10px; }
}

/* ---------------------------------------------------------
   Specialties Section
--------------------------------------------------------- */
.specialties-section {
  background: white;
  padding-top: 96px !important;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.spec-card {
  background: #fafbff;
  border: 1.5px solid rgba(16,42,76,0.08);
  border-radius: 18px;
  padding: 22px 12px 18px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease,
              border-color 0.25s ease,
              background 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.spec-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,165,164,0.07) 0%, rgba(129,140,248,0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.spec-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 20px 44px rgba(14,165,164,0.16);
  border-color: rgba(14,165,164,0.4);
  background: white;
}
.spec-card:hover::after { opacity: 1; }

.spec-card__icon {
  font-size: 34px;
  line-height: 1;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  z-index: 1;
}
.spec-card:hover .spec-card__icon { transform: scale(1.15) rotate(-8deg); }

.spec-card__name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   How It Works
--------------------------------------------------------- */
.how-section {
  background: linear-gradient(160deg, #f4f6ff 0%, #edf2ff 40%, #f0f9ff 100%);
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(14,165,164,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 40px 28px;
  background: white;
  border-radius: 24px;
  border: 1.5px solid rgba(16,42,76,0.07);
  box-shadow: 0 8px 32px rgba(14,165,164,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.how-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(14,165,164,0.15);
  border: 1.5px solid rgba(14,165,164,0.25);
}
.how-step::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(14,165,164,0.08), transparent);
  border-radius: 0 24px 0 80px;
}

.how-step__num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  z-index: 1;
}

.how-step__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.how-step:hover .how-step__icon { transform: scale(1.08) rotate(-3deg); }

.how-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.how-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.how-step__arrow {
  color: var(--lilac-300);
  width: 40px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Featured Doctors
--------------------------------------------------------- */
.doctors-section {
  background: var(--paper);
  position: relative;
}
.doctors-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(199,187,245,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.doctor-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,58,107,0.13);
  border-color: var(--accent-teal);
}
.doctor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--lilac-300));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.doctor-card:hover::before { transform: scaleX(1); }

.doctor-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.doctor-card__avatar {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.doctor-card__avatar--photo {
  object-fit: cover;
  background: var(--lilac-100);
}
.doctor-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-900);
}
.doctor-card__specialty {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

.doctor-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.doctor-card__rating-stars { color: #f59e0b; letter-spacing: 1px; }
.doctor-card__rating-count { color: var(--text-muted); font-weight: 400; }

.doctor-card__divider {
  height: 1px;
  background: var(--line);
}

.doctor-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.doctor-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--lilac-100);
  color: var(--ink-700);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.doctor-card__badge--teal {
  background: rgba(14,165,164,0.1);
  color: var(--accent-teal);
}

.doctor-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
}
.doctor-card__price small {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.doctor-card__cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: opacity 0.2s, transform 0.2s;
}
.doctor-card:hover .doctor-card__cta {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------
   Testimonials Section (NEW)
--------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(135deg, var(--ink-900) 0%, #1a3a7e 100%);
  overflow: hidden;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(14,165,164,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(199,187,245,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials-section .section-head__eyebrow { color: var(--lilac-300); background: rgba(199,187,245,0.15); }
.testimonials-section .section-head__title { color: white; }
.testimonials-section .section-head__sub { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}
.testimonial-card__quote {
  font-size: 40px;
  color: var(--accent-teal);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
  font-family: serif;
}
.testimonial-card__text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.testimonial-card__name {
  color: white;
  font-weight: 700;
  font-size: 14px;
}
.testimonial-card__label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.testimonial-card__stars {
  margin-top: 16px;
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ---------------------------------------------------------
   Reports / Blog
--------------------------------------------------------- */
.reports-section { background: var(--paper); }

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.report-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
}
.report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(27,58,107,0.12);
}
.report-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-card__cover svg,
.report-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.report-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.report-card__tag {
  display: inline-block;
  background: var(--lilac-100);
  color: var(--ink-700);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.report-card__tag--green { background: #f0fdf4; color: #16a34a; }
.report-card__tag--orange { background: #fff7ed; color: #ea580c; }
.report-card__tag--red { background: #fff1f2; color: #e11d48; }
.report-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.45;
  flex: 1;
}
.report-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.report-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.report-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.report-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-teal);
  text-decoration: none;
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.report-card__link:hover { gap: 8px; }

/* ---------------------------------------------------------
   App CTA
--------------------------------------------------------- */
.app-cta-section {
  background: linear-gradient(135deg, #0f2238 0%, var(--ink-700) 60%, #1a3a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.app-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(14,165,164,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.app-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.app-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.app-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}
.app-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.app-store-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.app-store-btn span { display: flex; flex-direction: column; line-height: 1.3; }
.app-store-btn small { font-size: 10px; opacity: 0.7; }
.app-store-btn span b, .app-store-btn span strong { font-size: 16px; font-weight: 700; }

.app-cta__mockup {
  width: 180px;
  flex-shrink: 0;
}
.phone-svg { width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.site-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  opacity: 0.7;
}
.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--accent-teal); color: white; border-color: var(--accent-teal); }

.site-footer__links { display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 4px;
}
.footer-col__link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col__link:hover { color: var(--accent-teal); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__stats { justify-content: center; }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__visual { display: none; }
  .app-cta__inner { grid-template-columns: 1fr; }
  .app-cta__mockup { display: none; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__links { flex-wrap: wrap; }
  .specialties-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .how-steps { flex-direction: column; align-items: center; }
  .how-step__arrow { transform: rotate(90deg); }
  .home-section { padding: 56px 0; }
  .specialties-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* =========================================================
   Search Dropdowns — Missing CSS Fix
   ========================================================= */
.search-dropdown__search {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}
.search-dropdown__search input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-900);
  outline: none;
  background: var(--paper);
  transition: border-color 0.15s;
}
.search-dropdown__search input:focus {
  border-color: var(--accent-teal);
}
.search-dropdown__empty {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.search-bar__input.is-active {
  background: var(--lilac-100);
}
.search-bar__input.is-active svg {
  color: var(--accent-teal);
  transform: rotate(180deg);
}
.search-bar__input svg {
  transition: transform 0.18s ease, color 0.18s;
}

/* =========================================================
   Hero — Redesign 2.0
   ========================================================= */

/* Particles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 6s ease-in-out infinite;
}
.particle--1 { width: 8px; height: 8px; background: var(--accent-teal); top: 20%; right: 15%; animation-delay: 0s; }
.particle--2 { width: 5px; height: 5px; background: var(--lilac-300); top: 60%; right: 30%; animation-delay: 1.5s; }
.particle--3 { width: 10px; height: 10px; background: rgba(14,165,164,0.5); top: 40%; left: 20%; animation-delay: 3s; }
.particle--4 { width: 6px; height: 6px; background: var(--lilac-300); top: 75%; right: 20%; animation-delay: 2s; }
.particle--5 { width: 4px; height: 4px; background: white; top: 30%; left: 35%; animation-delay: 4s; }
@keyframes particleFade {
  0%,100% { opacity: 0; transform: translateY(0) scale(1); }
  30% { opacity: 0.8; }
  70% { opacity: 0.4; transform: translateY(-30px) scale(1.2); }
}

/* Orb 3 */
.hero__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: 40%; left: -60px;
  animation: orbFloat 10s ease-in-out infinite;
  animation-delay: -2s;
}

/* Title lines */
.hero__title-line { color: white; }
.hero__title-white { color: white; }

/* Stats divider */
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

/* Search wrap - sits below hero content */
.hero__search-wrap {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  padding-bottom: 56px;
}

/* Search label icons */
.search-bar__field label {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Quick pills */
.hero__quick-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero__quick-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}
.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.quick-pill:hover {
  background: rgba(14,165,164,0.25);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

/* ===== Hero Visual — Floating Cards ===== */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideDown 0.8s 0.15s ease both;
}

.hero-cards {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 340px;
}

/* Main doctor card */
.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 20px;
  animation: cardFloat 7s ease-in-out infinite;
}
.hero-card--main {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation-delay: 0s;
}
.hero-card--mini {
  position: absolute;
  bottom: 0; left: 0;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  animation-delay: -3.5s;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card__avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}
.hero-card__avatar--sm { width: 34px; height: 34px; border-radius: 8px; font-size: 11px; }
.hero-card__name { color: white; font-weight: 700; font-size: 13px; font-family: var(--font-display); }
.hero-card__spec { color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 2px; }
.hero-card__avail {
  margin-right: auto;
  background: rgba(14,165,164,0.25);
  border: 1px solid rgba(14,165,164,0.4);
  color: #5eead4;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.hero-card__stars { color: #fbbf24; font-size: 12px; }
.hero-card__stars span { color: rgba(255,255,255,0.6); font-size: 11px; margin-right: 4px; }
.hero-card__loc { font-size: 12px; color: rgba(255,255,255,0.5); }
.hero-card__btn {
  background: linear-gradient(135deg, var(--accent-teal), #0891b2);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-card__btn:hover { opacity: 0.9; }
.hero-card-mini-rating {
  margin-right: auto;
  font-size: 12px;
  color: #fbbf24;
  font-weight: 700;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 10px 14px;
  animation: badgeFloat 5s ease-in-out infinite;
}
.hero-badge--1 {
  top: 170px; right: -20px;
  animation-delay: -2s;
}
.hero-badge--2 {
  bottom: 40px; right: 10px;
  animation-delay: -1s;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
.hero-badge__icon { font-size: 20px; }
.hero-badge__title { color: white; font-size: 12px; font-weight: 700; font-family: var(--font-display); }
.hero-badge__sub { color: rgba(255,255,255,0.55); font-size: 10px; margin-top: 1px; }

/* ===== Responsive hero ===== */
@media (max-width: 900px) {
  .hero__visual { display: none; }
  .hero__stat-divider { display: none; }
  .hero__stats { gap: 24px; }
}
@media (max-width: 700px) {
  .hero__quick-pills { gap: 6px; }
  .quick-pill { font-size: 12px; padding: 4px 10px; }
}

/* =========================================================
   DARK PALETTE — Blog & Reports Section
   ========================================================= */
.reports-section {
  background: #0b1829 !important;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.reports-section .section-head__eyebrow { color: #5eead4; background: rgba(14,165,164,0.12); }
.reports-section .section-head__title { color: white; }
.reports-section .section-head__sub { color: rgba(255,255,255,0.55); }

.report-card {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.report-card:hover {
  box-shadow: 0 20px 50px rgba(14,165,164,0.12) !important;
}
.report-card__body { background: transparent; }
.report-card__tag {
  background: rgba(199,187,245,0.15) !important;
  color: #c4b5fd !important;
}
.report-card__tag--green { background: rgba(22,163,74,0.15) !important; color: #4ade80 !important; }
.report-card__tag--orange { background: rgba(234,88,12,0.15) !important; color: #fb923c !important; }
.report-card__tag--red { background: rgba(225,29,72,0.15) !important; color: #f87171 !important; }
.report-card__title { color: white !important; }
.report-card__excerpt { color: rgba(255,255,255,0.5) !important; }
.report-card__meta { border-top-color: rgba(255,255,255,0.07) !important; }
.report-card__date { color: rgba(255,255,255,0.35) !important; }
.report-card__link { color: #5eead4 !important; }
.reports-section .btn--ghost {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
}
.reports-section .btn--ghost:hover {
  background: rgba(14,165,164,0.12);
  color: #2dd4bf;
  border-color: rgba(14,165,164,0.4);
}

/* Testimonials — already dark, just polish */
.testimonials-section {
  background: linear-gradient(135deg, #071628 0%, #0d2040 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* How section SVG icons dark fix */
.how-section .how-step__icon circle { fill: rgba(14,165,164,0.15); }

/* App CTA dark polish */
.app-cta-section {
  background: linear-gradient(135deg, #071422 0%, #0a1c38 55%, #081628 100%) !important;
}
.app-cta-section::before {
  background: radial-gradient(circle at 30% 50%, rgba(14,165,164,0.18) 0%, transparent 65%) !important;
}
.app-store-btn {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.app-store-btn:hover {
  background: rgba(14,165,164,0.15) !important;
  border-color: rgba(14,165,164,0.4) !important;
}

/* Scrollbar dark */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0b1829; }
::-webkit-scrollbar-thumb { background: rgba(14,165,164,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(14,165,164,0.65); }

/* Body dark background */
body { background: #0b1829 !important; }

/* =========================================================
   NAVBAR — Dark glass to match new palette
   ========================================================= */
.navbar {
  background: rgba(11, 24, 41, 0.88) !important;
  border-bottom-color: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(16px) !important;
}
.brand__name { color: white !important; }
.nav-links__item { color: rgba(255,255,255,0.75) !important; }
.nav-links__item:hover { color: #5eead4 !important; }
.nav-links__item.is-active { color: white !important; }
.btn--ghost {
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.btn--ghost:hover {
  background: rgba(14,165,164,0.1) !important;
  color: #5eead4 !important;
  border-color: rgba(14,165,164,0.35) !important;
}
.btn--primary {
  background: linear-gradient(135deg, #0ea5a4, #0891b2) !important;
  color: white !important;
}

/* Mega-menu dark */
.mega-menu {
  background: #0d1e33 !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
}
.mega-menu__link { color: rgba(255,255,255,0.75) !important; }
.mega-menu__link:hover { background: rgba(14,165,164,0.1) !important; color: #5eead4 !important; }

/* Mobile menu dark */
.mobile-menu { background: #0d1e33 !important; border-bottom-color: rgba(255,255,255,0.06) !important; }
.mobile-menu__item { color: rgba(255,255,255,0.8) !important; border-bottom-color: rgba(255,255,255,0.06) !important; }
.mobile-menu__item.is-active { color: #5eead4 !important; }
.mobile-menu__login { color: #5eead4 !important; }
.mobile-menu__specialties { background: rgba(14,165,164,0.07) !important; }

/* Search bar stays white/light for contrast */
.search-bar { background: white !important; }
