/* ============================================
   VertiAid — Master Stylesheet
   Palette: Deep Purple + Violet + Gold + Navy
   ============================================ */

:root {
  --primary: #4a1a9e;
  --primary-dark: #2d0e5e;
  --primary-mid: #6d2fbf;
  --secondary: #a06fd6;
  --secondary-soft: #d8c1f0;
  --accent-gold: #d4a02f;
  --accent-gold-dark: #a67a1e;
  --dark-navy: #1a2340;
  --dark-navy-2: #26315a;
  --text: #22243a;
  --text-light: #5a5c74;
  --text-muted: #8b8ea3;
  --bg: #ffffff;
  --bg-alt: #faf7ff;
  --bg-soft: #f4eefb;
  --border: #e6dff2;
  --success: #2d7a3e;
  --warn: #c94a4a;
  --shadow-sm: 0 2px 8px rgba(74,26,158,0.08);
  --shadow-md: 0 8px 24px rgba(74,26,158,0.12);
  --shadow-lg: 0 20px 50px rgba(74,26,158,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-navy);
}
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 0.8em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.5em; }
p { margin-bottom: 1em; color: var(--text-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-2) 100%);
  color: #e6e6f2;
}
.section-dark h2, .section-dark h3 { color: #ffffff; }
.section-dark p { color: #c9cbe0; }
.section-header { text-align: center; max-width: 780px; margin: 0 auto 45px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-soft);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 200;
}
.announcement-bar a { color: var(--accent-gold); font-weight: 700; text-decoration: underline; margin-left: 6px; }

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 39px;
  z-index: 150;
  box-shadow: 0 1px 6px rgba(74,26,158,0.06);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo img { width: 38px; height: 38px; }
.logo span { color: var(--secondary); }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(74,26,158,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(74,26,158,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b845 100%);
  color: var(--dark-navy);
  box-shadow: 0 8px 22px rgba(212,160,47,0.35);
}
.btn-gold:hover { transform: translateY(-2px); color: var(--dark-navy); }
.btn-large { padding: 18px 44px; font-size: 1.1rem; }
.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
}
.btn-nav:hover { color: #fff; transform: translateY(-1px); }

/* HERO */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #fbf8ff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(160,111,214,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff2cc 100%);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  color: var(--dark-navy);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.65;
}
.hero-bullets {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--text);
}
.hero-bullets svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
  display: flex;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-trust-item strong { color: var(--dark-navy); }
.hero-image-wrap {
  position: relative;
  text-align: center;
}
.hero-image {
  max-width: 100%;
  width: 460px;
  animation: gentleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 45px rgba(74,26,158,0.25));
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-guarantee-float {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 110px;
  animation: gentleRotate 6s ease-in-out infinite;
}
@keyframes gentleRotate {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}

/* TRUST STRIP */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark-navy);
}
.trust-item svg { width: 32px; height: 32px; color: var(--primary); }

/* WHY CHOOSE */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.why-image { text-align: center; }
.why-image img { max-width: 380px; filter: drop-shadow(0 18px 35px rgba(74,26,158,0.2)); }
.why-list { list-style: none; padding: 0; }
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.why-list li:last-child { border-bottom: none; }
.why-icon-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8b845 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.why-list h3 { color: var(--dark-navy); margin-bottom: 4px; font-size: 1.1rem; }
.why-list p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

/* AI ANSWER BLOCK */
.ai-answer {
  background: linear-gradient(135deg, #f4eefb 0%, #ece0fb 100%);
  border-left: 4px solid var(--primary);
  padding: 22px 26px;
  border-radius: 12px;
  margin: 26px 0 32px;
  box-shadow: 0 4px 14px rgba(74,26,158,0.08);
}
.ai-answer strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.ai-answer p { margin: 0; color: var(--text); font-size: 0.98rem; line-height: 1.65; }

/* PROBLEM SECTION (dark) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 22px;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}
.pain-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-gold), #e8b845);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  margin-bottom: 14px;
}
.pain-card h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.pain-card p { color: #b8bad0; margin: 0; font-size: 0.92rem; line-height: 1.55; }

/* WHAT IS SECTION */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 45px;
  align-items: center;
}
.what-is-image { text-align: center; }
.what-is-image img { max-width: 380px; filter: drop-shadow(0 18px 35px rgba(74,26,158,0.2)); }

/* HOW IT WORKS */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.mech-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mech-num {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.mech-card h3 { color: var(--dark-navy); font-size: 1.05rem; margin-bottom: 8px; }
.mech-card p { margin: 0; color: var(--text-light); font-size: 0.93rem; }

/* CUSTOM SVG DIAGRAM SECTION */
.diagram-wrap {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 30px;
}
.unique-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-gold), #e8b845);
  color: var(--dark-navy);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.diagram-svg { max-width: 900px; margin: 20px auto 0; display: block; }
.diagram-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}
.legend-item { text-align: center; }
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.legend-item h4 { font-size: 0.95rem; color: var(--dark-navy); margin: 6px 0 4px; }
.legend-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 30px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  text-align: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  transform: scale(1.05);
  border: 3px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff 0%, #fdf8ec 100%);
}
.price-card-featured:hover { transform: scale(1.05) translateY(-4px); }
.best-value-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-gold), #e8b845);
  color: var(--dark-navy);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(212,160,47,0.4);
}
.price-title { font-size: 1.15rem; color: var(--dark-navy); margin-bottom: 6px; font-weight: 700; }
.price-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.price-image-wrap {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.price-image-wrap img { width: 220px; height: 220px; object-fit: contain; }
.price-card-featured .price-image-wrap img { width: 240px; height: 240px; }
.price-per-bottle {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-heading);
}
.price-per-bottle sup { font-size: 1.3rem; font-weight: 600; vertical-align: super; }
.price-per-bottle .cents { font-size: 1.5rem; }
.price-unit { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.price-total {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 8px 0 4px;
}
.price-total del { color: var(--text-muted); font-weight: 400; margin-right: 6px; }
.price-shipping {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 10px 0 16px;
}
.price-shipping.free { background: #e6f4e9; color: var(--success); }
.price-card .btn { width: 100%; }
.price-cards-note { text-align: center; margin-top: 24px; color: var(--text-light); font-size: 0.9rem; }

/* BONUSES */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 40px;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.bonus-card img { width: 140px; height: auto; filter: drop-shadow(0 10px 22px rgba(74,26,158,0.2)); }
.bonus-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bonus-card h3 { font-size: 1.08rem; color: var(--dark-navy); margin-bottom: 8px; }
.bonus-card p { font-size: 0.9rem; margin-bottom: 6px; }
.bonus-price {
  font-weight: 700;
  color: var(--success);
}
.bonus-price del { color: var(--text-muted); font-weight: 400; margin-right: 8px; }

/* INGREDIENTS */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.ing-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.ing-card:hover { transform: translateY(-3px); }
.ing-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ing-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-soft), #ece0fb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.ing-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  background: #fdf6e2;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ing-card h3 { font-size: 1.05rem; color: var(--dark-navy); margin-bottom: 6px; }
.ing-dose {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.ing-card p { font-size: 0.9rem; margin: 0; color: var(--text-light); }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.benefit-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.benefit-card h3 { font-size: 1rem; color: var(--dark-navy); margin-bottom: 6px; }
.benefit-card p { font-size: 0.86rem; margin: 0; color: var(--text-light); }

/* TIMELINE */
.timeline-wrap { margin-top: 30px; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-gold) 100%);
  border-radius: 2px;
  z-index: 0;
}
.timeline-card {
  background: #fff;
  padding: 30px 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin: -60px auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(74,26,158,0.25);
}
.timeline-card:nth-child(4) .timeline-marker {
  background: linear-gradient(135deg, var(--accent-gold), #e8b845);
  color: var(--dark-navy);
}
.timeline-card h3 { font-size: 1rem; color: var(--dark-navy); margin-bottom: 8px; }
.timeline-card p { font-size: 0.88rem; margin: 0; color: var(--text-light); }

/* COMPARISON TABLE */
.compare-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 30px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.compare-table th {
  background: var(--dark-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.compare-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
}
.compare-table td { text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--dark-navy); }
.compare-table td.compare-highlight-col {
  background: #faf5ff;
  font-weight: 600;
  color: var(--primary-dark);
}
.compare-yes { color: var(--success); font-size: 1.15rem; font-weight: 700; }
.compare-no { color: var(--warn); font-size: 1.15rem; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--accent-gold); font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-soft);
}
.review-meta strong { display: block; color: var(--dark-navy); font-size: 0.92rem; }
.review-meta span { font-size: 0.78rem; color: var(--text-muted); }
.verified {
  display: inline-block;
  background: #e6f4e9;
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* GUARANTEE BLOCK */
.guarantee-block {
  background: linear-gradient(135deg, #f9f5ff 0%, #fdf6e2 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  margin-top: 20px;
}
.guarantee-seal {
  width: 160px;
  height: 160px;
  margin: 0 auto 22px;
  display: block;
}
.guarantee-block h2 { color: var(--dark-navy); margin-bottom: 16px; }
.guarantee-block p { max-width: 680px; margin: 0 auto 14px; font-size: 1rem; }
.guarantee-block .btn { margin-top: 18px; }

/* CONTRAINDICATIONS */
.contraindications-wrap {
  background: linear-gradient(135deg, #fff5f5 0%, #fef7ec 100%);
  border-left: 4px solid var(--warn);
  padding: 34px 32px;
  border-radius: var(--radius);
  margin-top: 20px;
}
.contra-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin: 18px 0 0;
}
.contra-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 0.94rem;
  color: var(--text);
}
.contra-x {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* FAQ */
.faq-list { max-width: 860px; margin: 30px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.25s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; }
.faq-a p { margin: 0; color: var(--text-light); font-size: 0.94rem; line-height: 1.65; }

/* MEDICAL REVIEWER */
.reviewer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 20px auto 0;
}
.reviewer-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-soft);
}
.reviewer-info h3 { font-size: 1.15rem; color: var(--dark-navy); margin-bottom: 4px; }
.reviewer-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.reviewer-info p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* REFERENCES */
.refs-list {
  counter-reset: ref;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 20px auto 0;
}
.refs-list li {
  counter-increment: ref;
  padding: 14px 0 14px 44px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
}
.refs-list li::before {
  content: counter(ref);
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.refs-list a { color: var(--primary); font-weight: 500; }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.3vw, 2.4rem); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.9); max-width: 660px; margin: 0 auto 26px; font-size: 1.05rem; }

/* FOOTER */
.site-footer {
  background: var(--dark-navy);
  color: #b0b3cc;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h4 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; font-family: var(--font-heading); }
.footer-brand p { color: #a3a6c2; font-size: 0.9rem; }
.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b0b3cc; font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 22px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 0.78rem;
  color: #8a8db0;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #7f83a1;
}

/* SOCIAL PROOF POPUP */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 320px;
  z-index: 500;
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
}
.social-proof-popup.show { transform: translateX(0); }
.sp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-text { font-size: 0.82rem; color: var(--text); line-height: 1.4; }
.sp-text strong { color: var(--dark-navy); }
.sp-text .sp-time { color: var(--text-muted); font-size: 0.72rem; display: block; margin-top: 2px; }
.sp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.15rem;
  padding: 2px 6px;
  line-height: 1;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
  z-index: 400;
  border-top: 1px solid var(--border);
}
.mobile-sticky-cta .btn { width: 100%; padding: 14px; font-size: 0.98rem; }

/* LEGAL PAGES */
.legal-page {
  padding: 50px 0 60px;
  max-width: 860px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--primary);
}
.legal-page h2 { font-size: 1.3rem; margin-top: 28px; margin-bottom: 12px; color: var(--dark-navy); }
.legal-page h3 { font-size: 1.1rem; margin-top: 22px; margin-bottom: 10px; color: var(--dark-navy); }
.legal-page p, .legal-page ul, .legal-page ol { font-size: 0.96rem; margin-bottom: 14px; color: var(--text); line-height: 1.7; }
.legal-page ul, .legal-page ol { padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.updated {
  background: var(--bg-alt);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: inline-block;
}

/* 404 PAGE */
.error-page {
  padding: 80px 0;
  text-align: center;
}
.error-code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-family: var(--font-heading);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-page h1 { font-size: 1.8rem; color: var(--dark-navy); margin: 12px 0 14px; }
.error-page p { max-width: 500px; margin: 0 auto 26px; }
.error-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.error-links a {
  padding: 10px 18px;
  background: var(--bg-soft);
  border-radius: 30px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}
.error-links a:hover { background: var(--primary); color: #fff; }

/* CONTACT PAGE */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}
.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { margin: 0; font-size: 0.94rem; }

/* RESPONSIVE — 900px */
@media (max-width: 900px) {
  .section { padding: 55px 0; }
  .main-nav { display: none; }
  .header-inner { padding: 12px 18px; }
  .hero { padding: 35px 0 55px; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* Flatten .hero-content so its children order individually */
  .hero-content { display: contents; }
  .hero-badge { order: 1; align-self: flex-start; margin-bottom: 14px; }
  .hero h1 { order: 2; margin-bottom: 20px; }
  .hero-image-wrap { order: 3; margin: 4px 0 22px; }
  .hero-sub { order: 4; margin-bottom: 20px; }
  .hero-bullets { order: 5; margin: 0 0 22px; }
  .hero-cta-row { order: 6; margin-bottom: 22px; }
  .hero-trust { order: 7; padding-top: 20px; gap: 14px 22px; }
  .hero-image { width: 300px; }
  .hero-guarantee-float { width: 82px; top: 4px; right: 4px; }
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-image img { max-width: 280px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .what-is-grid { grid-template-columns: 1fr; }
  .what-is-image img { max-width: 280px; }
  .mechanism-grid { grid-template-columns: repeat(2, 1fr); }
  .diagram-legend { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-card-featured { transform: none; order: -1; }
  .price-card-featured:hover { transform: translateY(-4px); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonus-card { grid-template-columns: 110px 1fr; padding: 20px; }
  .bonus-card img { width: 100px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 40px 18px; }
  .timeline-grid::before { display: none; }
  .timeline-marker { margin: 0 auto 14px; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contra-list { grid-template-columns: 1fr; gap: 6px; }
  .reviewer-card { grid-template-columns: 1fr; text-align: center; padding: 26px 20px; }
  .reviewer-avatar { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 68px; }
}

/* RESPONSIVE — 560px */
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 45px 0; }
  .announcement-bar { font-size: 0.78rem; padding: 8px 12px; }
  .site-header { top: 34px; }
  .logo { font-size: 1.3rem; }
  .logo img { width: 32px; height: 32px; }
  .hero { padding: 28px 0 45px; }
  .hero h1 { font-size: 1.5rem; line-height: 1.25; margin-bottom: 16px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 18px; }
  .hero-image { width: 250px; }
  .hero-image-wrap { margin: 4px 0 18px; }
  .hero-guarantee-float { width: 68px; top: 0; right: 0; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-trust-item { font-size: 0.82rem; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { padding: 18px 14px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-block { padding: 30px 20px; }
  .guarantee-seal { width: 130px; height: 130px; }
  .bonus-card { grid-template-columns: 1fr; text-align: center; }
  .bonus-card img { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .social-proof-popup { left: 12px; right: 12px; max-width: none; }
  .btn { padding: 13px 26px; font-size: 0.95rem; }
  .btn-large { padding: 15px 30px; font-size: 1rem; }
}
