/* ══════════════════════════════════════════════════
   BestWeightLossMed.com — Main Stylesheet
   Fonts: Playfair Display (headings), Source Serif 4 (body), DM Sans (UI)
══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --red:       #e22c3e;
  --red-dark:  #b81e2e;
  --teal:      #127e91;
  --teal-light:#e8f7f9;
  --navy:      #1a1a2e;
  --ink:       #2a2a35;
  --muted:     #6b7280;
  --border:    #d5d7db;
  --bg-light:  #f8f9fa;
  --white:     #ffffff;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif:   'Source Serif 4', Georgia, serif;
  --ff-sans:    'DM Sans', system-ui, sans-serif;

  --radius:  8px;
  --radius-lg: 12px;
  --shadow:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);

  --max-w: 960px;
  --header-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-serif);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}
.logo-text {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--red); }

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--red); text-decoration: none; }

.header-cta {
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--red-dark); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-nav a {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-cta {
  margin-top: 8px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 11px;
  font-weight: 700;
  border-bottom: none;
}
.mobile-nav.open { display: flex; }

@media (max-width: 700px) {
  .site-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 80px 0 72px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -150px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--teal);
  bottom: -80px; left: -60px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: #ffffff;
  top: 40%; left: 30%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(226,44,62,0.18);
  color: #ff8a95;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(226,44,62,0.3);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: #ff8a95;
}

.hero-sub {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}

.hero-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(226,44,62,0.35);
}
.hero-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--teal);
  padding: 12px 0;
}
.trust-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-inner span {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   SUMMARY SECTION
══════════════════════════════════════════════════ */
.summary-section {
  padding: 60px 0 48px;
  background: var(--white);
}
.summary-box {
  background: #fff8f8;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.summary-header {
  margin-bottom: 24px;
}
.summary-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.summary-header h2 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--navy);
}
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.summary-list li {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.summary-list li strong { color: var(--navy); }
.pick-tag {
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 620px) {
  .summary-box { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════
   SHARED SECTION LABELS & TITLES
══════════════════════════════════════════════════ */
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 640px;
}

/* ══════════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════════ */
.table-section {
  padding: 64px 0;
  background: var(--bg-light);
}
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  background: var(--white);
  min-width: 700px;
}
.compare-table thead {
  background: var(--navy);
}
.compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.compare-table tbody tr {
  border-bottom: 1px solid #eef0f2;
  transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: #fafbfc; }
.compare-table tbody tr.top-row {
  background: #fff8f8;
}
.compare-table tbody tr.top-row:hover { background: #fff0f0; }
.compare-table tbody td {
  padding: 13px 16px;
  color: var(--ink);
  vertical-align: middle;
}
.prov-name {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.top-chip {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  width: fit-content;
}
.price-col {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.promo-col {
  font-size: 0.84rem;
  color: #7a5c00;
  font-style: italic;
}
.table-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s;
}
.table-btn:hover { background: var(--red-dark); text-decoration: none; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.how-section {
  padding: 72px 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--ff-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-family: var(--ff-sans);
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   PROVIDER CARDS
══════════════════════════════════════════════════ */
.providers-section {
  padding: 72px 0;
  background: var(--bg-light);
}

.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.provider-card:hover { box-shadow: var(--shadow-lg); }
.provider-card.featured {
  border-color: var(--red);
  border-width: 2px;
}

.card-ribbon {
  position: absolute;
  top: 0; left: 0;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 16px 5px 14px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  padding-right: 22px;
}

.card-inner {
  padding: 32px 36px 28px;
}
.featured .card-inner { padding-top: 42px; }

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.card-title-block h3 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.2;
}
.name-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.card-tagline {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 5px;
}
.card-price-block {
  text-align: right;
  flex-shrink: 0;
}
.card-price {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.card-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.card-promo-tag {
  display: inline-block;
  background: #fff3cd;
  color: #7a5c00;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 6px;
}

/* Promo alerts */
.promo-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  margin-bottom: 20px;
  background: #fffbeb;
  border: 1px solid #f0c060;
  color: #7a5c00;
}
.promo-alert strong { color: #5a4000; }
.promo-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.promo-alert.promo-green  { background: #f0fff4; border-color: #9ae6b4; color: #276749; }
.promo-alert.promo-green strong { color: #1a4a30; }
.promo-alert.promo-purple { background: #f5f0ff; border-color: #c4b5fd; color: #5b21b6; }
.promo-alert.promo-purple strong { color: #3b0d8c; }
.promo-alert.promo-orange { background: #fff7ed; border-color: #fdba74; color: #9a3412; }
.promo-alert.promo-orange strong { color: #7c2d12; }
.promo-alert.promo-teal  { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.promo-alert.promo-teal strong { color: #064e3b; }
.promo-alert.promo-red   { background: #fff5f5; border-color: #feb2b2; color: #9b2c2c; }
.promo-alert.promo-red strong { color: #742020; }

.card-body-text p {
  font-family: var(--ff-serif);
  font-size: 0.98rem;
  color: #3a3a45;
  margin-bottom: 14px;
  line-height: 1.75;
}
.card-body-text p:last-child { margin-bottom: 0; }
.card-body-text { margin-bottom: 20px; }

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 560px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}
.pros-box, .cons-box {
  padding: 16px 18px;
  border-radius: var(--radius);
}
.pros-box { background: #f0fff4; border: 1px solid #9ae6b4; }
.cons-box { background: #fff5f5; border: 1px solid #feb2b2; }
.pros-box h4 {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #276749;
  margin-bottom: 10px;
}
.cons-box h4 {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9b2c2c;
  margin-bottom: 10px;
}
.pros-box ul li, .cons-box ul li {
  font-family: var(--ff-sans);
  font-size: 0.87rem;
  color: var(--ink);
  padding: 4px 0;
  line-height: 1.45;
}
.pros-box ul li::before { content: '✓ '; color: #38a169; font-weight: 700; }
.cons-box ul li::before { content: '✗ '; color: #e53e3e; font-weight: 700; }

/* CTA */
.card-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.cta-btn:hover { background: #2d2d4e; transform: translateY(-1px); }
.cta-btn.primary { background: var(--red); }
.cta-btn.primary:hover { background: var(--red-dark); }
.cta-btn.large { padding: 16px 40px; font-size: 1.05rem; }
.cta-note {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 580px) {
  .card-inner { padding: 24px 20px 20px; }
  .card-head { flex-direction: column; }
  .card-price-block { text-align: left; }
}

/* ══════════════════════════════════════════════════
   INFO / EDUCATION SECTION
══════════════════════════════════════════════════ */
.info-section {
  padding: 72px 0;
  background: var(--white);
}
.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) {
  .info-inner { grid-template-columns: 1fr; gap: 36px; }
}
.info-text p {
  font-family: var(--ff-serif);
  font-size: 0.98rem;
  color: #3a3a45;
  margin-bottom: 16px;
  line-height: 1.75;
}
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
}
.info-card h4 {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-card p {
  font-family: var(--ff-sans);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   SAFETY SECTION
══════════════════════════════════════════════════ */
.safety-section {
  padding: 72px 0;
  background: var(--bg-light);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 760px) {
  .safety-grid { grid-template-columns: 1fr; }
}
.safety-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid;
}
.safety-card.good  { background: #f0fff4; border-color: #9ae6b4; }
.safety-card.bad   { background: #fff5f5; border-color: #feb2b2; }
.safety-card.neutral { background: #fffbeb; border-color: #f0c060; }
.safety-card h3 {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.safety-card.good h3 { color: #276749; }
.safety-card.bad h3  { color: #9b2c2c; }
.safety-card.neutral h3 { color: #7a5c00; }
.safety-card ul li {
  font-family: var(--ff-sans);
  font-size: 0.87rem;
  color: var(--ink);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.45;
}
.safety-card ul li:last-child { border-bottom: none; }
.safety-disclaimer {
  margin-top: 28px;
  padding: 16px 20px;
  background: #f0f2f5;
  border-radius: var(--radius);
  border-left: 3px solid var(--muted);
}
.safety-disclaimer p {
  font-family: var(--ff-sans);
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════ */
.faq-section {
  padding: 72px 0;
  background: var(--white);
}
.faq-list {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  padding: 20px 24px;
  font-family: var(--ff-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
  cursor: pointer;
}
.faq-q:hover { background: var(--bg-light); }
.faq-q[aria-expanded="true"] { background: var(--bg-light); color: var(--red); }
.faq-chevron {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-light);
}
.faq-a.open { display: block; }
.faq-a p {
  font-family: var(--ff-serif);
  font-size: 0.96rem;
  color: #3a3a45;
  line-height: 1.75;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════ */
.final-cta-section {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.final-cta-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}
.final-cta-section p {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: #111122;
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-about {
  font-family: var(--ff-sans);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  line-height: 1.6;
}
.footer-links h4 {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom p {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   BREADCRUMB NAV
══════════════════════════════════════════════════ */
.breadcrumb-nav {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb-list li + li::before {
  content: '›';
  color: var(--border);
  font-size: 1rem;
}
.breadcrumb-list a {
  color: var(--teal);
  text-decoration: none;
}
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li[aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ══════════════════════════════════════════════════
   AFFILIATE DISCLOSURE BAR
══════════════════════════════════════════════════ */
.disclosure-bar {
  background: #fffbeb;
  border-bottom: 1px solid #f0c060;
  padding: 10px 0;
}
.disclosure-bar p {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: #7a5c00;
  margin: 0;
  line-height: 1.5;
}
.disclosure-bar strong { color: #5a4000; }

/* ══════════════════════════════════════════════════
   VISUALLY HIDDEN (Screen reader only)
══════════════════════════════════════════════════ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════
   PROVIDER CARD h2 override (semantic but styled as h3)
══════════════════════════════════════════════════ */
.provider-card-h2 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════
   UTILITIES & ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: fadeInUp 0.55s ease both;
}
.hero-badge    { animation-delay: 0.05s; }
.hero-title    { animation-delay: 0.15s; }
.hero-sub      { animation-delay: 0.25s; }
.hero-stats    { animation-delay: 0.35s; }
.hero-btn      { animation-delay: 0.45s; }

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   CRO + Accessibility Enhancements
══════════════════════════════════════════════════ */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-direct {
  min-width: 240px;
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-proof {
  margin-top: 16px;
  color: rgba(255,255,255,0.76);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #127e91;
  outline-offset: 3px;
  border-radius: 6px;
}

.cta-btn:focus-visible,
.header-cta:focus-visible,
.table-btn:focus-visible,
.faq-q:focus-visible,
.hero-btn:focus-visible,
.mobile-menu-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 126, 145, 0.18);
}

.sticky-mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}

.sticky-mobile-cta:hover {
  background: var(--red-dark);
  text-decoration: none;
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.legal-main {
  padding: 56px 0 72px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(10, 16, 28, 0.06);
  padding: 32px;
}

.legal-card h1,
.legal-card h2 {
  color: var(--navy);
}

.legal-card h1 {
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--muted);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.legal-card section + section {
  margin-top: 28px;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-direct,
  .hero-btn-secondary {
    width: 100%;
  }

  .legal-card {
    padding: 22px;
    border-radius: 14px;
  }
}

@media (max-width: 700px) {
  .sticky-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 90px;
  }
}
