/* ===== NeuroPuls GR — Editorial / Kластер 2 / Характер A ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

:root {
  --accent: #2563eb;
  --accent-rgb: 37,99,235;
  --accent-light: #5b8af0;
  --accent-dark: #1a4db5;
  --ink: #1a1a2e;
  --ink-soft: #3d3d5c;
  --bg: #fafafa;
  --bg-alt: #f0f4ff;
  --bg-dark: #0f0f1e;
  --rule: #e2e8f0;
  --success: #16a34a;
  --error: #dc2626;
  --old-price: #9ca3af;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 100;
  position: relative;
}

/* ===== NAV D — SPLIT CENTER ===== */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
}
.nav-left { justify-self: start; display: flex; gap: 28px; align-items: center; }
.nav-logo { justify-self: center; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.5px; flex-shrink: 0; white-space: nowrap; text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-right { justify-self: end; display: flex; gap: 20px; align-items: center; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
.nav-link:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff; font-size: 13px; font-weight: 700; padding: 9px 22px; border-radius: 6px; flex-shrink: 0; white-space: nowrap; transition: background .2s; text-decoration: none; }
.nav-cta:hover { background: var(--accent-dark); color: #fff; }

/* ===== HERO — ASYMMETRIC (60/40) ===== */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 560px;
  overflow: hidden;
}
.hero-image-col {
  position: relative;
  overflow: hidden;
  background: #f0f4ff;
}
.hero-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
/* Floating badge over image */
.hero-badge-float {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-badge-float .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
/* Zone labels on image */
.hero-zone-label {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  z-index: 2;
  white-space: nowrap;
}
.hero-zone-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 5px;
  vertical-align: middle;
}
.hero-zone-1 { top: 30%; left: 12px; }
.hero-zone-2 { top: 50%; left: 12px; }
.hero-zone-3 { top: 70%; left: 12px; }

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 44px 32px 36px;
  background: var(--bg);
  border-left: 1px solid var(--rule);
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.8px;
  margin-bottom: 8px;
}
.hero-typewriter {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -.3px;
  border-right: 2px solid var(--accent);
  animation: blink .7s infinite;
  min-height: 1.4em;
  display: inline-block;
  margin-bottom: 16px;
}
@keyframes blink { 0%,100% { border-color: transparent; } 50% { border-color: var(--accent); } }
.hero-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 380px;
}
.hero-price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
}
.hero-price-new { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--accent); }
.hero-price-old { font-size: 18px; color: var(--old-price); text-decoration: line-through; }
.hero-price-note { font-size: 12px; color: var(--ink-soft); align-self: center; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  transition: background .2s, transform .15s;
  letter-spacing: -.1px;
  text-align: center;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); color: #fff; }
.btn-primary:active { transform: translateY(0); }
.hero-trust {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ===== SOCIAL PROOF STRIP ===== */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.proof-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--rule);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.proof-num span { color: var(--accent); }
.proof-label { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* ===== CAROUSEL ===== */
.carousel-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.section-header {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 40px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.15;
}
.carousel-wrap { position: relative; max-width: 960px; margin: 0 auto; padding: 0 40px; }
.carousel-track-outer { overflow: hidden; border-radius: 4px; }
.carousel-track { display: flex; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; max-height: 560px; object-fit: contain; background: #111; border-radius: 4px; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover { background: rgba(255,255,255,.2); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); position: relative; z-index: 1; }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feature-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ===== UNIQUE BLOCK — SYMPTOM CHECKER SVG ===== */
.symptom-section {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.symptom-inner { max-width: 900px; margin: 0 auto; }
.symptom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.body-map-wrap { position: relative; }
.body-map-svg { width: 100%; max-width: 320px; margin: 0 auto; }
.symptom-list { display: flex; flex-direction: column; gap: 14px; }
.symptom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.symptom-item.active, .symptom-item:hover { border-color: var(--accent); background: rgba(37,99,235,.04); }
.symptom-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.symptom-dot.yellow { background: #f59e0b; }
.symptom-dot.red { background: #ef4444; }
.symptom-text { font-size: 14px; font-weight: 500; color: var(--ink); }
.symptom-level { margin-left: auto; font-size: 12px; color: var(--ink-soft); white-space: nowrap; }

/* ===== FORM (STEPPER 3 STEPS) ===== */
.form-section {
  padding: 80px 40px;
  background: var(--bg);
}
.form-inner { max-width: 680px; margin: 0 auto; }
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.step-item { display: flex; align-items: center; gap: 0; }
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rule);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.step-circle.active { background: var(--accent); color: #fff; }
.step-circle.done { background: var(--success); color: #fff; }
.step-label { font-size: 12px; color: var(--ink-soft); margin-top: 6px; white-space: nowrap; }
.step-label.active { color: var(--accent); font-weight: 600; }
.step-connector { width: 80px; height: 2px; background: var(--rule); transition: background .3s; }
.step-connector.done { background: var(--success); }
.step-wrap { display: flex; flex-direction: column; align-items: center; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-field input, .form-field select {
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-field input:focus { border-color: var(--accent); }
.form-field input.valid { border-color: var(--success); }
.form-field input.invalid { border-color: var(--error); }
.field-error { font-size: 12px; color: var(--error); display: none; margin-top: 2px; }
.field-error.show { display: block; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-top: 16px; }
.form-consent input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.form-consent a { color: var(--accent); text-decoration: underline; }
.btn-step {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  width: 100%;
  margin-top: 24px;
  transition: background .2s;
}
.btn-step:hover { background: var(--accent-dark); }
.btn-step:disabled { opacity: .5; cursor: not-allowed; }
.btn-back { background: transparent; border: 1px solid var(--rule); color: var(--ink-soft); font-size: 14px; padding: 10px 24px; border-radius: 6px; margin-top: 12px; width: 100%; transition: border-color .2s; }
.btn-back:hover { border-color: var(--accent); color: var(--accent); }
.form-confirm-box { background: var(--bg-alt); border: 1px solid var(--rule); border-radius: 8px; padding: 24px; margin-bottom: 20px; }
.confirm-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.confirm-row:last-child { border-bottom: none; font-weight: 700; color: var(--accent); font-size: 16px; }
.order-price-confirm { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent); text-align: center; margin: 16px 0 8px; }

/* ===== RATING BAR ===== */
.rating-section {
  padding: 60px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.rating-inner { max-width: 680px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.rating-big { text-align: center; }
.rating-score { font-family: var(--font-display); font-size: 72px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -2px; }
.rating-stars { color: #f59e0b; font-size: 22px; letter-spacing: 2px; margin: 4px 0; }
.rating-count { font-size: 13px; color: var(--ink-soft); }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.bar-label { width: 28px; color: var(--ink-soft); text-align: right; }
.bar-track { flex: 1; height: 8px; background: var(--rule); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.bar-pct { width: 32px; color: var(--ink-soft); font-size: 12px; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 80px 40px; }
.reviews-section .section-header { max-width: 1100px; margin: 0 auto 48px; padding: 0; }
.reviews-section .section-title { color: var(--ink); }
.reviews-section .section-eyebrow { color: var(--accent); }
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-avatar { display: block; flex-shrink: 0; border-radius: 50%; overflow: hidden; }
.review-header { display: flex; align-items: center; gap: 12px; }
.review-info h4 { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-info span { font-size: 12px; color: var(--ink-soft); }
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--ink-soft); line-height: 1.6; font-style: italic; font-family: var(--font-serif); }
.review-product { font-size: 12px; color: var(--accent); font-weight: 600; }

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-icon { font-size: 20px; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--ink-soft); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* ===== DELIVERY PROGRESS ===== */
.delivery-section {
  padding: 60px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.delivery-inner { max-width: 700px; margin: 0 auto; }
.delivery-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}
.delivery-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}
.delivery-step { display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; flex: 1; }
.delivery-icon { font-size: 26px; background: var(--bg); padding: 4px; }
.delivery-label { font-size: 12px; text-align: center; color: var(--ink-soft); line-height: 1.4; }

/* ===== BLOG ===== */
.blog-section {
  padding: 80px 40px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.blog-section .section-header { max-width: 1100px; margin: 0 auto 48px; padding: 0; }
.blog-section .section-title { color: var(--ink); }
.blog-section .section-eyebrow { color: var(--accent); }
.blog-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.blog-card {
  display: flex;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  min-height: 190px;
  background: var(--bg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.blog-card .card-img { width: 280px; flex-shrink: 0; object-fit: cover; display: block; }
.blog-card .card-body { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.card-tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.card-title { font-family: var(--font-display); font-size: clamp(16px, 2vw, 20px); font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.card-meta { font-size: 12px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.card-cta { font-size: 13px; font-weight: 700; color: var(--accent); }
.card-cta:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  padding: 48px 40px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { color: #fff; font-size: 22px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,.25); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.3); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-card {
  position: relative;
  z-index: 10000;
  background: #fff;
  border-radius: 4px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.modal-check { font-size: 56px; margin-bottom: 16px; }
.modal-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.modal-sub { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* ===== PULL QUOTE ===== */
.pull-quote { border-left: 4px solid var(--accent); margin: 32px 0; padding: 20px 28px; background: rgba(37,99,235,.05); font-size: 1.15em; font-style: italic; line-height: 1.6; color: var(--ink); font-family: var(--font-serif); }

/* ===== INFO BOX ===== */
.info-box { display: flex; gap: 16px; align-items: flex-start; background: #f0f7ff; border-radius: 4px; padding: 20px 24px; margin: 28px 0; }
.info-box-icon { font-size: 24px; flex-shrink: 0; }
.info-box-content strong { display: block; margin-bottom: 6px; font-size: 15px; font-family: var(--font-display); }
.info-box-content p { margin: 0; font-size: 14px; line-height: 1.6; color: #444; }

/* ===== ARTICLE TABLE ===== */
.article-table-wrap { overflow-x: auto; margin: 28px 0; }
.article-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-table th { background: var(--accent); color: #fff; padding: 12px 16px; text-align: left; font-family: var(--font-display); }
.article-table td { padding: 10px 16px; border-bottom: 1px solid #e8e8e8; }
.article-table tr:nth-child(even) td { background: #f8f8f8; }

/* ===== INFOGRAPHIC ===== */
.article-infographic { background: #fafafa; border-radius: 4px; padding: 24px; margin: 28px 0; text-align: center; border: 1px solid var(--rule); }
.infographic-title { font-size: 15px; font-weight: 700; margin: 0 0 16px; font-family: var(--font-display); }
.infographic-svg { max-width: 100%; height: auto; }
.infographic-caption { font-size: 12px; color: #888; margin: 8px 0 0; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 100ms; }
.reveal:nth-child(3) { transition-delay: 200ms; }
.reveal:nth-child(4) { transition-delay: 300ms; }

/* ===== BLOG ARTICLE ===== */
.article-wrap { max-width: 720px; margin: 0 auto; padding: 60px 40px; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 4px; margin-bottom: 36px; }
.article-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 20px; letter-spacing: -.5px; }
.article-intro { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; font-family: var(--font-serif); }
.article-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin: 36px 0 14px; }
.article-body p { font-size: 16px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 18px; }
.article-body ul { padding-left: 20px; margin-bottom: 18px; }
.article-body ul li { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 6px; }
.article-disclaimer { font-size: 12px; color: #aaa; border-top: 1px solid var(--rule); margin-top: 40px; padding-top: 20px; line-height: 1.6; }
.article-cta-box { background: var(--bg-alt); border: 1px solid var(--rule); border-radius: 4px; padding: 28px; margin-top: 36px; text-align: center; }
.article-cta-box h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.article-cta-box p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.article-mini-faq { margin-top: 36px; border-top: 1px solid var(--rule); padding-top: 24px; }
.article-mini-faq h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.mini-faq-item { margin-bottom: 14px; }
.mini-faq-q { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.mini-faq-a { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ===== PAGES (legal) ===== */
.page-hero-legal { background: var(--bg-alt); border-bottom: 1px solid var(--rule); padding: 48px 40px 32px; }
.page-hero-legal h1 { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--ink); }
.page-body { max-width: 760px; margin: 0 auto; padding: 48px 40px 80px; }
.page-body h2 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--ink); }
.page-body p, .page-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.page-body ul { padding-left: 20px; }
.page-body a { color: var(--accent); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-image-col { height: 75vw; max-height: 460px; }
  .hero-text-col { padding: 36px 24px; border-left: none; border-top: 1px solid var(--rule); }
  .hero-zone-label { display: none; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .features-grid { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .rating-inner { grid-template-columns: 1fr; gap: 24px; }
  .site-nav { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .nav-left { display: none; }
  .nav-logo { font-size: 17px; }
  .blog-card { flex-direction: column; }
  .blog-card .card-img { width: 100%; height: 220px; }
}
@media (max-width: 600px) {
  .features-section, .form-section, .blog-section, .faq-section, .delivery-section, .reviews-section, .symptom-section, .carousel-section { padding: 48px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { padding: 0 16px; height: 56px; }
  .nav-right .nav-link { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
