/* ──────────────────────────────────────────────────────────────
   1stRX Brand Stylesheet
   Brand: Navy #1F3F73  ·  Electric Blue #49A6FF  ·  White #ffffff
   ────────────────────────────────────────────────────────────── */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1F3F73;
  --navy-dark:  #162d52;
  --navy-light: #2a5494;
  --gold:       #49A6FF;
  --gold-dark:  #1a7cc7;
  --gold-light: #7BC4FF;
  --white:      #ffffff;
  --offwhite:   #F6F8FB;
  --grey-100:   #eef2f7;
  --grey-200:   #d8e2ef;
  --grey-500:   #5F6E85;
  --grey-700:   #3d4f6b;
  --text-dark:  #1a2744;
  --text-mid:   #2d3f60;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(31,63,115,.08);
  --shadow-md:  0 6px 24px rgba(31,63,115,.14);
  --shadow-lg:  0 16px 48px rgba(31,63,115,.20);
  --transition: 0.2s ease;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head:  'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--white);
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section:not(.bg-navy) {
  background-image: url('images/bgswoosh.png');
  background-size: cover;
  background-position: center;
}
.section.bg-light { background-color: var(--offwhite); }
.section.bg-navy  { background: var(--navy); background-image: none; }

.gold { color: var(--gold); }
.light { color: rgba(255,255,255,0.88); }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(73,166,255,.35); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn--outline-white {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-white:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--navy-dark); }

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn--xl  { padding: 20px 44px; font-size: 1.15rem; border-radius: 10px; }
.btn--full { width: 100%; }

/* ─── NAV ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-icon {
  height: 44px;
  width: auto;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
  background: transparent;
}

.nav__logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--navy-dark);
  line-height: 1.1;
  text-transform: uppercase;
}

.nav__logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--grey-500);
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  color: #1F3F73;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  display: flex;
  gap: 12px;
  margin-left: 16px;
}

.nav__signin { margin-left: 0.5rem; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--navy-dark);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-color: #F6F8FB;
  background-image: url('images/bgswoosh.png');
  background-size: cover;
  background-position: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.pill-badge {
  display: inline-block;
  background: rgba(73, 166, 255, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(73, 166, 255, 0.35);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--grey-700);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.87rem;
  color: #1F3F73;
}
.hero__trust li { color: #1F3F73; }
.hero__trust li::before { content: ''; }

.hero__image {
  position: relative;
}

.hero__carousel {
  position: relative;
  overflow: visible;
  max-width: 700px;
  background: transparent;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide.active {
  position: relative;
  opacity: 1;
}

.hero__carousel img,
.hero__image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
}

/* ─── PROOF BAR ────────────────────────────────────────────────── */
.proof-bar {
  background: var(--offwhite);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 20px 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.proof-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.proof-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
}

/* ─── SECTION HEADERS ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--grey-700);
  font-size: 1.05rem;
  margin-top: 16px;
}
.section-header--light p { color: rgba(255,255,255,0.65); }

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.25;
}
.section-header--light h2 { color: var(--white); }

.section-tag {
  display: inline-block;
  background: rgba(73,166,255,0.10);
  color: var(--gold-dark);
  border: 1px solid rgba(73,166,255,0.3);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag--gold { background: rgba(73,166,255,0.15); color: var(--gold); border-color: rgba(73,166,255,0.35); }

/* ─── HOW IT WORKS ─────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 80px;
}

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__icon {
  width: 56px;
  height: 56px;
  background: rgba(73,166,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.step__number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p { color: var(--grey-700); font-size: 0.95rem; line-height: 1.65; }

.step__arrow {
  font-size: 1.5rem;
  color: var(--grey-500);
  margin-top: 60px;
  flex-shrink: 0;
}

.how-telehealth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--grey-200);
}

.how-telehealth__image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-md);
  display: block;
}

.how-telehealth__text h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.how-telehealth__text p {
  color: var(--grey-700);
  margin-bottom: 24px;
  line-height: 1.7;
}

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── MEDICATIONS ──────────────────────────────────────────────── */
.meds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 72px;
  align-items: stretch;
}

.med-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.med-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.med-card--sema {
  background-image: linear-gradient(rgba(31,63,115,0.88), rgba(31,63,115,0.88)), url('images/sema-vial.png');
  background-size: cover;
  background-position: center;
}
.med-card--tirz {
  background-image: linear-gradient(rgba(31,63,115,0.88), rgba(31,63,115,0.88)), url('images/tirz-vial.png');
  background-size: cover;
  background-position: center;
}

.med-card--featured {
  border-color: rgba(201,168,76,0.45);
  position: relative;
}
.med-card--featured.med-card--tirz {
  background-image: linear-gradient(rgba(31,63,115,0.82), rgba(31,63,115,0.82)), url('images/tirz-vial.png');
  background-size: cover;
  background-position: center;
}

.med-card__badge {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.med-card__badge--featured {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.med-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.med-card__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.med-card__facts {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.med-card__facts li {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.med-card__facts li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.med-card .btn { margin-top: auto; }

/* Meds visual section */
.meds-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.meds-visual__image img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.meds-visual__text h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 16px;
}

.meds-visual__text p { margin-bottom: 28px; }

.injection-steps { display: flex; flex-direction: column; gap: 20px; }
.inj-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.inj-step__num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.inj-step strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.inj-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* ─── WHY US ────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.benefit__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 32px;
}

.testimonial {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}

.testimonial--flip {
  grid-template-columns: 1fr 280px;
}
.testimonial--flip .testimonial__image { order: 2; }
.testimonial--flip .testimonial__body  { order: 1; }

.testimonial__image img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial__body blockquote {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--gold-dark);
  padding-left: 20px;
  margin-bottom: 20px;
}

.testimonial__meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial__meta span {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-500);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─── PRICING ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto 24px;
}

.price-card {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(73,166,255,0.22);
}

.price-card__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 40px;
}

.price-card__header { margin-bottom: 20px; }
.price-card__header h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.price-card__type { font-size: 0.82rem; color: var(--grey-500); margin-top: 4px; }

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price-from { font-size: 0.85rem; color: var(--grey-500); margin-right: 4px; }
.price-number { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: 1rem; color: var(--grey-500); font-weight: 500; }
.price-card__quarterly { font-size: 0.82rem; color: var(--grey-500); margin: 8px 0 16px; font-weight: 500; }
.price-card__quarterly span { background: rgba(31,63,115,0.07); color: var(--navy); font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }

.price-card__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.price-card__includes li { font-size: 0.9rem; color: var(--text-mid); }

.pricing-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--grey-500);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq__inner { max-width: 780px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--transition);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--grey-100); }

.faq-item p {
  padding: 0 24px 22px;
  color: var(--grey-700);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ─── CTA SECTION ──────────────────────────────────────────────── */
.cta-section {
  background-image: url('images/bgswoosh.png');
  background-size: cover;
  background-position: center;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #1F3F73;
  margin-bottom: 16px;
}

.cta-section p {
  color: #1F3F73;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.cta-small {
  margin-top: 16px !important;
  font-size: 0.82rem !important;
  color: var(--navy, #1f3f73) !important;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding: 72px 24px 48px;
}

.footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 9px; }

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 24px;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  text-align: center;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .meds-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 72px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1080px) {
  /* Nav — hide links + CTA, show hamburger */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: block; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: block; }

  /* Hero */
  .hero { min-height: unset; padding: 80px 0 48px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding-top: 16px;
  }
  .hero__actions { justify-content: center; }
  .hero__trust { align-items: center; }
  .hero__image { order: -1; }
  .hero__image img { max-width: 260px; margin: 0 auto; }

  /* Proof */
  .proof-bar__inner { gap: 0; }
  .proof-stat { padding: 8px 20px; }
  .proof-divider { display: none; }

  /* Steps */
  .steps {
    flex-direction: column;
  }
  .step__arrow { transform: rotate(90deg); margin: 0 auto; }

  /* How telehealth */
  .how-telehealth { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .how-telehealth__image img { height: 280px; object-position: center 20%; }

  /* Meds visual */
  .meds-visual { grid-template-columns: 1fr; padding: 32px; gap: 32px; }

  /* Testimonials */
  .testimonial,
  .testimonial--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial--flip .testimonial__image { order: 0; }
  .testimonial--flip .testimonial__body  { order: 0; }
  .testimonial__image img { aspect-ratio: 16/9; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

