/* ═══════════════════════════════════════════════════════════════
   lucidact-index.css — Styles used only on index.html
   Covers: homepage hero, products section, product modal,
           AI section, highlight cards, partner pills, stats,
           resources, and home-specific responsive overrides.
   ═══════════════════════════════════════════════════════════════ */

/* ─── HOMEPAGE HERO ──────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #edfaf9 0%, #e0f7f6 50%, #edfaf4 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,175,170,.07) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { color: var(--navy); margin-bottom: 18px; }
.hero p.lead { font-size: clamp(15px, 1.3vw, 18px); color: var(--slate); margin-bottom: 32px; max-width: 480px; }
.hero-visual { position: relative; padding: 8px; overflow: visible; }

/* Hero card mockup */
.hero-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.hero-card-title { font-weight: 600; font-size: 15px; color: var(--text-dark); }
.hero-card-sub   { font-size: 13px; color: var(--text-soft); }
.hero-metric { background: var(--gray-50); border-radius: 10px; padding: 14px 18px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.hero-metric:last-child { margin-bottom: 0; }
.metric-label { font-size: 13px; color: var(--text-soft); }
.metric-value { font-size: 20px; font-weight: 700; color: var(--navy); }
.metric-badge { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 50px; background: #dcfce7; color: #16a34a; }
.hero-badge { position: absolute; bottom: -16px; right: -16px; background: var(--navy); color: white; border-radius: var(--radius); padding: 14px 18px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-md); }
.hero-badge strong { display: block; font-size: 22px; color: var(--blue-light); }

/* Hero content animations */
.hero-content > * { animation: fadeUp .5s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .12s; }
.hero-content > *:nth-child(3) { animation-delay: .19s; }
.hero-content > *:nth-child(4) { animation-delay: .26s; }
.hero-content > *:nth-child(5) { animation-delay: .33s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PRODUCTS SECTION ───────────────────────────── */
/* ─── TRUSTED PARTNERS STRIP ─────────────────────── */
.features { background: white; }

.partners-strip {
  background: #f7fafa;
  border-top: 1px solid rgba(10,175,170,.10);
  border-bottom: 1px solid rgba(10,175,170,.10);
  padding: 52px 0 56px;
}

.partners-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.partners-strip-logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Card container === */
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid rgba(10,175,170,.13);
  border-radius: 14px;
  cursor: default;
  box-shadow: 0 2px 8px rgba(7,36,36,.04);
  transition:
    transform .22s cubic-bezier(.34,1.56,.64,1),
    box-shadow .22s ease,
    border-color .22s ease;
  flex-shrink: 0;
  /* uniform card size — every logo gets the same stage */
  width: 200px;
  min-width: 200px;
  height: 110px;
}

.partner-logo-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 28px rgba(10,175,170,.14), 0 2px 8px rgba(7,36,36,.06);
  border-color: rgba(10,175,170,.35);
}

/* === Logo sizing: all logos fill the same visual box === */
.partner-logo-item img {
  display: block;
  object-fit: contain;
  width: 140px;   /* uniform visual footprint */
  height: 72px;
  filter: grayscale(100%) opacity(0.65);
  transition: filter .28s ease, transform .22s cubic-bezier(.34,1.56,.64,1);
}

.partner-logo-item:hover img { filter: none; }

/* Insight now has real color — standard grayscale at rest, full color on hover */
.partner-logo-item--wide img {
  filter: grayscale(100%) opacity(0.65);
}
.partner-logo-item--wide:hover img { filter: none; }

@media (max-width: 900px) {
  .partner-logo-item { width: 170px; min-width: 170px; height: 96px; }
  .partner-logo-item img { width: 116px; height: 60px; }
}

@media (max-width: 640px) {
  .partners-strip-logos { gap: 10px; }
  .partner-logo-item { width: 148px; min-width: 148px; height: 88px; }
  .partner-logo-item img { width: 100px; height: 52px; }
}

.products { background: var(--navy); }
.products .section-intro h2 { color: white; }
.products .section-intro p  { color: var(--slate-light); }
.products .section-label    { color: #4dd9d4; }

.product-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: pointer; display: flex; flex-direction: column;
}
.product-card:hover { background: rgba(10,175,170,.12); border-color: rgba(10,175,170,.4); transform: translateY(-3px); }
.product-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #4dd9d4;
  background: rgba(10,175,170,.18); padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}
.product-card h3 { color: #f0fafa; margin-bottom: 6px; }
.product-card p  { color: #7aa8a8; font-size: 14px; margin: 0; flex: 1; }
.product-abbr { font-size: 28px; font-weight: 800; color: white; margin-bottom: 4px; }

.product-learn-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px; font-size: 13px; font-weight: 600;
  color: #4dd9d4; text-decoration: none;
  border: none; background: none; cursor: pointer; padding: 0;
  letter-spacing: .3px; transition: gap .2s, color .2s;
}
.product-learn-more:hover { color: #17c8c2; gap: 8px; }
.product-learn-more svg { width: 14px; height: 14px; transition: transform .2s; }
.product-learn-more:hover svg { transform: translateX(2px); }

/* ─── PRODUCT MODAL ──────────────────────────────── */
.pmodal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6,26,26,.7);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.pmodal-overlay.open { opacity: 1; pointer-events: all; }

.pmodal {
  position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 9001;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  box-shadow: 0 -8px 60px rgba(0,0,0,.18);
  overscroll-behavior: contain;
  pointer-events: none;
}
.pmodal.open { transform: translateY(0); pointer-events: all; }

@media (min-width: 768px) {
  .pmodal {
    bottom: auto; left: 50%; top: 50%;
    transform: translate(-50%, -40%) scale(.96);
    border-radius: 20px; width: 90%; max-width: 860px; max-height: 88vh;
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.32,.72,0,1), opacity .3s ease;
  }
  .pmodal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: all; }
}

.pmodal-handle { width: 40px; height: 4px; background: var(--gray-200); border-radius: 4px; margin: 14px auto 0; }
@media (min-width: 768px) { .pmodal-handle { display: none; } }

.pmodal-topbar {
  position: sticky; top: 0; z-index: 10;
  background: white; border-bottom: 1px solid var(--gray-100);
  padding: 16px 28px; display: flex; align-items: center; justify-content: space-between;
}
.pmodal-abbr-badge { display: inline-flex; align-items: center; gap: 10px; }
.pmodal-abbr { font-size: 18px; font-weight: 800; color: var(--blue); background: var(--blue-pale); padding: 4px 14px; border-radius: 8px; letter-spacing: .5px; }
.pmodal-full-name { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.pmodal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); font-size: 18px; font-weight: 400;
  transition: background .15s, color .15s; flex-shrink: 0;
}
.pmodal-close:hover { background: var(--gray-200); color: var(--text-dark); }

.pmodal-body { padding: 32px 28px 40px; }

.pmodal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3535 100%);
  border-radius: var(--radius); padding: 32px;
  margin-bottom: 32px; position: relative; overflow: hidden;
}
.pmodal-hero::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,175,170,.15) 0%, transparent 70%);
}
.pmodal-hero-abbr { font-size: 52px; font-weight: 900; color: rgba(255,255,255,.12); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.pmodal-hero h2 { font-size: clamp(20px, 2.5vw, 30px); color: white; font-weight: 400; margin-bottom: 10px; line-height: 1.25; }
.pmodal-hero p  { color: #7aa8a8; font-size: 15px; margin: 0; max-width: 560px; }

.pmodal-section-heading { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }

.pmodal-challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
@media (max-width: 640px) { .pmodal-challenge-grid { grid-template-columns: 1fr; } }
.pmodal-challenge-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 16px 18px; }
.pmodal-challenge-card .label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #e85c6a; margin-bottom: 6px; }
.pmodal-challenge-card h4 { font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.pmodal-challenge-card p  { font-size: 13px; color: var(--text-soft); margin: 0; }

.pmodal-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px; }
@media (max-width: 640px) { .pmodal-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px)  { .pmodal-why-grid { grid-template-columns: 1fr; } }
.pmodal-why-card { background: var(--blue-pale); border: 1px solid rgba(10,175,170,.2); border-radius: var(--radius); padding: 16px 18px; }
.pmodal-why-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.pmodal-why-card p  { font-size: 13px; color: var(--text-soft); margin: 0; }

.pmodal-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 32px; }
@media (max-width: 500px) { .pmodal-features-grid { grid-template-columns: 1fr; } }
.pmodal-feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: var(--radius); border: 1px solid var(--gray-200); background: white; }
.pmodal-feature-dot { width: 28px; height: 28px; flex-shrink: 0; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-top: 1px; }
.pmodal-feature-item h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.pmodal-feature-item p  { font-size: 12.5px; color: var(--text-soft); margin: 0; }

.pmodal-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.pmodal-step { display: flex; gap: 16px; align-items: flex-start; position: relative; }
.pmodal-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 15px; top: 36px; width: 2px;
  height: calc(100% + 2px); background: var(--gray-200);
}
.pmodal-step-num { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; z-index: 1; }
.pmodal-step-body { padding-bottom: 22px; flex: 1; }
.pmodal-step-body h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.pmodal-step-body p  { font-size: 13px; color: var(--text-soft); margin: 0; }

.pmodal-cta {
  background: linear-gradient(135deg, #089490 0%, #0aafaa 60%, #3da828 100%);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.pmodal-cta p { color: rgba(255,255,255,.9); font-size: 15px; font-weight: 500; margin: 0; }
.pmodal-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── AI SECTION ─────────────────────────────────── */
.ai-section {
  background: linear-gradient(135deg, #072424 0%, #0a2e2e 60%, #0d3535 100%);
  color: white; overflow: hidden; position: relative;
}
.ai-section::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,175,170,.12) 0%, transparent 70%);
  bottom: -200px; right: -100px; pointer-events: none;
}
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ai-section .section-label { color: #4dd9d4; }
.ai-section h2 { color: white; margin-bottom: 16px; }
.ai-section > .container > .ai-layout > div > p { color: #7aa8a8; margin-bottom: 32px; }

.ai-card {
  background: rgba(10,175,170,.07); border: 1px solid rgba(10,175,170,.18);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 16px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: background .2s, border-color .2s;
}
.ai-card:last-of-type { margin-bottom: 0; }
.ai-card:hover { background: rgba(10,175,170,.13); border-color: rgba(10,175,170,.4); }
.ai-card-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: rgba(10,175,170,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ai-card h3 { color: #e0fafa; font-size: 15px; margin-bottom: 4px; }
.ai-card p  { color: #7aa8a8; font-size: 13.5px; margin: 0; }

.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,175,170,.18); border: 1px solid rgba(10,175,170,.3);
  color: #4dd9d4; font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 12px; margin-top: 4px;
}

.ai-ui {
  background: rgba(10,175,170,.06); border: 1px solid rgba(10,175,170,.18);
  border-radius: var(--radius-lg); padding: 28px; position: relative; z-index: 1;
}
.ai-ui-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.ai-dot { width: 10px; height: 10px; border-radius: 50%; }
.ai-row {
  background: rgba(10,175,170,.07); border-radius: 8px;
  padding: 12px 16px; margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center; font-size: 13.5px;
}
.ai-row:last-child { margin-bottom: 0; }
.ai-row-label { color: #7aa8a8; }
.ai-row-value { color: #e0fafa; font-weight: 600; }
.ai-row-tag { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 50px; }
.tag-green  { background: rgba(91,191,60,.18);  color: #7dd144; }
.tag-blue   { background: rgba(10,175,170,.18);  color: #4dd9d4; }
.tag-orange { background: rgba(251,146,60,.15);  color: #fb923c; }
.tag-purple { background: rgba(91,191,60,.12);   color: #a3e635; }

/* ─── FOR PATIENTS (index section) ───────────────── */
.highlight-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.highlight-card:hover { box-shadow: var(--shadow-sm); transform: translateX(3px); }
.highlight-card:last-of-type { margin-bottom: 0; }
.highlight-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.highlight-card h4 { margin-bottom: 3px; color: var(--text-dark); }
.highlight-card p  { font-size: 13.5px; color: var(--text-soft); margin: 0; }

/* ─── FOR PARTNERS (index section) ───────────────── */
.partner-pill {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 22px;
  text-align: center; font-weight: 600; font-size: 15px; color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.partner-pill:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); color: var(--blue); }
.partner-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.partner-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-mid); }
.partner-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ─── STATS SECTION ──────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; border: 1px solid rgba(10,175,170,.15); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
.stat-item { padding: 40px 32px; text-align: center; background: rgba(10,175,170,.05); transition: background .2s; }
.stat-item:hover { background: rgba(10,175,170,.1); }
.stat-num { font-size: clamp(36px, 4vw, 52px); color: #4dd9d4; display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { color: #7aa8a8; font-size: 15px; }

/* ─── STATS BAND ───────────────────────────────── */
.about-stats-section {
  background: var(--navy);
  padding: 56px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -1px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  letter-spacing: .3px;
}

/* ─── INDEX RESPONSIVE OVERRIDES ─────────────────── */
@media (max-width: 900px) {
  .hero-layout, .ai-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-layout .hero-visual { order: -1; }
  .hero-badge { right: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 28px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 52px 0 60px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .ai-layout { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* Colour map — blended to Lucidact teal/navy palette */
.tc-teal   { color: #0aafaa; border-color: #0aafaa; background: rgba(10,175,170,.07); }
.tc-blue   { color: #2b7fe0; border-color: #2b7fe0; background: rgba(43,127,224,.07); }
.tc-green  { color: #1a9e5a; border-color: #1a9e5a; background: rgba(26,158,90,.07);  }
.tc-purple { color: #7c3aed; border-color: #7c3aed; background: rgba(124,58,237,.07); }
.tc-orange { color: #d97706; border-color: #d97706; background: rgba(217,119,6,.07);  }
.tc-yellow { color: #b45309; border-color: #d4a017; background: rgba(212,160,23,.07); }
.tc-red    { color: #dc2626; border-color: #dc2626; background: rgba(220,38,38,.07);  }
.tc-black  { color: #1e293b; border-color: #1e293b; background: rgba(30,41,59,.06);   }

@keyframes tc-float-in {
  from { opacity: 0; transform: translateY(6px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── ENHANCED CARE SERVICES ─────────────────────── */
.enhanced-care {
  background: var(--gray-50);
  padding: 96px 0;
}

.enhanced-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ecare-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ecare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,175,170,.10);
  border-color: rgba(10,175,170,.3);
}

.ecare-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ecare-body { display: flex; flex-direction: column; gap: 8px; }

.ecare-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.ecare-body p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

.ecare-outcome {
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  display: block;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .enhanced-care-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .enhanced-care-grid { grid-template-columns: 1fr; }
}
