/* ============================================================
   HEALTHIER.AE — DESIGN SYSTEM TOKENS
   ============================================================ */
:root {
  /* Color */
  --ink-900: #0E211B;
  --ink-800: #1B322A;
  --ink-700: #33473F;
  --gray-600: #5C6D66;
  --gray-500: #7C8C85;
  --gray-300: #B9C7C0;
  --gray-200: #DCE7E1;
  --gray-100: #EEF4F0;
  --line: #E1EAE5;

  --green-900: #0A3C2C;
  --green-800: #0C5A3F;
  --green-700: #0E8F63;
  /* primary CTA / accent */
  --green-600: #149E70;
  --green-500: #1CB27E;
  --mint-100: #E7F6EE;
  --mint-50: #F3FBF7;

  --teal-700: #166B78;
  --teal-500: #1C8C9C;
  --sand-100: #FBF7EE;
  /* wellness tab tint */
  --sky-100: #EAF2F7;
  /* fitness tab tint */

  --white: #FFFFFF;
  --danger: #C24A3B;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(14, 33, 27, 0.06), 0 1px 1px rgba(14, 33, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 33, 27, 0.08);
  --shadow-lg: 0 20px 48px rgba(14, 33, 27, 0.14);
  --shadow-focus: 0 0 0 3px rgba(14, 143, 99, 0.28);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.hero-media svg,
.specialty-card svg,
.provider-media svg,
.location-card svg,
.insight-media svg {
  width: 100%;
  height: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 8px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media(min-width:768px) {
  .container {
    padding: 0 32px;
  }
}

@media(min-width:1200px) {
  .container {
    padding: 0 40px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--green-700);
  display: inline-block;
}

.section {
  padding: 56px 0;
}

@media(min-width:768px) {
  .section {
    padding: 76px 0;
  }
}

@media(min-width:1200px) {
  .section {
    padding: 96px 0;
  }
}

.section-tight {
  padding-top: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

@media(min-width:768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
  }
}

.section-head h2 {
  font-size: 28px;
  margin-top: 6px;
}

@media(min-width:768px) {
  .section-head h2 {
    font-size: 34px;
  }
}

.section-head .sub {
  color: var(--gray-600);
  font-size: 15.5px;
  max-width: 520px;
  margin-top: 6px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--green-800);
  white-space: nowrap;
  border-bottom: 1.5px solid transparent;
  transition: border-color .15s ease;
}

.link-arrow:hover {
  border-color: var(--green-700);
}

.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform .15s ease;
}

.link-arrow:hover svg {
  transform: translateX(3px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  border: 1px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(10, 60, 44, .15);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-outline { background: #ffffff !important; color: #1B322A !important; border: 2px solid #E1EAE5 !important; } .btn-outline:hover { border-color: #0f7b6c !important; color: #0c6356 !important; }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink-900);
}

.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-700);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
}

.main-nav a:hover {
  color: var(--green-800);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.city-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--gray-200);
  color: var(--ink-700);
}

.header-actions .btn-outline {
  padding: 10px 16px;
}

.header-actions .btn-primary {
  padding: 10px 18px;
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

@media(min-width:1080px) {
  .main-nav {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .burger {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 82% -8%, var(--mint-100) 0%, rgba(231, 246, 238, 0) 70%),
    linear-gradient(180deg, var(--mint-50) 0%, var(--white) 78%);
  padding: 36px 0 48px;
}

@media(min-width:768px) {
  .hero {
    padding: 56px 0 64px;
  }
}

@media(min-width:1200px) {
  .hero {
    padding: 72px 0 84px;
  }
}

.hero-pulse {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 60px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-grid { display: grid; gap: 36px; align-items: center; } @media(min-width:1080px) { .hero-grid { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; text-align: center; } }

.hero-copy h1 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

@media(min-width:768px) {
  .hero-copy h1 {
    font-size: 52px;
  }
}

@media(min-width:1200px) {
  .hero-copy h1 {
    font-size: 60px;
  }
}

.hero-copy .sub {
  margin: 16px auto 0; font-size: 16.5px; color: var(--gray-600); max-width: 480px;
}

@media(min-width:768px) {
  .hero-copy .sub {
    font-size: 18px;
  }
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-800);
}

.hero-float-card .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mint-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card small {
  display: block;
  font-weight: 500;
  color: var(--gray-600);
  font-size: 11.5px;
}

.hero-float-1 {
  top: 18px;
  left: 18px;
}

.hero-float-2 {
  bottom: 18px;
  right: 18px;
}

/* Search console */
.search-console {
  margin: 28px auto 0; max-width: 800px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); padding: 16px; position: relative; z-index: 2;
}

@media(min-width:768px) {
  .search-console {
    padding: 20px;
  }
}

.search-tabs {
  display: flex;
  gap: 6px;
  background: var(--gray-100);
  border-radius: var(--r-pill);
  padding: 4px;
  width: max-content; margin: 0 auto 16px;
}

.search-tab {
  border: none;
  background: transparent;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .15s ease;
}

.search-tab svg {
  width: 16px;
  height: 16px;
}

.search-tab.active {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

/* Unified search bar — one bordered container, internal dividers, button docked at the end */
.search-fields {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.search-fields:focus-within {
  border-color: var(--green-700);
  box-shadow: var(--shadow-focus);
}

@media(min-width:860px) {
  .search-fields {
    flex-direction: row;
    align-items: center; padding: 6px; border-radius: 20px;
  }
}

.field {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  flex: 1;
  min-width: 0;
  background: transparent;
  position: relative;
}

.field .ic {
  color: var(--green-700);
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

.field .fcol { display: flex; flex-direction: column; min-width: 0; flex: 1; gap: 4px; text-align: left; }

.field .label-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
}

.field input,
.field select {
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-800);
  background: transparent;
  width: 100%;
  padding: 1px 0 0;
  margin: 0;
  font-family: inherit;
  appearance: none;
  line-height: 1.3;
}

.field input::placeholder {
  color: var(--gray-500);
  font-weight: 500;
}

.field select {
  cursor: pointer;
}

/* divider between stacked fields on mobile, between side-by-side fields on desktop */
.field:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: var(--gray-200);
}

@media(min-width:860px) {
  .field:not(:last-of-type)::after {
    left: auto;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    height: auto;
  }
}

.search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-700);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 15.5px;
  box-shadow: 0 8px 18px rgba(14, 143, 99, 0.28);
  transition: background .15s ease, transform .1s ease;
  flex-shrink: 0;
  margin: 8px;
  width: calc(100% - 16px);
}

@media(min-width:860px) {
  .search-submit {
    margin: 0;
    width: auto;
    padding: 16px 36px; border-radius: 14px; height: auto; }
}

.search-submit:hover {
  background: var(--green-800);
}

.search-submit:active {
  transform: scale(0.98);
}

.search-submit svg {
  width: 18px;
  height: 18px;
}

/* Quick-suggestion chips under the search bar */
.suggest-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.suggest-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-500);
  margin-right: 2px;
}

.suggest-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--mint-50);
  border: 1px solid var(--gray-200);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  transition: all .15s ease;
}

.suggest-chip:hover {
  border-color: var(--green-700);
  color: var(--green-800);
  background: var(--white);
}

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 22px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
}

.trust-item svg {
  width: 17px;
  height: 17px;
  color: var(--green-700);
  flex-shrink: 0;
}

/* ============================================================
   QUICK CATEGORIES (scroll-snap on mobile)
   ============================================================ */
.quick-cats {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 20px 10px;
  margin: 0 -20px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.quick-cats::-webkit-scrollbar {
  display: none;
}

@media(min-width:768px) {
  .quick-cats {
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media(min-width:1080px) { .quick-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; overflow-x: visible; padding: 4px 0 0; margin: 0; } }

.quick-cat {
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 104px;
  padding: 16px 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  background: var(--white);
  text-align: center;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.quick-cat:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--mint-100);
  transform: translateY(-2px);
}

.quick-cat .ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-cat .ic svg {
  width: 22px;
  height: 22px;
}

.quick-cat span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-700);
  line-height: 1.25;
}

/* ============================================================
   SPECIALTY CATEGORIES
   ============================================================ */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media(min-width:640px) {
  .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:1080px) {
  .specialty-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
}

.specialty-card { position: relative; border-radius: 14px; overflow: hidden; height: 100px; flex-shrink: 0; width: 180px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; display: flex; align-items: center; justify-content: center; padding: 12px; text-decoration: none; } @media(min-width: 1080px) { .specialty-card { width: 100%; height: 120px; } } .specialty-card:hover { box-shadow: 0 12px 30px rgba(15, 123, 108, 0.2); transform: translateY(-3px); } .specialty-card .label { position: relative; z-index: 5; color: var(--white); font-weight: 700; font-size: 15px; text-align: center; line-height: 1.25; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.specialty-card .label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.specialty-card .label span {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
}

/* ============================================================
   PROVIDER CARDS
   ============================================================ */
.provider-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 20px 14px;
  margin: 0 -20px;
  scroll-snap-type: x proximity;
}

.provider-scroller::-webkit-scrollbar {
  display: none;
}

@media(min-width:768px) {
  .provider-scroller {
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media(min-width:1080px) {
  .provider-scroller {
    overflow-x: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 4px 0 0;
    margin: 0;
  }
}

.provider-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}

@media(min-width:1080px) {
  .provider-card {
    width: auto;
  }
}

.provider-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.provider-media {
  position: relative;
  width: 100%;
  height: 240px;
  max-height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
  background-color: var(--white);
  flex-shrink: 0;
}

.provider-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-800);
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 10px 5px 7px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

.verified-badge svg {
  width: 13px;
  height: 13px;
}

.rating-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(14, 33, 27, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--r-pill);
}

.rating-pill svg {
  width: 12px;
  height: 12px;
  color: #FFC94A;
}

.provider-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.provider-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.provider-specialty {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-800);
}

.provider-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.provider-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
}

.provider-meta-row svg {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
  flex-shrink: 0;
}

.lang-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.lang-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--sky-100);
  padding: 3px 9px;
  border-radius: var(--r-pill);
}

.provider-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.provider-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13.5px;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media(min-width:640px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width:1080px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.location-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}

.location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 22, 0.05) 30%, rgba(9, 28, 20, 0.75) 100%);
}

.location-card .label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
}

.location-card .label strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.location-card .label span {
  font-size: 12px;
  opacity: 0.85;
}

/* ============================================================
   TREATMENT PILLS
   ============================================================ */
.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.treatment-pill {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: all .15s ease;
}

.treatment-pill:hover {
  border-color: var(--green-700);
  color: var(--green-800);
  background: var(--mint-50);
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:768px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.insight-card:hover .insight-media img {
  transform: scale(1.04);
}

.insight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}

.insight-card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.insight-card .excerpt {
  font-size: 13.5px;
  color: var(--gray-600);
}

.insight-card .date {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ============================================================
   PROVIDER CTA
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--green-900) 0%, var(--green-800) 60%, var(--teal-700) 130%);
  border-radius: 28px;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media(min-width:768px) {
  .cta-banner {
    padding: 56px 52px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-copy .eyebrow {
  color: var(--mint-100);
}

.cta-copy .eyebrow::before {
  background: var(--mint-100);
}

.cta-copy h2 {
  color: var(--white);
  font-size: 28px;
  margin-top: 12px;
}

@media(min-width:768px) {
  .cta-copy h2 {
    font-size: 34px;
  }
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
  font-size: 15.5px;
}

.cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
}

.cta-list svg {
  width: 16px;
  height: 16px;
  color: var(--mint-100);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.72);
  padding: 52px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media(min-width:768px) {
  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
  }
}

.footer-brand .logo {
  color: var(--white);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 13.5px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}

@media(min-width:768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom .copy {
  font-size: 12.5px;
}

.footer-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
}

.footer-badge svg {
  width: 15px;
  height: 15px;
  color: var(--green-500);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(14, 33, 27, 0.45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 82%;
  max-width: 340px;
  background: var(--white);
  padding: 20px;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.mobile-nav-panel a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-800);
  padding: 6px 0;
}

.mobile-nav-panel .mn-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

/* Utility */
.hide-mobile {
  display: none;
}

@media(min-width:1080px) {
  .hide-mobile {
    display: block;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
