/* ============================================================
   Covenant Clinic Design System  –  cv-* prefix
   Extracted from telemedicine vc-* system, expanded for all pages.
   Target: <30 KB. Replaces 365 KB Webflow CSS.
   ============================================================ */

/* ----------------------------------------------------------
   0. CSS VARIABLES
   ---------------------------------------------------------- */
:root {
  /* Colors */
  --cv-bg: #f4f8fa;
  --cv-card: #ffffff;
  --cv-border: rgba(7, 48, 70, 0.10);
  --cv-text: #23353e;
  --cv-muted: #4b4f58;
  --cv-accent: #0797B2;
  --cv-accent-hover: #06879f;
  --cv-purple: #7c3aed;
  --cv-green: #059669;
  --cv-red: #dc2626;
  --cv-shadow: 0 24px 60px rgba(7, 48, 70, 0.10);
  --cv-shadow-sm: 0 4px 12px rgba(7, 48, 70, 0.08);

  /* Typography */
  --cv-head: "DM Serif Display", "Georgia", serif;
  --cv-body: "Source Sans 3", "Segoe UI", sans-serif;

  /* Spacing */
  --cv-radius: 20px;
  --cv-radius-sm: 12px;
  --cv-shell-max: 1200px;
  --cv-shell-pad: 1.25rem;
}

/* ----------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--cv-body);
  color: var(--cv-text);
  background: var(--cv-bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cv-head);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
}

p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }

/* ----------------------------------------------------------
   2. LAYOUT – cv-shell
   ---------------------------------------------------------- */
.cv-shell {
  max-width: var(--cv-shell-max);
  margin: 0 auto;
  padding: 0 var(--cv-shell-pad);
}

.cv-shell--narrow { max-width: 900px; }
.cv-shell--wide { max-width: 1400px; }

/* ----------------------------------------------------------
   3. NAVBAR – cv-nav-*
   ---------------------------------------------------------- */
.cv-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cv-card);
  box-shadow: 0 1px 3px rgba(7, 48, 70, 0.06);
}

.cv-nav-stripe {
  background: #073046;
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.cv-nav-stripe-inner {
  max-width: var(--cv-shell-max);
  margin: 0 auto;
  padding: 0 var(--cv-shell-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cv-nav-stripe-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cv-nav-stripe-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cv-nav-stripe-item a {
  color: #fff;
  text-decoration: none;
}

.cv-nav-stripe-item a:hover { text-decoration: underline; }



.cv-nav-bar {
  max-width: var(--cv-shell-max);
  margin: 0 auto;
  padding: 0.6rem var(--cv-shell-pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cv-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.cv-nav-logo img {
  height: 44px;
  width: auto;
}

.cv-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
}

.cv-nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cv-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.cv-nav-link:hover { background: rgba(5, 167, 223, 0.06); color: var(--cv-accent); }
.cv-nav-link--active { color: var(--cv-accent); font-weight: 600; }

.cv-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cv-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.cv-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cv-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.cv-nav-mobile {
  display: none;
  background: var(--cv-card);
  border-top: 1px solid var(--cv-border);
  padding: 1rem var(--cv-shell-pad);
}

.cv-nav--open .cv-nav-mobile { display: block; }

.cv-nav--open .cv-nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.cv-nav--open .cv-nav-toggle span:nth-child(2) { opacity: 0; }
.cv-nav--open .cv-nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.cv-nav-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cv-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(7, 48, 70, 0.06);
}

.cv-nav-mobile-link:hover { color: var(--cv-accent); }

.cv-nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.75rem;
}

/* ----------------------------------------------------------
   4. FOOTER – cv-footer-*
   ---------------------------------------------------------- */
.cv-footer {
  background: #073046;
  color: #c9dde4;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.cv-footer a { color: #c9dde4; text-decoration: none; }
.cv-footer a:hover { color: #fff; }

.cv-footer-inner {
  max-width: var(--cv-shell-max);
  margin: 0 auto;
  padding: 0 var(--cv-shell-pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.cv-footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.cv-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

.cv-footer-col-title {
  font-family: var(--cv-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cv-footer-link {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.cv-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.cv-footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cv-footer-legal {
  max-width: var(--cv-shell-max);
  margin: 2rem auto 0;
  padding: 1rem var(--cv-shell-pad) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(201, 221, 228, 0.6);
}


/* ----------------------------------------------------------
   5. HERO – cv-hero-*
   ---------------------------------------------------------- */
.cv-hero {
  text-align: center;
  padding: 3.5rem 0 2.5rem;
}

.cv-hero--left { text-align: left; }

.cv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--cv-purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.cv-hero-badge svg { width: 14px; height: 14px; }

.cv-hero h1 {
  font-family: var(--cv-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.cv-hero-sub {
  font-size: 1.1rem;
  color: var(--cv-muted);
  max-width: 640px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
}

.cv-hero--left .cv-hero-sub { margin-left: 0; }

.cv-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.cv-hero--left .cv-hero-actions { justify-content: flex-start; }

/* Video hero (homepage) */
.cv-hero-video {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.cv-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 48, 70, 0.65) 0%, rgba(7, 48, 70, 0.35) 100%);
  z-index: 1;
}

.cv-hero-video .cv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem var(--cv-shell-pad);
  max-width: 800px;
}

.cv-hero-video h1 { color: #fff; }
.cv-hero-video .cv-hero-sub { color: rgba(255, 255, 255, 0.85); }

/* ----------------------------------------------------------
   6. SECTIONS – cv-section
   ---------------------------------------------------------- */
.cv-section {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  box-shadow: var(--cv-shadow);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.cv-section--flat {
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 2.5rem 0;
}

.cv-section-title {
  font-family: var(--cv-head);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.cv-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cv-accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------
   7. CARDS – cv-card-*
   ---------------------------------------------------------- */
.cv-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius-sm);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cv-card:hover {
  box-shadow: var(--cv-shadow-sm);
  transform: translateY(-2px);
}

.cv-card a { text-decoration: none; }

.cv-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.8rem;
}

.cv-card-title {
  font-family: var(--cv-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cv-card-desc {
  font-size: 0.9rem;
  color: var(--cv-muted);
  line-height: 1.55;
  margin: 0;
}

.cv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cv-accent);
}

.cv-card--service {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--cv-text);
}

.cv-card--service .cv-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

/* Service feature image */
.cv-service-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--cv-radius-sm);
  margin-bottom: 1.5rem;
}

/* Feature cards (homepage) */
.cv-card--feature {
  background: var(--cv-accent);
  color: #fff;
  border: none;
}

.cv-card--feature:hover { background: var(--cv-accent-hover); }

/* ----------------------------------------------------------
   8. BUTTONS – cv-btn-*
   ---------------------------------------------------------- */
.cv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cv-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--cv-body);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 20px rgba(5, 167, 223, 0.2);
}

.cv-btn-primary:hover {
  background: var(--cv-accent-hover);
  transform: translateY(-1px);
  color: #fff;
}

.cv-btn-primary svg { width: 18px; height: 18px; }

.cv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cv-card);
  color: var(--cv-text);
  border: 1.5px solid var(--cv-border);
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--cv-body);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.15s;
}

.cv-btn-secondary:hover {
  border-color: var(--cv-accent);
  box-shadow: var(--cv-shadow-sm);
}

.cv-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cv-accent);
  border: 1.5px solid var(--cv-accent);
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--cv-body);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.15s;
}

.cv-btn-outline:hover {
  background: var(--cv-accent);
  color: #fff;
}

.cv-btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.cv-btn-lg {
  padding: 0.9rem 2.4rem;
  font-size: 1.05rem;
}

.cv-btn-block { width: 100%; justify-content: center; }

/* ----------------------------------------------------------
   9. GRIDS – cv-grid-*
   ---------------------------------------------------------- */
.cv-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cv-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cv-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cv-grid-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* ----------------------------------------------------------
   10. TYPOGRAPHY – cv-heading-*, cv-text-*
   ---------------------------------------------------------- */
.cv-heading-1 {
  font-family: var(--cv-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.cv-heading-2 {
  font-family: var(--cv-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

.cv-heading-3 {
  font-family: var(--cv-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.25;
}

.cv-text { font-size: 1rem; line-height: 1.7; color: var(--cv-text); }
.cv-text-muted { font-size: 0.92rem; line-height: 1.6; color: var(--cv-muted); }
.cv-text-small { font-size: 0.82rem; line-height: 1.5; color: var(--cv-muted); }

.cv-overline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cv-accent);
}

.cv-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cv-text);
}

/* ----------------------------------------------------------
   11. UTILITIES
   ---------------------------------------------------------- */
.cv-mb-0 { margin-bottom: 0; }
.cv-mb-1 { margin-bottom: 0.5rem; }
.cv-mb-2 { margin-bottom: 1rem; }
.cv-mb-3 { margin-bottom: 1.5rem; }
.cv-mb-4 { margin-bottom: 2rem; }
.cv-mt-2 { margin-top: 1rem; }
.cv-mt-4 { margin-top: 2rem; }
.cv-text-center { text-align: center; }
.cv-flex { display: flex; }
.cv-flex-center { display: flex; align-items: center; justify-content: center; }
.cv-gap-1 { gap: 0.5rem; }
.cv-gap-2 { gap: 1rem; }
.cv-gap-3 { gap: 1.5rem; }
.cv-hidden { display: none; }

/* Wait time elements (homepage/service pages) */
.cv-wait-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cv-accent);
  font-family: var(--cv-body);
}

.cv-wait-minutes {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cv-text);
}

.cv-wait-footnote {
  font-size: 0.82rem;
  color: var(--cv-muted);
}

.cv-wait-updated {
  font-size: 0.85rem;
  color: var(--cv-muted);
}

/* Divider */
.cv-divider {
  border: none;
  border-top: 1px solid var(--cv-border);
  margin: 1.5rem 0;
}

/* ----------------------------------------------------------
   12. FAQ ACCORDION – cv-faq-*
   ---------------------------------------------------------- */
.cv-faq-item { border-bottom: 1px solid rgba(7, 48, 70, 0.08); }
.cv-faq-item:last-child { border-bottom: none; }

.cv-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cv-text);
  cursor: pointer;
  text-align: left;
}

.cv-faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--cv-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.cv-faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }

.cv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.88rem;
  color: var(--cv-muted);
  line-height: 1.6;
}

.cv-faq-a.open { max-height: 500px; padding-bottom: 0.85rem; }

/* ----------------------------------------------------------
   13. CHECKLIST – cv-checklist
   ---------------------------------------------------------- */
.cv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.cv-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.cv-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--cv-green);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   14. STEPS – cv-steps
   ---------------------------------------------------------- */
.cv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cv-step { text-align: center; }

.cv-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 167, 223, 0.1);
  color: var(--cv-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 0.6rem;
}

.cv-step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.cv-step-desc { font-size: 0.85rem; color: var(--cv-muted); line-height: 1.5; }

/* ----------------------------------------------------------
   15. EMERGENCY BANNER – cv-emergency
   ---------------------------------------------------------- */
.cv-emergency {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--cv-radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.4rem;
}

.cv-emergency-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cv-red);
  margin-bottom: 0.6rem;
}

.cv-emergency-header svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------
   16. BREADCRUMBS – cv-breadcrumb
   ---------------------------------------------------------- */
.cv-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.82rem;
  color: var(--cv-muted);
}

.cv-breadcrumb a {
  color: var(--cv-accent);
  text-decoration: none;
}

.cv-breadcrumb a:hover { text-decoration: underline; }

.cv-breadcrumb-sep {
  margin: 0 0.4rem;
  color: rgba(75, 79, 88, 0.4);
}

/* ----------------------------------------------------------
   17. INSURANCE LOGOS
   ---------------------------------------------------------- */
.cv-insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.cv-insurance-logo {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-insurance-logo img { max-height: 48px; width: auto; }

/* ----------------------------------------------------------
   18. BLOG CARDS
   ---------------------------------------------------------- */
.cv-blog-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.cv-blog-card:hover { box-shadow: var(--cv-shadow-sm); }

.cv-blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.cv-blog-card-body { padding: 1.25rem; }

.cv-blog-card-title {
  font-family: var(--cv-head);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cv-blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--cv-muted);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   19. TEAM CARDS
   ---------------------------------------------------------- */
.cv-team-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius-sm);
  padding: 1.5rem;
  text-align: center;
}

.cv-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.cv-team-name {
  font-family: var(--cv-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cv-team-role {
  font-size: 0.85rem;
  color: var(--cv-muted);
}

/* ----------------------------------------------------------
   20. JOB LISTING CARDS
   ---------------------------------------------------------- */
.cv-job-card {
  background: var(--cv-card);
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius-sm);
  padding: 1.5rem;
}

.cv-job-title {
  font-family: var(--cv-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cv-job-meta {
  font-size: 0.85rem;
  color: var(--cv-muted);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------
   21. BOTTOM CTA
   ---------------------------------------------------------- */
.cv-bottom-cta {
  text-align: center;
  padding: 3rem 1rem;
}

.cv-bottom-cta h2 {
  font-family: var(--cv-head);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

/* ----------------------------------------------------------
   22. CONTENT PROSE (blog posts, long text)
   ---------------------------------------------------------- */
.cv-prose { max-width: 720px; }
.cv-prose p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.cv-prose h2 { margin: 2rem 0 0.75rem; font-size: 1.5rem; }
.cv-prose h3 { margin: 1.5rem 0 0.5rem; font-size: 1.2rem; }
.cv-prose ul, .cv-prose ol { margin-bottom: 1.25rem; }
.cv-prose li { margin-bottom: 0.4rem; line-height: 1.7; }
.cv-prose img { border-radius: var(--cv-radius-sm); margin: 1.5rem 0; }

/* ----------------------------------------------------------
   23. TELEMEDICINE PAGE – cv-price-*, cv-contact-*, cv-conditions-*, etc.
   ---------------------------------------------------------- */
.cv-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cv-price-tag { font-size: 1.8rem; font-weight: 700; color: var(--cv-text); }

.cv-price-detail {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--cv-muted);
  font-weight: 500;
}

.cv-price-detail span { display: flex; align-items: center; gap: 0.25rem; }
.cv-price-detail svg { width: 14px; height: 14px; color: var(--cv-green); }

.cv-promo-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.08);
  color: var(--cv-green);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  cursor: pointer;
}

.cv-promo-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: #8a8a8e;
  margin-bottom: 1rem;
}

.cv-promo-remaining { font-weight: 600; }
.cv-promo-remaining.urgent { color: #e65100; font-weight: 700; }
.cv-promo-expiry { opacity: 0.85; }

.cv-contact-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.cv-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--cv-body);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: 1.5px solid var(--cv-border);
  background: var(--cv-card);
  color: var(--cv-text);
}

.cv-contact-btn:hover { transform: translateY(-1px); box-shadow: var(--cv-shadow-sm); }
.cv-contact-btn svg { width: 16px; height: 16px; }
.cv-contact-btn--text { border-color: rgba(5, 167, 223, 0.3); color: var(--cv-accent); }
.cv-contact-btn--text:hover { background: rgba(5, 167, 223, 0.06); }
.cv-contact-btn--call { border-color: rgba(5, 150, 105, 0.3); color: var(--cv-green); }
.cv-contact-btn--call:hover { background: rgba(5, 150, 105, 0.06); }

.cv-contact-hint {
  width: 100%;
  text-align: center;
  font-size: 0.76rem;
  color: var(--cv-muted);
  margin-top: 0.1rem;
}

.cv-conditions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

.cv-condition-col h3 {
  font-size: 0.95rem; font-weight: 700; margin: 0 0 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.cv-condition-col h3 svg { width: 16px; height: 16px; color: var(--cv-accent); }

.cv-condition-list { list-style: none; padding: 0; margin: 0; }

.cv-condition-list li {
  padding: 0.35rem 0; font-size: 0.88rem;
  display: flex; align-items: center; gap: 0.4rem; color: var(--cv-text);
}

.cv-condition-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cv-accent); flex-shrink: 0;
}

.cv-lifestyle-item {
  border: 1px solid var(--cv-border); border-radius: 12px;
  padding: 0.65rem 0.85rem; margin-bottom: 0.5rem;
}

.cv-lifestyle-name { font-weight: 700; font-size: 0.9rem; }
.cv-lifestyle-desc { font-size: 0.8rem; color: var(--cv-muted); }

.cv-rx-highlight {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem; border-radius: 12px;
  background: rgba(5, 150, 105, 0.05); border: 1px solid rgba(5, 150, 105, 0.12);
  margin-bottom: 0.8rem;
}

.cv-rx-highlight svg { width: 22px; height: 22px; color: var(--cv-green); flex-shrink: 0; margin-top: 0.1rem; }
.cv-rx-text { font-size: 0.88rem; line-height: 1.55; }

.cv-rx-limits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.8rem; }

.cv-rx-limit {
  padding: 0.55rem 0.75rem; border-radius: 10px;
  background: rgba(5, 167, 223, 0.04); border: 1px solid rgba(5, 167, 223, 0.1);
  font-size: 0.85rem;
}

.cv-rx-limit strong {
  display: block; font-size: 0.78rem; color: var(--cv-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem;
}

.cv-not-offered {
  font-size: 0.82rem; color: var(--cv-muted); line-height: 1.55;
  padding: 0.6rem 0.85rem; border-radius: 10px;
  background: rgba(239, 68, 68, 0.04); border: 1px solid rgba(239, 68, 68, 0.1);
}

.cv-why-list { list-style: none; padding: 0; margin: 0; }

.cv-why-list li {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(7, 48, 70, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.cv-why-list li:last-child { border-bottom: none; }

.cv-why-list li svg {
  width: 18px; height: 18px; color: var(--cv-green);
  flex-shrink: 0; margin-top: 0.15rem;
}

.cv-providers-grid { display: grid; grid-template-columns: 1fr; gap: 0.65rem; }

.cv-provider-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem; border: 1px solid var(--cv-border); border-radius: 14px;
}

.cv-provider-card.cv-provider-director {
  border-color: rgba(5, 167, 223, 0.25); background: rgba(5, 167, 223, 0.03);
}

.cv-provider-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(5, 167, 223, 0.12); color: var(--cv-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
  overflow: hidden;
}

.cv-provider-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.cv-provider-name { font-weight: 700; font-size: 0.95rem; }
.cv-provider-title { font-size: 0.78rem; color: var(--cv-muted); }
.cv-provider-cred { font-size: 0.75rem; color: var(--cv-accent); font-weight: 600; }

.cv-emergency-list {
  columns: 2; column-gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 0.8rem;
}

.cv-emergency-list li { font-size: 0.85rem; color: #7f1d1d; padding: 0.2rem 0; break-inside: avoid; }

.cv-emergency-numbers { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.85rem; font-weight: 600; }
.cv-emergency-numbers a { color: var(--cv-red); text-decoration: none; }

/* ----------------------------------------------------------
   RESPONSIVE – Tablet (max-width: 991px)
   ---------------------------------------------------------- */
@media (max-width: 991px) {
  .cv-nav-links { display: none; }
  .cv-nav-actions > .cv-btn-secondary { display: none; }
  .cv-nav-toggle { display: flex; }

  .cv-nav-stripe-inner { font-size: 0.75rem; gap: 0.5rem; }

  .cv-footer-inner { grid-template-columns: 1fr 1fr; }

  .cv-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cv-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cv-grid-sidebar { grid-template-columns: 1fr; }

  .cv-insurance-grid { grid-template-columns: repeat(3, 1fr); }

  .cv-hero-video { min-height: 340px; }
}

/* ----------------------------------------------------------
   RESPONSIVE – Mobile (max-width: 640px)
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  .cv-hero { padding: 2rem 0 1.8rem; }
  .cv-hero h1 { font-size: 1.7rem; }

  .cv-section { padding: 1.5rem 1rem; border-radius: 16px; }

  .cv-nav-stripe-inner { flex-wrap: wrap; justify-content: center; }

  .cv-footer-inner { grid-template-columns: 1fr; }

  .cv-grid-2 { grid-template-columns: 1fr; }
  .cv-grid-3 { grid-template-columns: 1fr; }
  .cv-grid-4 { grid-template-columns: 1fr 1fr; }

  .cv-insurance-grid { grid-template-columns: repeat(2, 1fr); }

  .cv-steps { grid-template-columns: 1fr; gap: 0.8rem; }
  .cv-step { text-align: left; display: flex; align-items: flex-start; gap: 0.8rem; }
  .cv-step-num { margin: 0; flex-shrink: 0; }

  .cv-checklist { grid-template-columns: 1fr; }

  .cv-hero-video { min-height: 280px; }

  .cv-hero-actions { flex-direction: column; }
  .cv-hero-actions .cv-btn-primary,
  .cv-hero-actions .cv-btn-secondary { width: 100%; justify-content: center; }

  .cv-conditions-row { grid-template-columns: 1fr; gap: 1rem; }
  .cv-rx-limits { grid-template-columns: 1fr; }
  .cv-emergency-list { columns: 1; }
  .cv-emergency { padding: 1rem 1.2rem; border-radius: 16px; }

  .cv-map-widget { grid-template-columns: 1fr; }
  .cv-map-sidebar { border-right: none; border-bottom: 1px solid #e8eaed; }
  .cv-map-embed { min-height: 300px; }
}

/* ─── Google Reviews Widget (Elfsight-style clone) ──── */

.cv-reviews-widget {
  font-family: Quicksand, sans-serif;
  background: #f8f8f8;
  border-radius: 24px;
  padding: 24px;
}

.cv-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.cv-reviews-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cv-reviews-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cv-reviews-brand img {
  height: 28px;
  width: auto;
}

.cv-reviews-brand-text {
  font-size: 16px;
  font-weight: 500;
  color: #393941;
}

.cv-reviews-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cv-reviews-rating-num {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.cv-reviews-rating svg { vertical-align: middle; }

.cv-reviews-rating-count {
  font-size: 12px;
  color: rgba(17, 17, 17, 0.5);
}

.cv-reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0A97B2;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0 20px;
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  font-family: Quicksand, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.cv-reviews-cta:hover { background: #088da5; color: #fff; }

/* Masonry grid via CSS columns */
.cv-reviews-grid {
  column-count: 4;
  column-gap: 20px;
}

.cv-reviews-grid > .cv-review-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.cv-review-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv-review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}

.cv-review-stars svg { display: block; }

.cv-review-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #111;
  margin: 0;
}

.cv-review-readmore {
  color: #0A97B2;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.cv-review-readmore:hover { text-decoration: underline; }

.cv-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.cv-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.cv-review-avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.cv-review-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #111;
}

.cv-review-verified {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cv-review-date {
  display: block;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.5);
}

/* Load More button */
.cv-reviews-footer {
  text-align: center;
  margin-top: 20px;
}

.cv-reviews-loadmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #111;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0 24px;
  height: 34px;
  font-size: 13px;
  font-weight: 700;
  font-family: Quicksand, sans-serif;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}

.cv-reviews-loadmore:hover {
  background: #efefef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Loading skeleton */
.cv-reviews-loading {
  column-count: 4;
  column-gap: 20px;
}

.cv-reviews-loading-pulse {
  height: 160px;
  border-radius: 24px;
  background: linear-gradient(90deg, #efefef 25%, #e4e4e4 50%, #efefef 75%);
  background-size: 200% 100%;
  animation: cv-pulse 1.5s ease-in-out infinite;
  break-inside: avoid;
  margin-bottom: 20px;
}

@keyframes cv-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error fallback */
.cv-reviews-error {
  text-align: center;
  padding: 2rem 1rem;
  color: #70757a;
  font-family: Quicksand, sans-serif;
}

/* Responsive — tablet */
@media (max-width: 768px) {
  .cv-reviews-grid { column-count: 2; }
  .cv-reviews-loading { column-count: 2; }
  .cv-reviews-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cv-reviews-header-left { align-items: center; }
}

/* Responsive — mobile */
@media (max-width: 480px) {
  .cv-reviews-grid { column-count: 1; }
  .cv-reviews-loading { column-count: 1; }
  .cv-reviews-widget { padding: 16px; border-radius: 16px; }
  .cv-review-card { padding: 16px; border-radius: 16px; }
}

/* ─── Google Map Widget ──────────────────────────────── */

.cv-map-widget {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: 0;
  overflow: hidden;
  min-height: 500px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (max-width: 768px) {
  .cv-map-widget { grid-template-columns: 1fr; }
  .cv-map-sidebar { border-right: none; border-bottom: 1px solid #e8eaed; }
  .cv-map-embed { min-height: 300px; }
}

.cv-map-sidebar {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid #e8eaed;
  background: #fff;
}

.cv-map-sidebar-photo {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.cv-map-sidebar-name {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  margin-top: 8px;
}

.cv-map-sidebar-addr,
.cv-map-sidebar-hours,
.cv-map-sidebar-phone {
  font-size: 0.85rem;
  color: #5f6368;
  line-height: 1.5;
  margin-top: 4px;
}

.cv-map-sidebar-phone a {
  color: var(--cv-accent);
  font-weight: 600;
  text-decoration: none;
}

.cv-map-sidebar-phone a:hover { text-decoration: underline; }

.cv-map-sidebar-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cv-accent);
  text-decoration: none;
  margin-top: 8px;
}

.cv-map-sidebar-directions:hover { text-decoration: underline; }

.cv-map-embed {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.cv-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
