/* ============================================================
   LevelsRX GLP-1 Telehealth – Main Stylesheet
   Palette: Navy #0E2347, Teal #1A7F8E, Amber #F5A623,
            White #FFFFFF, Light #F4F8FA, Slate #5A6A7A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:ital,wght@0,600;1,400&display=swap');

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

:root {
  --navy:   #0E2347;
  --navy2:  #14305e;
  --teal:   #1A7F8E;
  --teal2:  #15697a;
  --amber:  #F5A623;
  --amber2: #e09410;
  --white:  #FFFFFF;
  --light:  #F4F8FA;
  --slate:  #5A6A7A;
  --text:   #1C2B3A;
  --border: #D6E4EC;
  --green:  #2A9D5C;
  --red:    #D64045;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(14,35,71,.10);
  --shadow-lg: 0 8px 48px rgba(14,35,71,.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--slate); max-width: 70ch; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); }
.section--teal { background: var(--teal); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover { background: var(--amber2); }

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}
.btn-secondary:hover { background: var(--teal2); }

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

.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: 8px; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

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

/* ---------- Urgency Bar ---------- */
.urgency-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 600;
  position: relative;
  z-index: 200;
}
.urgency-bar span { color: var(--amber); }

/* ---------- Sticky Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(14,35,71,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 16px; }
.nav-hamburger { display: none; cursor: pointer; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3860 60%, #0d4a5a 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,127,142,.25) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: center; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--amber);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 52ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  background: var(--teal);
  padding: 20px 28px;
  color: var(--white);
}
.hero-card-header h3 { color: var(--white); font-size: 1.1rem; }
.hero-card-body { padding: 28px; }
.hero-plan {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-plan.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,127,142,.12);
}
.hero-plan-radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-plan.active .hero-plan-radio {
  border-color: var(--teal);
  background: var(--teal);
}
.hero-plan.active .hero-plan-radio::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
}
.hero-plan-info h4 { color: var(--navy); font-size: .95rem; font-family: 'Inter', sans-serif; }
.hero-plan-info p { font-size: .8rem; color: var(--slate); margin: 0; }
.hero-plan-price { margin-left: auto; text-align: right; }
.hero-plan-price strong { display: block; font-size: 1.1rem; color: var(--navy); }
.hero-plan-price s { font-size: .78rem; color: var(--slate); }
.hero-plan-badge {
  background: var(--amber);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 30px;
}
.hero-stars { display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.hero-stars span { font-size: .82rem; color: var(--slate); }

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-badges { display: flex; gap: 0; flex-wrap: wrap; }
.trust-badge {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.trust-badge:last-child { border-right: none; }
.trust-badge-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 1.4rem;
}
.trust-badge h4 { font-size: .88rem; font-family: 'Inter', sans-serif; color: var(--navy); }
.trust-badge p { font-size: .76rem; color: var(--slate); max-width: 18ch; margin: 0; }

/* ---------- Social Proof Bar ---------- */
.proof-bar {
  background: var(--navy);
  padding: 24px 0;
  text-align: center;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-stat strong { display: block; font-size: 1.8rem; color: var(--amber); font-weight: 800; }
.proof-stat span { font-size: .8rem; color: rgba(255,255,255,.65); }
.proof-divider { width: 1px; height: 48px; background: rgba(255,255,255,.15); }

/* ---------- What Is Section ---------- */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.what-is-visual {
  position: relative;
}
.product-showcase {
  background: linear-gradient(135deg, #e8f4f6 0%, #d0eaf0 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-showcase::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(26,127,142,.12);
}
.vials-wrapper { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.vial {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vial-body {
  width: 56px;
  height: 100px;
  border-radius: 8px 8px 12px 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  overflow: hidden;
}
.vial-body.amber-v { background: linear-gradient(180deg, #e09410 0%, #F5A623 100%); }
.vial-body.teal-v  { background: linear-gradient(180deg, #14627a 0%, #1A7F8E 100%); }
.vial-cap {
  width: 36px;
  height: 16px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
}
.vial-cap.amber-c { background: #c47d10; }
.vial-cap.teal-c  { background: #0d4a5a; }
.vial-label {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-align: center;
  line-height: 1.2;
}
.vial span { font-size: .7rem; color: var(--slate); font-weight: 600; }

.what-is-content h2 { margin-bottom: 20px; }
.what-is-content p { margin-bottom: 16px; }
.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text); font-size: .9rem; margin: 0; }
.check-list { margin-top: 20px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text);
}
.check-list li .check-icon {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: .7rem;
}

/* ---------- How It Works ---------- */
.how-section { background: var(--navy); }
.how-section h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.how-section .section-label { color: var(--amber); display: block; text-align: center; }
.how-intro { color: rgba(255,255,255,.65); text-align: center; max-width: 56ch; margin: 0 auto 52px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h4 { color: var(--white); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: .95rem; }
.step-card p { color: rgba(255,255,255,.55); font-size: .85rem; max-width: none; margin: 0; }
.step-connector {
  position: absolute;
  top: 50px;
  right: -14px;
  color: var(--amber);
  font-size: 1.2rem;
  z-index: 1;
}

/* ---------- Medication Comparison ---------- */
.med-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.med-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.med-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal); }
.med-card-header {
  padding: 24px 28px;
  color: var(--white);
}
.med-card-header.sema { background: var(--teal); }
.med-card-header.tirz { background: var(--navy); }
.med-card-header .brand-names {
  font-size: .75rem;
  opacity: .75;
  margin-top: 4px;
}
.med-card-header .badge-popular {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 30px;
  margin-top: 8px;
}
.med-card-body { padding: 24px 28px; }
.med-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.med-stat:last-child { border-bottom: none; }
.med-stat span:first-child { color: var(--slate); }
.med-stat span:last-child { font-weight: 600; color: var(--navy); }
.med-card-price {
  background: var(--light);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.med-card-price .price { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.med-card-price .price s { font-size: .85rem; color: var(--slate); font-weight: 400; }

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow .15s, border-color .15s;
}
.feature-item:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.feature-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text h4 { font-family: 'Inter', sans-serif; font-size: .92rem; margin-bottom: 4px; }
.feature-text p { font-size: .82rem; max-width: none; margin: 0; }

/* ---------- Pricing ---------- */
.pricing-section { background: var(--light); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 48px rgba(26,127,142,.18);
}
.price-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--amber);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-card-header {
  padding: 28px 28px 20px;
}
.price-card-header h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price-card-header p { font-size: .85rem; max-width: none; margin: 0; }
.price-tiers { padding: 0 28px 20px; }
.price-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .15s;
}
.price-tier:hover { border-color: var(--teal); }
.price-tier.selected { border-color: var(--teal); background: rgba(26,127,142,.04); }
.price-tier input[type="radio"] { accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; }
.price-tier-info { flex: 1; }
.price-tier-info span { font-size: .82rem; color: var(--slate); display: block; }
.price-tier-info strong { font-size: .9rem; color: var(--navy); }
.price-tier-amount { text-align: right; }
.price-tier-amount .now { font-size: 1.05rem; font-weight: 800; color: var(--teal); }
.price-tier-amount .was { font-size: .75rem; color: var(--slate); text-decoration: line-through; display: block; }
.price-features { padding: 0 28px 28px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .84rem;
  color: var(--text);
  margin-bottom: 8px;
}
.price-features li .pf-check { color: var(--green); font-size: .8rem; flex-shrink: 0; margin-top: 2px; }
.price-card-footer { padding: 0 28px 28px; }
.scarcity-bar {
  margin-top: 32px;
  background: rgba(214,64,69,.08);
  border: 1px solid rgba(214,64,69,.2);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta h4 { font-family: 'Inter', sans-serif; font-size: .9rem; margin-bottom: 2px; }
.review-meta span { font-size: .75rem; color: var(--slate); }
.review-stars { color: var(--amber); font-size: .85rem; margin-bottom: 10px; }
.review-text { font-size: .88rem; color: var(--text); line-height: 1.6; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 10px;
}

/* ---------- Pros & Cons ---------- */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 28px;
}
.pros-box { background: rgba(42,157,92,.07); border: 1px solid rgba(42,157,92,.2); }
.cons-box { background: rgba(214,64,69,.05); border: 1px solid rgba(214,64,69,.15); }
.pros-box h3 { color: var(--green); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.cons-box h3 { color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .9rem;
  color: var(--text);
}
.pros-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.cons-list li::before { content: '×'; color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 1.1rem; line-height: 1.3; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
  color: var(--slate);
  font-size: .9rem;
}
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 0 20px; font-size: .92rem; color: var(--slate); line-height: 1.7; }

/* ---------- Guarantee ---------- */
.guarantee-section { background: var(--navy); }
.guarantee-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.guarantee-seal {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 12px rgba(245,166,35,.2);
}
.guarantee-seal .days { font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.guarantee-seal .days-label { font-size: .7rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }
.guarantee-content h2 { color: var(--white); margin-bottom: 16px; }
.guarantee-content p { color: rgba(255,255,255,.68); max-width: 60ch; }
.guarantee-content p + p { margin-top: 12px; }

/* ---------- Competitor Compare ---------- */
.compare-table-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 8px 0 0; }
.compare-table th.highlight { background: var(--teal); }
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }
.compare-table .row-label { font-weight: 600; color: var(--navy); }
.compare-table .td-highlight { background: rgba(26,127,142,.06) !important; }
.tick  { color: var(--green); font-size: 1rem; }
.cross { color: var(--red); font-size: 1rem; }
.maybe { color: var(--amber); }

/* ---------- Blog Section ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img-placeholder {
  font-size: 3rem;
  opacity: .4;
}
.blog-card-body { padding: 22px; }
.blog-category {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal);
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p { font-size: .83rem; margin: 0; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--slate);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 54ch; margin: 0 auto 32px; }
.cta-banner .cta-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cta-sub-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #080f1c;
  color: rgba(255,255,255,.55);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: .82rem; max-width: 30ch; color: rgba(255,255,255,.45); }
.footer-disclaimer {
  margin-top: 16px;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-legal-links a:hover { color: var(--amber); }

/* ---------- Sticky Bottom CTA (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 14px 24px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text { color: var(--white); font-size: .82rem; }
.sticky-cta-text strong { color: var(--amber); }

/* ---------- Notification Popup ---------- */
.notification-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  max-width: 280px;
  transform: translateX(-110%);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.notification-popup.show { transform: translateX(0); }
.notif-icon { font-size: 1.4rem; flex-shrink: 0; }
.notif-text { font-size: .78rem; }
.notif-text strong { display: block; color: var(--navy); }
.notif-text span { color: var(--slate); }
.notif-close { position: absolute; top: 6px; right: 8px; cursor: pointer; color: var(--slate); font-size: .8rem; background: none; border: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav { position: relative; }
  .what-is-grid { grid-template-columns: 1fr; }
  .med-compare-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .proof-bar-inner { gap: 20px; }
  .proof-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .compare-table { font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Utility ---------- */
.text-amber { color: var(--amber); }
.text-teal  { color: var(--teal); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-slate { color: var(--slate); }
.bg-light   { background: var(--light); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.w-100  { width: 100%; }

/* Focus styles */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ============================================================
   V2 ADDITIONS — Changes applied September 2026
   ============================================================ */

/* ---------- CHANGE 1: Hero Light Theme ---------- */
.hero-v2 {
  background: linear-gradient(135deg, #eaf4fb 0%, #f0f8ff 50%, #e8f3f8 100%);
  color: var(--navy);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-v2::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(26,127,142,.07);
  pointer-events: none;
}
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(245,166,35,.06);
  pointer-events: none;
}
.hero-v2 .hero-label {
  background: rgba(26,127,142,.1);
  border: 1px solid rgba(26,127,142,.25);
  color: var(--teal);
}
.hero-v2 h1 { color: var(--navy); font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.hero-v2 h1 em { font-style: normal; color: var(--amber); }
.hero-v2 .hero-desc { color: var(--slate); }
.hero-v2 .hero-trust-item { color: var(--slate); }
.hero-v2 .hero-trust-item svg { color: var(--green); }
.hero-v2 .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.hero-v2 .btn-outline:hover { background: var(--navy); color: var(--white); }

/* Hero right image panel */
.hero-image-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 460px;
}
.hero-girl-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(14,35,71,.12));
}
.hero-warranty-badge {
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
.hero-stats-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.hero-stats-bar .success-rate {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-stats-bar .success-label {
  font-size: .88rem;
  color: var(--slate);
  margin-left: 6px;
}
.hero-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}
.hero-avatar-stack {
  display: flex;
}
.hero-avatar-stack span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-avatar-stack span:first-child { margin-left: 0; }
.hero-social-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.social-proof-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-proof-box .sp-icon { font-size: 1.2rem; flex-shrink: 0; }
.social-proof-box .sp-text { font-size: .75rem; color: var(--text); }
.social-proof-box .sp-text strong { display: block; color: var(--navy); font-size: .82rem; }
.hero-trust-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 6px 0 0;
  font-size: .8rem;
  color: var(--slate);
}
.hero-trust-checks span { display:flex; align-items:center; gap:5px; }
.hero-trust-checks span::before { content:'✓'; color:var(--green); font-weight:700; }

/* ---------- CHANGE 2: Why Choose heading above trust strip ---------- */
.why-choose-section {
  background: var(--light);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.why-choose-section h2 { text-align: center; margin-bottom: 14px; }
.why-choose-intro {
  text-align: center;
  max-width: 68ch;
  margin: 0 auto 36px;
  font-size: .97rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- CHANGE 3: Product image in what-is section ---------- */
.product-image-showcase {
  background: linear-gradient(135deg, #eaf4f6 0%, #d8eef3 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-image-showcase::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(26,127,142,.1);
}
.both-vials-img {
  max-width: 280px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
  filter: drop-shadow(0 8px 24px rgba(14,35,71,.15));
}
.product-image-showcase .shipped-note {
  font-size: .78rem;
  color: var(--slate);
  margin: 0;
}
.product-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.product-stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}
.product-stat-box strong {
  font-size: 1.5rem;
  color: var(--navy);
  display: block;
  font-weight: 800;
}
.product-stat-box span { font-size: .75rem; color: var(--slate); }

/* ---------- CHANGE 4: How it works extra content ---------- */
.how-intro-content {
  max-width: 800px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 28px 32px;
}
.how-intro-content p {
  color: rgba(255,255,255,.72);
  font-size: .95rem;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 14px;
}
.how-intro-content p:last-child { margin-bottom: 0; }

/* ---------- CHANGE 5: Vials above med compare + content below ---------- */
.med-vials-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.med-vial-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: box-shadow .2s;
}
.med-vial-card:hover { box-shadow: var(--shadow-lg); }
.med-vial-img {
  max-width: 160px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.12));
}
.med-vial-card h3 { font-size: 1rem; margin-bottom: 4px; }
.med-vial-card p { font-size: .82rem; color: var(--slate); max-width: none; margin: 0; }
.med-content-below {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.med-content-card {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 22px 24px;
}
.med-content-card.tirz { border-left-color: var(--navy); }
.med-content-card h4 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.med-content-card p { font-size: .88rem; color: var(--text); max-width: none; margin-bottom: 8px; line-height: 1.7; }
.med-content-card p:last-child { margin: 0; }

/* ---------- CHANGE 6: New content sections ---------- */
.content-section { padding: 72px 0; }
.content-section--alt { background: var(--light); }
.content-section h2 { margin-bottom: 20px; }
.content-section .section-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 72ch;
  margin-bottom: 20px;
}
.content-section .section-intro + .section-intro { margin-top: -8px; }
.content-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: start;
}
.content-two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.content-highlight-list { margin: 20px 0; }
.content-highlight-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .94rem;
  color: var(--text);
  line-height: 1.6;
}
.content-highlight-list li .chl-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.legit-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.legit-signal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.legit-signal .ls-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.legit-signal .ls-text h4 { font-size: .88rem; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.legit-signal .ls-text p { font-size: .78rem; color: var(--slate); max-width: none; margin: 0; }
.order-steps-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-step-v {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.order-step-v:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(var(--teal), var(--border));
}
.order-step-v { padding-bottom: 28px; }
.order-step-v:last-child { padding-bottom: 0; }
.osv-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(245,166,35,.35);
}
.osv-content h4 { font-size: .95rem; font-family: 'Inter', sans-serif; margin-bottom: 4px; }
.osv-content p { font-size: .85rem; color: var(--slate); max-width: none; margin: 0; }

/* ---------- CHANGE 7: What is LevelsRX standalone section ---------- */
.what-is-standalone {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3860 100%);
  padding: 72px 0;
}
.what-is-standalone .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.what-is-standalone h2 { color: var(--white); margin-bottom: 20px; }
.what-is-standalone .section-label { color: var(--amber); }
.what-is-standalone p { color: rgba(255,255,255,.72); font-size: .97rem; line-height: 1.8; max-width: none; margin-bottom: 16px; }
.what-is-standalone p:last-of-type { margin-bottom: 0; }
.what-is-cards { display: flex; flex-direction: column; gap: 16px; }
.what-is-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.what-is-card .wic-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-is-card h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: .92rem; margin-bottom: 4px; }
.what-is-card p { color: rgba(255,255,255,.6); font-size: .82rem; max-width: none; margin: 0; }

/* ---------- Responsive for new sections ---------- */
@media (max-width: 768px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-panel { min-height: 320px; }
  .hero-girl-img { max-height: 320px; }
  .hero-warranty-badge { width: 80px; }
  .hero-social-proof { grid-template-columns: 1fr; }
  .med-vials-row { grid-template-columns: 1fr; }
  .med-content-below { grid-template-columns: 1fr; }
  .content-two-col, .content-two-col.reverse { grid-template-columns: 1fr; }
  .legit-signals { grid-template-columns: 1fr; }
  .what-is-standalone .container { grid-template-columns: 1fr; }
  .how-intro-content { padding: 20px; }
  .product-stats-grid { grid-template-columns: 1fr 1fr; }
}
