/* ═══════════════════════════════════════════════════════════════
   NursingExpert — main.css  v2
   Palette: Bright clinical teal · Fresh mint · Warm coral accent
            Light backgrounds — clean, airy, professional nursing feel
   Font: Plus Jakarta Sans + Fraunces
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Primary — bright teal / clinical green */
  --teal:        #0EA5E9;   /* bright sky-teal — clean & medical */
  --teal-dark:   #0284C7;
  --teal-deep:   #0369A1;
  --teal-light:  #BAE6FD;
  --teal-xlight: #F0F9FF;

  /* Accent — warm coral / caring */
  --rose:        #F97316;   /* warm orange-coral — energetic, caring */
  --rose-dark:   #EA580C;
  --rose-light:  #FFF7ED;

  /* Mint — secondary healthcare accent */
  --mint:        #10B981;
  --mint-dark:   #059669;
  --mint-light:  #D1FAE5;
  --mint-xlight: #ECFDF5;

  /* Lavender — soft secondary */
  --lavender:    #8B5CF6;
  --lavender-light: #EDE9FE;

  /* Light neutrals — NO dark backgrounds */
  --ink:         #0F4C75;   /* deep teal-blue for headings — not black */
  --ink-2:       #1A5276;
  --body:        #374151;   /* mid-grey body text */
  --muted:       #6B7280;
  --border:      #E0F2FE;   /* tinted teal border */
  --border-2:    #E5E7EB;   /* neutral border */
  --offwhite:    #F8FBFF;   /* very light blue-tinted white */
  --offwhite-2:  #F0F9FF;   /* teal-tinted section bg */
  --white:       #FFFFFF;

  /* Hero / header — light gradient, NOT dark */
  --hero-bg:     linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 40%, #E8F5E9 100%);
  --hero-text:   #0F4C75;   /* dark teal text on light background */

  /* Semantic */
  --success:     #10B981;
  --warning:     #F59E0B;
  --info:        #0EA5E9;

  /* Typography */
  --sans:   'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --serif:  'Fraunces', Georgia, serif;

  /* Layout */
  --max-w:    1200px;
  --radius:   12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows — teal-tinted, light */
  --shadow-sm: 0 1px 4px rgba(14,165,233,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(14,165,233,.12), 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 32px rgba(14,165,233,.16), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(14,165,233,.2),  0 8px 24px rgba(0,0,0,.08);
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--sans); font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ── UTILITIES ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* ── EYEBROW ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.eyebrow-teal  { background: var(--teal-xlight); color: var(--teal-dark); }
.eyebrow-rose  { background: var(--rose-light);  color: var(--rose-dark); }
.eyebrow-white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.eyebrow-navy  { background: rgba(15,52,96,.1);  color: var(--navy); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .9rem; font-weight: 700;
  padding: 12px 28px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all .2s ease; text-decoration: none;
  line-height: 1; white-space: nowrap; letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-teal {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; box-shadow: 0 6px 20px rgba(13,148,136,.45); }

.btn-rose {
  background: var(--rose); color: #fff; border-color: var(--rose);
  box-shadow: 0 4px 14px rgba(244,63,94,.35);
}
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: #fff; }

.btn-navy {
  background: var(--offwhite-2); color: #fff; border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(15,52,96,.25);
}
.btn-navy:hover { background: var(--teal-xlight); border-color: var(--navy-2); color: #fff; }

.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); color: #fff; }

.btn-lg  { padding: 15px 36px; font-size: .95rem; }
.btn-xl  { padding: 18px 44px; font-size: 1rem; border-radius: var(--radius); }
.btn-block { width: 100%; justify-content: center; }

/* ── PROMO TOPBAR ─────────────────────────────────────────────── */
.promo-bar { /* bright */
  background: var(--rose);
  color: #fff;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: .02em;
  position: relative;
}
.promo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.promo-bar a:hover { color: var(--rose-light); }
.promo-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 2px 6px;
}

/* ── SITE HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; gap: 20px; height: 68px;
}
.logo-wrap { flex-shrink: 0; display: flex; align-items: center; }
.logo-wrap:hover { opacity: .9; }

.nav-links { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: .875rem; font-weight: 600; color: var(--ink-2);
  padding: 8px 13px; border-radius: var(--radius-sm); transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-xlight); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-signin {
  font-size: .875rem; font-weight: 600; color: var(--muted);
  padding: 8px 14px; border-radius: var(--radius-sm); transition: all .15s;
}
.nav-signin:hover { color: var(--teal); background: var(--teal-xlight); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 8px; transition: background .2s; margin-left: auto;
}
.hamburger:hover { background: var(--teal-xlight); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: all .25s; }

/* ── MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: #fff; transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column; padding: 0 0 32px;
}
.mobile-menu.open { transform: translateX(0); }
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--offwhite-2);
}
.mm-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.8rem; cursor: pointer; padding: 4px 8px; line-height: 1; }
.mm-links { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mm-links a {
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  padding: 14px 24px; border-left: 3px solid transparent; transition: all .15s;
}
.mm-links a:hover { color: var(--teal); border-left-color: var(--teal); background: var(--teal-xlight); }
.mm-cta { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ── HERO SECTION ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 45%, #E8F5E9 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(13,148,136,.2) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(244,63,94,.08) 0%, transparent 45%);
  pointer-events: none;
}
/* Subtle cross/plus pattern — healthcare feel */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-kicker { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-h1 .accent { color: var(--teal-light); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .76rem; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8); border-radius: 100px; padding: 5px 12px;
}
.trust-pill::before { content: '✓'; color: var(--teal-light); font-weight: 800; }

.hero-rating {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.hero-stars { color: #FBBF24; font-size: .95rem; letter-spacing: 1px; }
.hero-rating-score { color: #fff; font-weight: 700; }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }

/* ── ORDER FORM CARD ──────────────────────────────────────────── */
.order-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  position: relative;
}
.order-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--teal-xlight);
}
.order-card-title span { color: var(--teal); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.12); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.pages-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--offwhite); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 12px; justify-content: space-between;
}
.pages-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0; line-height: 1;
}
.pages-btn:hover { background: var(--teal-dark); }
.pages-count { font-size: .92rem; font-weight: 700; color: var(--ink); text-align: center; min-width: 48px; }
.pages-words { font-size: .68rem; color: var(--muted); }

.order-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--teal-xlight); border-radius: var(--radius-sm);
  padding: 12px 14px; margin: 16px 0;
}
.order-price-label { font-size: .8rem; color: var(--muted); font-weight: 600; }
.order-price-val {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 800; color: var(--teal);
  display: flex; align-items: flex-start; gap: 2px;
}
.order-price-val sup { font-size: .9rem; margin-top: 4px; }

.order-discount {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 14px;
}

.order-card-footer {
  text-align: center;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
.order-card-footer a { color: var(--teal); }

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: 20px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-family: var(--serif); font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-val span { font-size: 1rem; }
.stat-lbl { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── FEATURES STRIP ───────────────────────────────────────────── */
.features-strip { background: var(--offwhite); padding: 52px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-xlight); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
  border: 1px solid var(--teal-light);
}
.feature-title { font-size: .97rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.feature-desc  { font-size: .84rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 40px; flex-wrap: wrap; }
.how-tab {
  padding: 13px 26px; font-size: .88rem; font-weight: 600; color: var(--muted);
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .2s;
}
.how-tab.active { color: var(--teal); border-bottom-color: var(--teal); font-weight: 700; }
.how-panel { display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.how-panel.active { display: grid; }
.how-panel-img { border-radius: var(--radius); overflow: hidden; background: var(--teal-xlight); display: flex; align-items: center; justify-content: center; min-height: 200px; font-size: 4rem; }
.how-panel-img img { width: 100%; border-radius: var(--radius); }
.how-step-num { font-family: var(--serif); font-size: 3rem; font-weight: 800; color: var(--teal-xlight); line-height: 1; margin-bottom: 10px; }
.how-panel-title { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.how-panel-desc  { font-size: .92rem; color: var(--muted); line-height: 1.72; margin-bottom: 20px; }

/* ── SERVICES GRID ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 22px; transition: all .25s; cursor: pointer; text-decoration: none; display: block;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.svc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.svc-title { font-size: .97rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.svc-desc  { font-size: .82rem; color: var(--muted); line-height: 1.62; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── FREE FEATURES ────────────────────────────────────────────── */
.free-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; gap: 12px;
}
.ff-label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.ff-was   { font-size: .8rem; color: var(--muted); text-decoration: line-through; }
.ff-free  { font-size: .78rem; font-weight: 800; color: var(--teal); background: var(--teal-xlight); border: 1px solid var(--teal-light); padding: 3px 10px; border-radius: 100px; white-space: nowrap; }

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews-strip { background: var(--teal-xlight); padding: 80px 0; }
.reviews-header { text-align: center; margin-bottom: 48px; }
.overall-rating {
  display: inline-flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 24px 36px; margin-bottom: 32px;
}
.overall-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 800; color: #fff; line-height: 1; }
.overall-stars { color: #FBBF24; font-size: 1.2rem; letter-spacing: 2px; margin: 6px 0; }
.overall-sub { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rev-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 24px; transition: all .25s;
}
.rev-card:hover { background: rgba(255,255,255,.08); border-color: rgba(13,148,136,.3); transform: translateY(-3px); }
.rev-stars  { color: #FBBF24; font-size: .88rem; letter-spacing: 1px; margin-bottom: 10px; }
.rev-body   { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.68; margin-bottom: 18px; }
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: #fff;
}
.rev-name   { font-size: .84rem; font-weight: 700; color: rgba(255,255,255,.85); }
.rev-detail { font-size: .72rem; color: rgba(255,255,255,.38); margin-top: 2px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 20px; background: var(--white); border: none;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  color: var(--ink); text-align: left; cursor: pointer; gap: 12px; transition: background .2s;
}
.faq-q:hover { background: var(--teal-xlight); }
.faq-ico { font-size: 1.2rem; color: var(--teal); flex-shrink: 0; transition: transform .25s; line-height: 1; }
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
.faq-ans { display: none; padding: 0 20px 18px; background: var(--teal-xlight); }
.faq-ans p { font-size: .88rem; color: var(--muted); line-height: 1.72; margin: 14px 0 0; }

/* ── GUARANTEES ───────────────────────────────────────────────── */
.guar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.guar-card {
  text-align: center; padding: 28px 20px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.guar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.guar-icon { font-size: 2.2rem; margin-bottom: 14px; }
.guar-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.guar-desc  { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── BLOG GRID ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .25s; box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--teal-xlight); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 22px; }
.post-cat-pill {
  font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  background: var(--teal-xlight); color: var(--teal-dark); padding: 3px 9px;
  border-radius: 4px; border: 1px solid var(--teal-light); text-decoration: none;
}
.post-date-sm { font-size: .72rem; color: var(--muted); }
.post-cats-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.blog-card-title { font-size: .97rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--teal); }
.blog-card-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.62; margin-bottom: 14px; }
.blog-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.read-time { font-size: .73rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.read-more-link { font-size: .8rem; font-weight: 700; color: var(--teal); }
.read-more-link:hover { color: var(--teal-dark); }

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-title { font-family: var(--serif); font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.cta-desc  { font-size: .95rem; color: rgba(255,255,255,.65); max-width: 520px; line-height: 1.72; margin: 0; }
.cta-desc a { color: #fff; font-weight: 700; text-decoration: underline; }
.cta-acts { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer { background: var(--teal-xlight); }
.footer-top { padding: 56px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.48); line-height: 1.7; margin: 18px 0 22px; max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 18px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; text-decoration: none; transition: all .2s;
}
.footer-social:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-trust-badge {
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  padding: 4px 10px; border-radius: 6px;
}
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col ul { padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .84rem; color: rgba(255,255,255,.52); transition: color .15s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; font-size: .76rem; color: rgba(255,255,255,.28);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.32); font-size: .76rem; transition: color .15s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-payment { display: flex; align-items: center; gap: 12px; }
.footer-payment span { font-size: .72rem; color: rgba(255,255,255,.28); }

/* ── BREADCRUMBS ─────────────────────────────────────────────── */
.breadcrumbs { font-size: .78rem; color: var(--muted); padding: 12px 0; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--teal); }

/* ── POST CONTENT ─────────────────────────────────────────────── */
.post-body h2 { font-size: 1.4rem; font-weight: 800; margin: 2em 0 .75em; border-bottom: 2px solid var(--teal-xlight); padding-bottom: 8px; }
.post-body h3 { font-size: 1.15rem; font-weight: 700; margin: 1.75em 0 .6em; color: var(--ink-2); }
.post-body p  { font-size: .96rem; line-height: 1.8; margin-bottom: 1.2em; color: var(--body); }
.post-body ul, .post-body ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.post-body li { font-size: .94rem; line-height: 1.75; margin-bottom: .45em; color: var(--body); }
.post-body ul li::marker { color: var(--teal); }
.post-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote { border-left: 4px solid var(--teal); padding: 14px 18px; margin: 1.5em 0; background: var(--teal-xlight); border-radius: 0 8px 8px 0; font-style: italic; color: var(--ink-2); }
.post-body img { border-radius: var(--radius-sm); margin: 1.5em 0; }
.post-body code { background: var(--teal-xlight); color: var(--teal-dark); padding: 2px 6px; border-radius: 4px; font-size: .85em; }
.post-body pre { background: var(--teal); color: #e2e8f0; padding: 18px; border-radius: var(--radius-sm); overflow-x: auto; margin: 1.5em 0; }

/* ── 404 ──────────────────────────────────────────────────────── */
.page-404 { text-align: center; padding: 100px 0; }
.err-code { font-family: var(--serif); font-size: clamp(5rem,15vw,10rem); font-weight: 800; color: var(--teal); line-height: 1; opacity: .15; }

/* ── SEARCH ───────────────────────────────────────────────────── */
.search-form { display: flex; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.search-form:focus-within { border-color: var(--teal); }
.search-field { flex: 1; padding: 13px 18px; border: none; outline: none; font-family: var(--sans); font-size: .9rem; }
.search-submit { background: var(--teal); color: #fff; border: none; padding: 0 20px; font-size: .9rem; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: background .2s; }
.search-submit:hover { background: var(--teal-dark); }

/* ── WIDGET ───────────────────────────────────────────────────── */
.widget { margin-bottom: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.widget-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.an { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.an.visible { opacity: 1; transform: none; }

/* ── REVIEWS PAGE ─────────────────────────────────────────────── */
.reviews-summary { display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 36px; margin-bottom: 40px; box-shadow: var(--shadow-sm); }
.rev-big-num { font-family: var(--serif); font-size: 4rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.rev-big-stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 6px; }
.rev-big-sub { font-size: .78rem; color: var(--muted); font-weight: 600; }
.rev-bars { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.rev-bar-row { display: flex; align-items: center; gap: 10px; }
.rev-bar-lbl { font-size: .74rem; color: var(--muted); width: 50px; flex-shrink: 0; }
.rev-bar-track { flex: 1; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: linear-gradient(90deg,var(--teal),var(--teal-dark)); border-radius: 4px; }
.rev-bar-pct { font-size: .7rem; font-weight: 700; color: var(--teal); width: 30px; text-align: right; flex-shrink: 0; }
.rev-stats-col { display: flex; flex-direction: column; gap: 14px; }
.rev-stat-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 800; color: var(--rose); line-height: 1; margin-bottom: 2px; }
.rev-stat-lbl { font-size: .68rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.rcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: all .25s; }
.rcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal-light); }
.rcard-stars { color: #FBBF24; font-size: .88rem; letter-spacing: 1px; margin-bottom: 8px; }
.rcard-grade { display: inline-block; font-size: .68rem; font-weight: 700; background: rgba(16,185,129,.08); color: #059669; border: 1px solid rgba(16,185,129,.2); padding: 3px 9px; border-radius: 4px; margin-bottom: 8px; }
.rcard-subject { font-size: .86rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rcard-type { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.rcard-body { font-size: .83rem; color: var(--body); line-height: 1.65; margin-bottom: 16px; }
.rcard-author { display: flex; align-items: center; gap: 10px; }
.rcard-av { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.rcard-name { font-size: .83rem; font-weight: 700; color: var(--ink); }
.rcard-detail { font-size: .7rem; color: var(--muted); margin-top: 2px; }
.verified-badge { display: inline-flex; align-items: center; gap: 3px; font-size: .63rem; font-weight: 700; color: #059669; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); padding: 2px 6px; border-radius: 4px; margin-top: 3px; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .order-card { max-width: 500px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .how-panel.active { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .guar-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 8px 18px; }
  .reviews-summary { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guar-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-acts { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-item { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 12px 24px; flex-direction: row; justify-content: space-between; }
  .stat-item:last-child { border-bottom: none; }
  .how-tabs { overflow-x: auto; }
  .free-features-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .guar-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
}
@media print {
  .site-header, .promo-bar, .site-footer, .mobile-menu, .hero, .cta-banner { display: none; }
  body { font-size: 12pt; color: #000; }
}

/* ═══════════════════════════════════════════════════════════════
   BRIGHT THEME OVERRIDES v2
   All dark/navy/ink backgrounds replaced with light clinical palette
   ═══════════════════════════════════════════════════════════════ */

/* ── PROMO BAR — bright coral ─────────────────────────────────── */
.promo-bar {
  background: var(--rose) !important;
  color: #fff !important;
}

/* ── HEADER — clean white ─────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.98) !important;
  border-bottom: 2px solid var(--border) !important;
  box-shadow: 0 2px 16px rgba(14,165,233,.08) !important;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(14,165,233,.14) !important;
}
.mm-head {
  background: var(--teal) !important;
}

/* ── HERO — bright clinical gradient (light, airy) ─────────────── */
.hero {
  background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 40%, #E8F5E9 100%) !important;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  background: radial-gradient(ellipse at 25% 70%, rgba(14,165,233,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(249,115,22,.06) 0%, transparent 45%) !important;
}
.hero::after {
  background-image: radial-gradient(rgba(14,165,233,.06) 1px, transparent 1px) !important;
}
.hero-h1 {
  color: var(--ink) !important;
}
.hero-h1 .accent {
  color: var(--teal-deep) !important;
}
.hero-sub {
  color: #374151 !important;
}
.hero-submit-line { color: #4B5563 !important; }
.hero-rating { color: #6B7280 !important; }
.hero-rating-score { color: var(--ink) !important; }
.trust-pill {
  background: rgba(14,165,233,.1) !important;
  border: 1px solid rgba(14,165,233,.2) !important;
  color: var(--teal-deep) !important;
}
.trust-pill::before { color: var(--teal) !important; }
.hero-rating-pill {
  background: rgba(249,115,22,.12) !important;
  border: 1px solid rgba(249,115,22,.2) !important;
  color: #C2410C !important;
}
.hero-stars { color: #F59E0B !important; }
.hs-val { color: var(--ink) !important; }
.hs-val span { color: var(--rose) !important; }
.hs-lbl { color: var(--muted) !important; }
.hero-stats { border-top-color: rgba(14,165,233,.2) !important; }

/* Order card — stays white, looks great on light hero */
.order-card {
  background: #fff !important;
  box-shadow: 0 12px 48px rgba(14,165,233,.18), 0 4px 16px rgba(0,0,0,.06) !important;
  border: 1.5px solid var(--border) !important;
}
.hero-badge {
  background: rgba(255,255,255,.92) !important;
  border: 1px solid var(--border) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow) !important;
}

/* ── STATS BAR — vibrant teal ──────────────────────────────────── */
.stats-bar {
  background: var(--teal) !important;
}
.stat-val { color: #fff !important; }
.stat-lbl { color: rgba(255,255,255,.8) !important; }
.stat-item { border-right-color: rgba(255,255,255,.25) !important; }
.stat-item { border-bottom-color: rgba(255,255,255,.2) !important; }

/* ── FEATURES STRIP ────────────────────────────────────────────── */
.features-strip {
  background: #fff !important;
  border-bottom: 1px solid var(--border) !important;
}
.feature-icon {
  background: var(--teal-xlight) !important;
  border-color: var(--border) !important;
}

/* ── HOW IT WORKS ──────────────────────────────────────────────── */
.how-tab { color: var(--muted) !important; }
.how-tab.active { color: var(--teal) !important; border-bottom-color: var(--teal) !important; }
.how-step-num { color: rgba(14,165,233,.2) !important; }
.how-panel-title { color: var(--ink) !important; }
.how-panel-desc { color: var(--muted) !important; }

/* ── REVIEWS SECTION — light gradient ─────────────────────────── */
.reviews-strip {
  background: linear-gradient(135deg, #F0F9FF 0%, #ECFDF5 100%) !important;
}
.reviews-header h2 { color: var(--ink) !important; }
.reviews-header .eyebrow-white {
  background: rgba(14,165,233,.1) !important;
  color: var(--teal-deep) !important;
}
.overall-rating {
  background: #fff !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
}
.overall-num { color: var(--teal) !important; }
.overall-sub { color: var(--muted) !important; }
.rev-card {
  background: #fff !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
}
.rev-card:hover {
  border-color: var(--teal-light) !important;
  box-shadow: var(--shadow-md) !important;
}
.rev-body { color: var(--body) !important; }
.rev-name { color: var(--ink) !important; }
.rev-detail { color: var(--muted) !important; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-q:hover { background: var(--teal-xlight) !important; }
.faq-ans { background: var(--teal-xlight) !important; }
.faq-ans p { color: var(--body) !important; }

/* ── CTA BANNER — vibrant teal gradient ────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%) !important;
}
.cta-title { color: #fff !important; }
.cta-desc { color: rgba(255,255,255,.85) !important; }
.cta-desc a { color: #fff !important; font-weight: 800 !important; }

/* ── FOOTER — light, clean ─────────────────────────────────────── */
.site-footer {
  background: #F0F9FF !important;
  border-top: 2px solid var(--border) !important;
}
.footer-brand p { color: var(--muted) !important; }
.footer-col h4 { color: var(--teal-deep) !important; }
.footer-col a { color: var(--body) !important; }
.footer-col a:hover { color: var(--teal) !important; }
.footer-social {
  background: #fff !important;
  border-color: var(--border) !important;
  color: var(--teal) !important;
}
.footer-social:hover { background: var(--teal) !important; color: #fff !important; }
.footer-trust-badge { color: var(--muted) !important; background: #fff !important; border-color: var(--border) !important; }
.footer-bottom { border-top-color: var(--border) !important; }
.footer-bottom-inner { color: var(--muted) !important; }
.footer-links a { color: var(--muted) !important; }
.footer-links a:hover { color: var(--teal) !important; }
.footer-payment span { color: var(--muted) !important; }

/* ── MOBILE MENU — teal header, white body ─────────────────────── */
.mobile-menu { background: #fff !important; }
.mm-links a { color: var(--ink) !important; }
.mm-links a:hover { color: var(--teal) !important; border-left-color: var(--teal) !important; background: var(--teal-xlight) !important; }

/* ── SIDEBAR CTA widget ────────────────────────────────────────── */
.sidebar-cta-widget {
  background: var(--teal) !important;
  border: none !important;
}
.sidebar-cta-widget .widget-title { color: #fff !important; border-color: rgba(255,255,255,.2) !important; }
.sidebar-cta-widget p { color: rgba(255,255,255,.85) !important; }

/* ── BLOG / ARCHIVE page headers ───────────────────────────────── */
/* Any section with dark hero gradient → bright teal gradient */
.archive-header, .page-hero-header {
  background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 60%, #E8F5E9 100%) !important;
}

/* ── BLOG CARD ─────────────────────────────────────────────────── */
.blog-card:hover { border-color: var(--teal-light) !important; }
.post-cat-pill { background: var(--teal-xlight) !important; color: var(--teal-deep) !important; border-color: var(--border) !important; }

/* ── BREADCRUMBS ───────────────────────────────────────────────── */
.breadcrumbs a { color: var(--teal) !important; }

/* ── SEARCH form ───────────────────────────────────────────────── */
.search-submit { background: var(--teal) !important; }
.search-submit:hover { background: var(--teal-dark) !important; }

/* ── POST BODY ─────────────────────────────────────────────────── */
.post-body h2 { border-bottom-color: var(--teal-xlight) !important; }
.post-body blockquote { background: var(--teal-xlight) !important; border-left-color: var(--teal) !important; }
.post-body code { background: var(--teal-xlight) !important; color: var(--teal-deep) !important; }

/* ── ORDER FORM PRICE DISPLAY ──────────────────────────────────── */
.order-price-row { background: var(--teal-xlight) !important; }
.order-price-val { color: var(--teal) !important; }
.order-discount { background: var(--rose-light) !important; color: var(--rose-dark) !important; }

/* ── GUARANTEE CARDS ───────────────────────────────────────────── */
.guar-card:hover { border-color: var(--teal-light) !important; }

/* ── EYEBROW adjustments for light backgrounds ─────────────────── */
.eyebrow-white {
  background: rgba(14,165,233,.12) !important;
  color: var(--teal-deep) !important;
}

/* ── SAMPLE / REVIEW page hero headers ─────────────────────────── */
/* Inline style overrides for dark page headers */
[style*="background:linear-gradient(135deg,#0F172A"],
[style*="background:linear-gradient(135deg,var(--navy-2)"],
[style*="background:linear-gradient(135deg,var(--navy)"] {
  background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 50%, #E8F5E9 100%) !important;
}
[style*="background:var(--ink)"] {
  background: var(--teal) !important;
}
[style*="background:var(--navy)"] {
  background: var(--teal-xlight) !important;
}
