/* ============================================
   SYNADENTIX — Master Stylesheet
   Synaddentix.com Affiliate Site v2.1
   ============================================ */

/* --- ROOT VARIABLES --- */
:root {
  --primary: #2A9D8F;
  --primary-dark: #1B6F66;
  --primary-darker: #134E47;
  --primary-light: #E8F4F2;
  --primary-soft: #F4FBFA;
  --accent: #E9C46A;
  --accent-dark: #D4A82F;
  --cta: #F4A261;
  --cta-dark: #E76F51;
  --cta-darker: #C75A3F;
  --dark: #1A3A3A;
  --text: #2C3E50;
  --text-light: #5C7079;
  --text-soft: #8DA0A8;
  --bg: #FFFFFF;
  --bg-soft: #F4FBFA;
  --bg-darker: #ECF5F3;
  --border: #D4E4E1;
  --border-light: #E8F0EE;
  --success: #27AE60;
  --warning: #E67E22;
  --error: #E74C3C;
  --shadow-sm: 0 2px 8px rgba(26, 58, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(26, 58, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 58, 58, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 58, 58, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.2s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cta-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
em { color: var(--primary); font-style: normal; font-weight: 700; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-light { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: #E8F4F2; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #FFFFFF; }
.section-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #FFFFFF; }
.section-primary h1, .section-primary h2, .section-primary h3 { color: #FFFFFF; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-dark .section-subtitle { color: #B8D0CC; }

/* --- ANNOUNCEMENT BAR --- */
.announcement {
  background: linear-gradient(90deg, var(--cta-dark) 0%, var(--cta) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.announcement a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 6px;
}
.announcement a:hover { color: #FFE8D6; }

/* --- HEADER --- */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 38px;
  z-index: 900;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: block;
}
.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-list a:hover { color: var(--primary); }
.btn-nav {
  background: var(--cta-dark);
  color: #FFFFFF !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.3);
}
.btn-nav:hover { background: var(--cta-darker); color: #FFFFFF !important; transform: translateY(-1px); }
.nav-toggle { display: none; font-size: 1.5rem; color: var(--dark); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(231, 111, 81, 0.35);
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(231, 111, 81, 0.45);
  color: #FFFFFF;
}
.btn-large { padding: 20px 50px; font-size: 1.15rem; }
.btn-block { display: block; width: 100%; }
.btn-secondary {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
}
.btn-secondary:hover { box-shadow: 0 12px 30px rgba(42, 157, 143, 0.45); }

/* --- HERO --- */
.hero {
  background:
    radial-gradient(ellipse at top left, rgba(42, 157, 143, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(233, 196, 106, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-soft) 0%, #FFFFFF 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.hero-badge::before {
  content: "★";
  color: var(--accent-dark);
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.18;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 22px;
  max-width: 540px;
}
.hero-bullets {
  margin-bottom: 28px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
}
.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon svg { width: 14px; height: 14px; fill: var(--primary-dark); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-trust-item::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(26, 58, 58, 0.15));
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* --- TRUST STRIP --- */
.trust-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 50px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}
.trust-item-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --- AI ANSWER BLOCK --- */
.ai-answer {
  background: linear-gradient(135deg, var(--primary-light) 0%, #E0EEEC 100%);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}
.ai-answer-question {
  font-weight: 700;
  color: var(--primary-darker);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-answer-question::before {
  content: "Q";
  background: var(--primary);
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ai-answer-text {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
  padding-left: 36px;
}

/* --- WHY CHOOSE SECTION --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(26, 58, 58, 0.12));
}
.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.why-list-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(42, 157, 143, 0.3);
}
.why-list h4 { color: var(--dark); margin-bottom: 4px; }
.why-list p { color: var(--text-light); font-size: 0.96rem; margin: 0; }

/* --- PROBLEM SECTION (DARK) --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.problem-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.problem-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(244, 162, 97, 0.15);
  color: var(--cta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.problem-card h4 { color: #FFFFFF; margin-bottom: 8px; font-size: 1.1rem; }
.problem-card p { color: #B8D0CC; font-size: 0.95rem; margin: 0; }
.section-dark .ai-answer {
  background: rgba(42, 157, 143, 0.15);
  border-left-color: var(--accent);
}
.section-dark .ai-answer-question { color: var(--accent); }
.section-dark .ai-answer-question::before { background: var(--accent); color: var(--dark); }
.section-dark .ai-answer-text { color: #D4E4E1; }

/* --- WHAT IS / TWO-COLUMN --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.two-col p { font-size: 1.02rem; color: var(--text); }

/* --- HOW IT WORKS / MECHANISM CARDS --- */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.mechanism-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.mechanism-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mechanism-num {
  position: absolute;
  top: -16px;
  left: 26px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(42, 157, 143, 0.35);
}
.mechanism-card h4 { color: var(--dark); margin: 16px 0 10px; }
.mechanism-card p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* --- PRICING --- */
.pricing-wrap { padding-top: 20px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
  max-width: 1100px;
  margin: 40px auto 0;
}
.price-card {
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card-best {
  border-color: var(--primary);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--primary-soft) 100%);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.price-card-best:hover { transform: scale(1.05) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: #FFFFFF;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(231, 111, 81, 0.4);
  white-space: nowrap;
}
.price-tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.price-tier-sub {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.price-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.price-card-best .price-image {
  width: 240px;
  height: 240px;
}
.price-amount {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency { font-size: 1.4rem; color: var(--dark); font-weight: 700; }
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.price-per { font-size: 0.95rem; color: var(--text-light); font-weight: 500; }
.price-strike {
  color: var(--text-soft);
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.price-savings {
  background: var(--primary-light);
  color: var(--primary-darker);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
}
.price-features {
  text-align: left;
  margin: 18px 0 22px;
  padding: 0;
}
.price-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 6px 0 6px 28px;
  position: relative;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  background: var(--primary-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 8px;
}
.price-shipping {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}
.price-shipping strong { color: var(--success); }

/* --- BONUSES --- */
.bonuses-section { padding-top: 30px; }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.bonus-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.bonus-card img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 18px;
  border-radius: var(--radius-md);
}
.bonus-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bonus-card h4 { font-size: 1.08rem; color: var(--dark); margin-bottom: 8px; min-height: 50px; }
.bonus-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.bonus-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.bonus-retail { text-decoration: line-through; color: var(--text-soft); font-size: 0.9rem; }
.bonus-free { color: var(--success); font-weight: 800; font-size: 1.05rem; }

/* --- INGREDIENTS --- */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ingredient-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all var(--transition);
}
.ingredient-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.ingredient-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #D0E8E4 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.ingredient-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-darker);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ingredient-card h4 { color: var(--dark); margin-bottom: 8px; font-size: 1.08rem; }
.ingredient-card p { color: var(--text-light); font-size: 0.93rem; margin: 0; }

/* --- BENEFITS --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border-light);
}
.benefit-card:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(42, 157, 143, 0.25);
}
.benefit-card h4 { color: var(--dark); margin-bottom: 8px; font-size: 1.02rem; }
.benefit-card p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* --- TIMELINE --- */
.timeline-wrap { margin-top: 40px; }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid var(--primary-light);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
  padding-left: 30px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -45px;
  top: 4px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(42, 157, 143, 0.35);
  border: 3px solid #FFFFFF;
}
.timeline-phase {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-item h4 { color: var(--dark); margin-bottom: 8px; font-size: 1.12rem; }
.timeline-item p { color: var(--text-light); margin: 0; font-size: 0.96rem; }

/* --- COMPARISON TABLE --- */
.comparison-wrap { margin-top: 40px; overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 640px;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.94rem;
}
.comparison-table th {
  background: var(--dark);
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.comparison-table .col-best {
  background: var(--primary-soft);
}
.comparison-table th.col-best { background: var(--primary); }
.comparison-table .check-yes { color: var(--success); font-size: 1.3rem; font-weight: 800; }
.comparison-table .check-no { color: var(--error); font-size: 1.3rem; font-weight: 800; }
.comparison-table .check-partial { color: var(--warning); font-size: 1.3rem; font-weight: 800; }

/* --- REVIEWS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-stars {
  color: var(--accent-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}
.review-name { color: var(--dark); font-weight: 700; font-size: 0.96rem; }
.review-meta { color: var(--text-soft); font-size: 0.82rem; }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-light);
  color: var(--primary-darker);
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 6px;
}

/* --- GUARANTEE --- */
.guarantee-block {
  background: var(--primary-soft);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
}
.guarantee-seal {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}
.guarantee-block h2 { margin-bottom: 14px; }
.guarantee-block p {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: 1.02rem;
}
.guarantee-block .btn { margin-top: 12px; }

/* --- CONTRAINDICATIONS --- */
.contra-wrap {
  background: linear-gradient(135deg, #FFF5F0 0%, #FEF0E6 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  border: 1px solid #F4D5C0;
}
.contra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.contra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #FFFFFF;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #F4D5C0;
}
.contra-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--cta-dark);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 2px;
}
.contra-item p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* --- FAQ --- */
.faq-wrap { max-width: 900px; margin: 40px auto 0; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 26px;
  background: none;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: #FFFFFF; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* --- REVIEWER --- */
.reviewer-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.reviewer-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border: 4px solid var(--primary-light);
  box-shadow: var(--shadow-md);
}
.reviewer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.reviewer-title { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.reviewer-bio { color: var(--text-light); font-size: 0.96rem; margin: 0; }
.reviewer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.reviewer-cred {
  background: var(--primary-light);
  color: var(--primary-darker);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* --- REFERENCES --- */
.references-list {
  max-width: 900px;
  margin: 40px auto 0;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 36px;
  border: 1px solid var(--border-light);
}
.references-list ol { list-style: decimal inside; }
.references-list li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}
.references-list li:last-child { border-bottom: none; }
.references-list a { color: var(--primary-dark); font-weight: 600; }
.references-list a:hover { text-decoration: underline; }

/* --- FINAL CTA --- */
.final-cta {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--dark) 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: #FFFFFF; margin-bottom: 16px; }
.final-cta p { color: #B8D0CC; font-size: 1.08rem; max-width: 700px; margin: 0 auto 30px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--dark);
  color: #B8D0CC;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #B8D0CC; font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p {
  color: #97AFAB;
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  color: #8DA0A8;
  font-size: 0.83rem;
  line-height: 1.7;
}
.footer-disclaimer p { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- SOCIAL PROOF POPUP --- */
.social-proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 18px 14px 14px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  z-index: 1500;
  border: 1px solid var(--border-light);
  animation: slide-in-left 0.4s ease;
}
.social-proof-popup.show { display: flex; }
@keyframes slide-in-left {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.popup-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.popup-text { flex: 1; font-size: 0.85rem; }
.popup-name { color: var(--dark); font-weight: 700; }
.popup-detail { color: var(--text-light); font-size: 0.8rem; }
.popup-time { color: var(--text-soft); font-size: 0.75rem; margin-top: 2px; }
.popup-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; color: var(--text-soft);
  font-size: 1.1rem; cursor: pointer;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { color: var(--dark); }

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

/* --- LEGAL PAGES --- */
.legal-page {
  padding: 60px 0;
  background: var(--bg-soft);
}
.legal-content {
  background: #FFFFFF;
  max-width: 880px;
  margin: 0 auto;
  padding: 50px 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h1 { margin-bottom: 12px; }
.legal-content .legal-updated { color: var(--text-light); font-size: 0.92rem; margin-bottom: 30px; }
.legal-content h2 { font-size: 1.4rem; margin: 30px 0 12px; color: var(--dark); }
.legal-content h3 { font-size: 1.15rem; margin: 22px 0 8px; color: var(--dark); }
.legal-content p { color: var(--text); font-size: 0.98rem; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px 22px; list-style: disc; }
.legal-content ul li { color: var(--text); margin-bottom: 6px; font-size: 0.96rem; }
.legal-content a { color: var(--primary-dark); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

/* --- 404 PAGE --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  padding: 60px 0;
}
.error-content { text-align: center; max-width: 600px; margin: 0 auto; }
.error-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.error-content h1 { margin-bottom: 14px; }
.error-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 30px; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

/* --- CONTACT PAGE --- */
.contact-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 30px 0;
}
.contact-box h3 { color: var(--dark); margin-bottom: 10px; }
.contact-box a { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); }

/* --- RESPONSIVE: 900px --- */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero { padding: 50px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-content { order: 0; }
  .hero-image-wrap { order: 1; }
  .hero-bullets li { text-align: left; max-width: 460px; margin: 0 auto 12px; }
  .hero-trust { justify-content: center; }
  .hero-cta-row { justify-content: center; }

  .nav-list { display: none; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 18px;
    box-shadow: var(--shadow-md);
    gap: 12px;
  }
  .nav-toggle { display: block; cursor: pointer; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .problem-grid { grid-template-columns: 1fr; }
  .mechanism-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card-best { transform: scale(1); }
  .price-card-best:hover { transform: translateY(-4px); }
  .bonuses-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contra-grid { grid-template-columns: 1fr; }
  .reviewer-card { grid-template-columns: 1fr; text-align: center; padding: 30px 26px; }
  .reviewer-avatar { margin: 0 auto; }
  .reviewer-creds { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .legal-content { padding: 36px 28px; }
  .guarantee-block { padding: 40px 24px; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* --- RESPONSIVE: 560px --- */
@media (max-width: 560px) {
  .section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 50px; }
  .hero-image { max-width: 320px; }
  .announcement { font-size: 0.82rem; padding: 8px 14px; }
  .site-header { padding: 10px 0; top: 34px; }
  .brand { font-size: 1.25rem; }
  .brand-mark { width: 32px; height: 32px; }
  .btn { padding: 14px 28px; font-size: 0.98rem; }
  .btn-large { padding: 16px 36px; font-size: 1.05rem; }
  .trust-strip-inner { gap: 18px 26px; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefit-card { padding: 20px 14px; }
  .price-image { width: 180px; height: 180px; }
  .price-card-best .price-image { width: 200px; height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-legal { justify-content: center; }
  .timeline { padding-left: 22px; }
  .timeline-item { padding-left: 22px; }
  .timeline-dot { left: -37px; width: 26px; height: 26px; font-size: 0.78rem; }
  .ai-answer { padding: 18px 20px; }
  .ai-answer-text { padding-left: 0; margin-top: 8px; }
  .social-proof-popup { left: 12px; right: 12px; max-width: none; bottom: 88px; }
  .reviewer-avatar { width: 110px; height: 110px; font-size: 2.4rem; }
  .legal-content { padding: 28px 20px; }
  .contra-wrap { padding: 30px 20px; }
  .guarantee-block { padding: 30px 18px; border-radius: var(--radius-md); }
  .guarantee-seal { width: 120px; height: 120px; }
}
