/* PulsWacht DE — style_pw4x9k.css — Variant 5: Premium/Apotheke */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ===== TOKENS ===== */
:root {
  --white: #ffffff;
  --green-dark: #1a4731;
  --green-mid: #2a6347;
  --gold: #b8963e;
  --gold-light: #d4ac5a;
  --sage: #e8f0eb;
  --sage-dark: #d0e0d5;
  --text-dark: #1a2820;
  --text-mid: #3d5445;
  --text-light: #6b8070;
  --border: #c8d8cc;
  --red-err: #c0392b;
  --green-ok: #1a7a46;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(26,71,49,0.10);
  --shadow-lg: 0 8px 40px rgba(26,71,49,0.14);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  text-align: center;
  font-size: 11px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  line-height: 1.4;
}

/* ===== ADVERTORIAL LABEL ===== */
.advertorial-label {
  background: var(--sage);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 6px 16px;
  font-weight: 500;
}

/* ===== NAV ===== */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(26,71,49,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-cta {
  background: var(--green-dark);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e1e 100%);
  padding: 80px 40px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.12) 0%, transparent 70%);
}
.hero-text { color: var(--white); position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(184,150,62,0.18);
  border: 1px solid rgba(184,150,62,0.4);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.hero-price-badge .old-price {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.hero-price-badge .new-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-price-badge .discount-tag {
  margin-top: 4px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--green-dark); }
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  border-radius: var(--radius-lg);
}
.hero-badge-empfohlen {
  position: absolute;
  top: -16px; right: 10px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ===== SECTION WRAPPER ===== */
.section-wrap { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===== STATS (Social proof) ===== */
.stats-section {
  background: var(--sage);
  padding: 50px 40px;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== CAROUSEL (Wie es funktioniert) ===== */
.carousel-section {
  padding: 80px 40px;
  background: var(--white);
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.2;
}
.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage);
  aspect-ratio: 1/1;
}
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-dark);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  transition: background 0.2s;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--sage); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.carousel-dot.active { background: var(--green-dark); }
.carousel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 48px auto 0;
}
.carousel-step {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.step-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===== ADVANTAGES ===== */
.advantages-section {
  padding: 80px 40px;
  background: var(--sage);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.adv-card:hover { box-shadow: var(--shadow-lg); }
.adv-icon {
  width: 48px; height: 48px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.adv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.adv-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===== ORDER FORM ===== */
.order-section {
  padding: 80px 40px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.1) 0%, transparent 70%);
}
.order-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.order-header { text-align: center; margin-bottom: 40px; }
.order-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.order-price-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.order-price-new {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.order-price-old {
  font-size: 20px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.order-price-badge {
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.order-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--green-mid); }
.form-group input.valid { border-color: var(--green-ok); }
.form-group input.invalid { border-color: var(--red-err); }
.field-error {
  font-size: 11px;
  color: var(--red-err);
  margin-top: 2px;
  display: none;
}
.field-error.show { display: block; }
.form-group-full { margin-bottom: 16px; }
.form-row-single { margin-bottom: 16px; }
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  margin-top: 4px;
}
.consent-row input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  flex-shrink: 0;
  accent-color: var(--green-dark);
}
.consent-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.consent-text a { color: var(--green-dark); text-decoration: underline; }
.submit-btn {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 16px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.submit-btn:hover:not(:disabled) { background: var(--green-mid); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 80px 40px; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.review-card {
  background: var(--sage);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.review-city { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; font-style: italic; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 40px; background: var(--sage); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--sage); }
.faq-question .faq-icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 18px; }

/* ===== BLOG ===== */
.blog-section { padding: 80px 40px; background: var(--white); }
.blog-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.blog-card-v {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card-v:hover { box-shadow: var(--shadow-lg); }
.blog-card-v .blog-thumb {
  width: 280px;
  flex-shrink: 0;
  height: 190px;
  overflow: hidden;
}
.blog-card-v .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.blog-card-v:hover .blog-thumb img { transform: scale(1.04); }
.blog-card-body {
  flex: 1;
  padding: 24px 28px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.blog-cta-btn {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  align-self: flex-start;
  transition: background 0.2s;
}
.blog-cta-btn:hover { background: var(--green-mid); color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 50px 40px 30px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 12px; max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 11px; }
.footer-legal-links a:hover { color: var(--gold); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.visible { display: flex; animation: fadeIn 0.3s ease; }
.modal-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 480px;
  width: 90%;
  padding: 48px 40px;
  text-align: center;
  animation: slideUp 0.3s ease;
  position: relative;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-check {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
}
.modal-check circle { fill: var(--sage); stroke: var(--green-dark); stroke-width: 2; }
.modal-check path {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw 0.5s ease 0.2s forwards;
}
@keyframes checkDraw { to { stroke-dashoffset: 0; } }
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.modal-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.modal-close-btn {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 12px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--green-mid); }

/* ===== THANK-YOU PAGE ===== */
.thankyou-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: var(--sage);
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 64px 56px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.thankyou-icon { font-size: 56px; margin-bottom: 20px; }
.thankyou-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.thankyou-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.thankyou-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

/* ===== BLOG ARTICLE ===== */
.article-hero {
  background: var(--green-dark);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.2;
}
.article-hero .article-meta { font-size: 13px; color: rgba(255,255,255,0.65); }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 36px 0 14px;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 28px 0 10px;
}
.article-body p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.article-body ul { padding-left: 20px; margin-bottom: 18px; }
.article-body ul li { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.info-box {
  background: var(--sage);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.disclaimer-article {
  background: var(--sage);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 28px 0;
}
.article-cta {
  display: block;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 32px 0;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.article-cta:hover { background: var(--green-mid); color: var(--white); }
.mini-faq { margin: 32px 0; }
.mini-faq .faq-item { margin-bottom: 8px; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--sage);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--green-dark);
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
}
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin: 28px 0 10px;
}
.legal-body p, .legal-body li { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body ul li { list-style: disc; }
.legal-body strong { color: var(--text-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 50px 24px; gap: 36px; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-width: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .carousel-steps { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
}
@media (max-width: 600px) {
  .site-nav { padding: 0 16px; }
  .hero { padding: 40px 16px; }
  .section-wrap, .carousel-section, .advantages-section, .order-section,
  .reviews-section, .faq-section, .blog-section, .stats-section { padding-left: 16px; padding-right: 16px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 24px 16px; }
  .blog-card-v { flex-direction: column; }
  .blog-card-v .blog-thumb { width: 100%; height: 220px; }
  .blog-card-body { padding: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { gap: 12px; }
  .thankyou-card { padding: 40px 24px; }
  .article-body { padding: 40px 16px; }
  .legal-body { padding: 40px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ===== BLOG PAGE EXTRAS ===== */
.blog-hero-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f2e1e 100%);
  padding: 70px 40px 60px;
  position: relative;
  overflow: hidden;
}
.blog-hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.10) 0%, transparent 70%);
}
.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 18px;
}
.blog-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.blog-hero-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Jost', sans-serif;
}
.blog-count-bar {
  background: var(--sage);
  border-bottom: 1px solid var(--border);
  padding: 12px 40px;
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}
.blog-count-bar .section-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-count-divider { color: var(--border); }
.blog-card-meta { margin-bottom: 10px; }
.blog-read-time { font-size: 11px; color: var(--text-light); }
.blog-bottom-cta {
  background: var(--sage);
  border-top: 1px solid var(--border);
  padding: 50px 40px;
  text-align: center;
}
.blog-bottom-inner { max-width: 560px; margin: 0 auto; }
.blog-bottom-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 22px;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .blog-hero-section { padding: 50px 16px 40px; }
  .blog-count-bar { padding: 10px 16px; }
  .blog-bottom-cta { padding: 40px 16px; }
}

/* NAV blog link */
.nav-blog-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-right: 8px;
}
.nav-blog-link:hover { color: var(--green-dark); }

/* ===== HYPERTENSION AWARENESS BLOCK ===== */
.hyper-section {
  padding: 80px 20px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hyper-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.hyper-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hyper-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}
.hyper-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hyper-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.hyper-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.hyper-cta-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 36px;
}
.hyper-cta-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  max-width: 500px;
}
@media (max-width: 900px) {
  .hyper-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hyper-grid { grid-template-columns: 1fr; gap: 16px; }
  .hyper-section { padding: 60px 16px; }
  .hyper-cta-row { flex-direction: column; text-align: center; padding: 24px 20px; }
  .hyper-cta-text { max-width: 100%; }
}
