/* ========================================
   SUGAR DEFENDER — Main Stylesheet
   Color: Crimson + Gold + Cream
   Typography: Inter + Playfair Display
   ======================================== */

:root {
  --primary: #c1272d;
  --primary-dark: #9a1e23;
  --primary-light: #e84548;
  --gold: #c89c2c;
  --gold-light: #f5d676;
  --gold-soft: #fbf3dc;
  --dark: #1a1f2e;
  --text: #2c3344;
  --text-light: #4a5266;
  --muted: #6b7280;
  --bg: #fdfaf5;
  --bg-alt: #ffffff;
  --bg-soft: #faf6ee;
  --border: #e8e2d4;
  --border-soft: #f0ebde;
  --success: #2c5f2d;
  --success-light: #e8f3e8;
  --dark-section: #14192a;
  --dark-section-2: #1d2238;
  --shadow-sm: 0 2px 8px rgba(26, 31, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 31, 46, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 31, 46, 0.12);
  --shadow-primary: 0 12px 32px rgba(193, 39, 45, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { 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: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); margin-bottom: 0.4em; }

p { margin-bottom: 1em; color: var(--text-light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announce-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announce-bar a { color: #fff; text-decoration: underline; }
.announce-bar a:hover { color: var(--gold-light); }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.brand-mark img { width: 100%; height: 100%; border-radius: 8px; }
.brand-name { color: var(--dark); }
.brand-name sup { font-size: 0.55em; color: var(--primary); margin-left: 2px; }
.nav-main {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-main a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-main a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 28px; height: 28px; color: var(--dark); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(193, 39, 45, 0.35);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b58a1f);
  color: #fff;
  box-shadow: 0 10px 28px rgba(200, 156, 44, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 36px rgba(200, 156, 44, 0.4); }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 156, 44, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(193, 39, 45, 0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 156, 44, 0.3);
}
.hero h1 {
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  background: linear-gradient(180deg, transparent 65%, rgba(200, 156, 44, 0.25) 65%);
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 540px;
}
.hero-bullets {
  margin-bottom: 30px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}
.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--gold); }
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-cta-row .price-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-cta-row .price-note strong {
  color: var(--primary);
  font-size: 16px;
  display: block;
  font-weight: 700;
}
.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 22px; height: 22px; color: var(--gold); }

.hero-image-wrap {
  position: relative;
  text-align: center;
}
.hero-product-img {
  max-width: 100%;
  width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(26, 31, 46, 0.25));
  animation: floatHero 6s ease-in-out infinite;
}
.hero-floater {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-floater .float-icon {
  width: 36px; height: 36px;
  background: var(--gold-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-floater .float-icon svg { width: 20px; height: 20px; color: var(--primary); }
.hero-floater small { display: block; color: var(--muted); font-weight: 500; font-size: 11px; }
.float-1 { top: 8%; left: -10px; animation: floatBadge1 5s ease-in-out infinite; }
.float-2 { bottom: 12%; right: -10px; animation: floatBadge2 6s ease-in-out infinite; }

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}
.trust-badge .badge-icon {
  width: 44px; height: 44px;
  background: var(--gold-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.trust-badge .badge-icon svg { width: 24px; height: 24px; color: var(--primary); }

/* ========================================
   SECTION DEFAULTS
   ======================================== */
section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head .section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ========================================
   AI ANSWER BLOCK
   ======================================== */
.ai-answer {
  background: linear-gradient(135deg, #fdf8e9, #fff);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}
.ai-answer .ai-q {
  font-weight: 800;
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-answer .ai-q::before {
  content: "Q";
  background: var(--primary);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.ai-answer p { margin-bottom: 0; color: var(--text); }

/* ========================================
   WHY CHOOSE
   ======================================== */
.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 40px rgba(26, 31, 46, 0.18)); }
.why-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.why-points li:last-child { border-bottom: none; }
.why-points .check-icon { width: 32px; height: 32px; }
.why-points .check-icon svg { width: 16px; height: 16px; }
.why-points h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--dark); }
.why-points p { font-size: 14px; margin: 0; color: var(--text-light); }

/* ========================================
   PROBLEM SECTION (dark)
   ======================================== */
.problem-section {
  background: linear-gradient(135deg, var(--dark-section), var(--dark-section-2));
  color: #e2e5ed;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.15), transparent 70%);
  border-radius: 50%;
}
.problem-section::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 156, 44, 0.12), transparent 70%);
  border-radius: 50%;
}
.problem-section .container { position: relative; z-index: 2; }
.problem-section h2 { color: #fff; }
.problem-section .section-sub { color: #b0b6c8; }
.problem-section .section-tag {
  background: rgba(193, 39, 45, 0.15);
  color: #ff9a9d;
  border: 1px solid rgba(193, 39, 45, 0.3);
}
.problem-section .ai-answer {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--gold);
  backdrop-filter: blur(10px);
}
.problem-section .ai-answer .ai-q { color: #fff; }
.problem-section .ai-answer p { color: #cfd3df; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all 0.3s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(200, 156, 44, 0.4); }
.pain-card .pain-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card .pain-icon svg { width: 26px; height: 26px; color: #fff; }
.pain-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; }
.pain-card p { color: #b8bdcc; font-size: 14px; margin: 0; }

/* ========================================
   WHAT IS / 2-COL CONTENT
   ======================================== */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.what-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(26, 31, 46, 0.15));
}
.what-text p { margin-bottom: 16px; line-height: 1.75; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section { background: var(--bg-soft); }
.mech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.mech-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.mech-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.mech-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mech-card:hover::before { transform: scaleX(1); }
.mech-card .mech-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.mech-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.mech-card p { font-size: 14px; margin: 0; line-height: 1.6; }

/* ========================================
   DIAGRAM (Unique to this Site)
   ======================================== */
.diagram-section { background: #fff; }
.diagram-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.svg-diagram-wrap {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  margin-top: 30px;
  text-align: center;
}
.svg-diagram-wrap svg { max-width: 100%; height: auto; }
.diagram-legend {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  text-align: left;
}
.legend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.legend-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.legend-item p { margin: 0; font-size: 13px; color: var(--text); }
.legend-item strong { display: block; color: var(--dark); font-size: 14px; }

/* ========================================
   PRICING
   ======================================== */
.pricing-section { background: var(--bg-soft); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-soft);
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  transform: scale(1.05);
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff, #fffaf0);
  box-shadow: 0 24px 60px rgba(193, 39, 45, 0.18);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}
.price-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.price-card .price-supply {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-card .price-img-wrap {
  margin: 0 auto 18px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-card .price-img {
  width: 220px; height: 220px;
  object-fit: contain;
}
.price-card.featured .price-img { width: 240px; height: 240px; }
.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount .currency { font-size: 1.4rem; vertical-align: top; margin-right: 2px; font-weight: 600; }
.price-amount .per { font-size: 0.9rem; color: var(--muted); font-weight: 500; font-family: 'Inter', sans-serif; }
.price-total {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.price-total s { color: var(--muted); margin-right: 6px; }
.price-total strong { color: var(--dark); }
.price-savings {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin: 8px 0 18px;
}
.price-includes {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.5;
}
.price-includes .pi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}
.price-includes svg { width: 14px; height: 14px; color: var(--success); }
.price-card .btn {
  width: 100%;
  margin-top: 6px;
}
.price-guarantee {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.price-guarantee svg { width: 14px; height: 14px; color: var(--gold); }

/* ========================================
   BONUSES
   ======================================== */
.bonuses-wrap {
  margin-top: 60px;
  text-align: center;
}
.bonuses-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--dark);
}
.bonuses-wrap h3 em { color: var(--primary); font-style: normal; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-md);
  text-align: left;
  border: 1px solid var(--border-soft);
}
.bonus-card img {
  width: 130px;
  flex-shrink: 0;
  border-radius: 8px;
}
.bonus-card .bonus-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.bonus-card h4 { font-size: 1.1rem; margin-bottom: 6px; color: var(--dark); }
.bonus-card p { font-size: 13px; margin: 0; color: var(--text-light); }
.bonus-card .bonus-value {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--success);
  font-weight: 700;
}

/* ========================================
   INGREDIENTS
   ======================================== */
.ingredients-section { background: #fff; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.ingredient-card {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.ingredient-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-light);
}
.ingredient-icon svg { width: 32px; height: 32px; color: var(--primary); }
.ingredient-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.ing-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ingredient-card p { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ========================================
   BENEFITS
   ======================================== */
.benefits-section { background: var(--bg-soft); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: all 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg { width: 28px; height: 28px; color: #fff; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.benefit-card p { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ========================================
   TIMELINE
   ======================================== */
.timeline-section { background: #fff; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
  position: relative;
}
.timeline-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  z-index: 0;
}
.timeline-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  border: 1px solid var(--border-soft);
  position: relative;
  z-index: 2;
}
.timeline-num {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(193, 39, 45, 0.3);
}
.timeline-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--primary-dark); }
.timeline-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.timeline-card p { font-size: 13.5px; margin: 0; color: var(--text-light); line-height: 1.55; }

/* ========================================
   COMPARISON TABLE
   ======================================== */
.compare-section { background: var(--bg-soft); }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table thead th {
  background: linear-gradient(135deg, var(--dark-section), var(--dark-section-2));
  color: #fff;
  padding: 22px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}
.compare-table thead th.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
}
.compare-table thead th.highlight::after {
  content: "★ BEST CHOICE";
  position: absolute;
  top: 4px; right: 8px;
  font-size: 9px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.compare-table tbody td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text);
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-soft);
}
.compare-table tbody td.highlight {
  background: rgba(193, 39, 45, 0.04);
  font-weight: 600;
  color: var(--primary-dark);
}
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--muted); font-weight: 600; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews-section { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.review-card {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  position: relative;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-stars svg.empty { color: var(--border); }
.review-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.review-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-name { font-weight: 700; color: var(--dark); font-size: 14px; }
.review-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success-light);
  color: var(--success);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
}
.verified-badge svg { width: 10px; height: 10px; }

/* ========================================
   GUARANTEE
   ======================================== */
.guarantee-section {
  background: linear-gradient(135deg, var(--dark-section), var(--dark-section-2));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 156, 44, 0.1), transparent 70%);
  border-radius: 50%;
}
.guarantee-section .container { position: relative; z-index: 2; }
.guarantee-seal {
  width: 180px; height: 180px;
  margin: 0 auto 30px;
  background: conic-gradient(from 0deg, var(--gold), #b58a1f, var(--gold), #b58a1f, var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  animation: rotateSeal 20s linear infinite;
  box-shadow: 0 16px 48px rgba(200, 156, 44, 0.4);
}
.guarantee-seal-inner {
  width: 100%; height: 100%;
  background: var(--dark-section);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
}
.guarantee-seal-inner .seal-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.guarantee-seal-inner .seal-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-top: 4px;
}
@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.guarantee-section h2 { color: #fff; margin-bottom: 16px; }
.guarantee-section p { color: #cfd3df; max-width: 720px; margin: 0 auto 16px; font-size: 16px; }
.guarantee-section .btn { margin-top: 20px; }

/* ========================================
   CONTRAINDICATIONS
   ======================================== */
.contra-section { background: #fff; }
.contra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.contra-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.contra-item .contra-x {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(193, 39, 45, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.contra-item p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.55; }
.contra-item strong { color: var(--dark); }

/* ========================================
   FAQ
   ======================================== */
.faq-section { background: var(--bg-soft); }
.faq-list { max-width: 860px; margin: 30px auto 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--primary); transition: transform 0.2s; }
.faq-item.open .faq-toggle { background: var(--primary); }
.faq-item.open .faq-toggle svg { color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========================================
   EDITORIAL / SOURCING
   ======================================== */
.editorial-section { background: #fff; }
.editorial-card {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-soft);
  max-width: 920px;
  margin: 30px auto 0;
}
.editorial-card h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--dark); }
.editorial-card p { font-size: 15px; line-height: 1.7; }
.editorial-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.ed-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ed-point .check-icon { width: 28px; height: 28px; background: var(--success-light); }
.ed-point .check-icon svg { color: var(--success); width: 14px; height: 14px; }
.ed-point p { font-size: 14px; margin: 0; color: var(--text); }

/* ========================================
   REFERENCES
   ======================================== */
.refs-section { background: var(--bg-soft); }
.refs-list {
  max-width: 920px;
  margin: 30px auto 0;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 36px;
  border: 1px solid var(--border-soft);
}
.refs-list ol {
  list-style: decimal;
  padding-left: 22px;
}
.refs-list li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 8px;
}
.refs-list li a { color: var(--primary); text-decoration: underline; word-break: break-word; }

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; max-width: 680px; margin: 0 auto 30px; }
.final-cta .btn-gold { background: linear-gradient(135deg, var(--gold), #b58a1f); }
.final-cta .btn-white {
  background: #fff;
  color: var(--primary-dark);
}
.final-cta .btn-white:hover { background: var(--gold-soft); color: var(--primary-dark); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark-section);
  color: #b0b6c8;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { color: #fff; font-size: 1.4rem; font-family: 'Playfair Display', Georgia, serif; font-weight: 700; margin-bottom: 14px; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #b0b6c8; font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-disclaimer {
  font-size: 12px;
  color: #8088a0;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: #6f7693;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   SOCIAL PROOF POPUP
   ======================================== */
.social-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(26, 31, 46, 0.2);
  display: none;
  gap: 14px;
  align-items: center;
  max-width: 340px;
  z-index: 90;
  border: 1px solid var(--border);
  transform: translateX(-110%);
  transition: transform 0.4s ease-out;
}
.social-popup.show { display: flex; transform: translateX(0); }
.popup-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-soft), var(--bg-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup-avatar svg { width: 22px; height: 22px; color: var(--primary); }
.popup-text { flex: 1; }
.popup-name { font-weight: 700; color: var(--dark); font-size: 13px; }
.popup-action { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.popup-time { font-size: 11px; color: var(--muted); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.popup-time .dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; }
.popup-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  align-self: flex-start;
}
.popup-close:hover { color: var(--dark); }

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(26, 31, 46, 0.1);
  z-index: 95;
}
.mobile-sticky-cta .btn { width: 100%; padding: 14px; font-size: 15px; }

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border-soft);
}
.legal-hero h1 { margin-bottom: 10px; }
.legal-hero p { font-size: 1.05rem; color: var(--text-light); }
.legal-content {
  padding: 60px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--dark);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--dark);
}
.legal-content p { font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text-light);
}
.legal-content strong { color: var(--dark); }

/* 404 page */
.notfound-section {
  text-align: center;
  padding: 100px 0 80px;
}
.notfound-section .big-404 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.notfound-section h1 { margin-bottom: 16px; }
.notfound-section p { font-size: 1.1rem; max-width: 580px; margin: 0 auto 30px; }
.notfound-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.notfound-links a {
  padding: 10px 20px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.notfound-links a:hover { background: var(--gold-soft); color: var(--primary-dark); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }

  .nav-main { display: none; }
  .menu-toggle { display: block; }
  .nav-main.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .nav-main.open a { padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-main.open a:last-child { border-bottom: none; }
  .nav-main.open .nav-cta { background: var(--primary); margin-top: 8px; }

  .hero { padding: 40px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-grid > div:first-child { order: 1; }
  .hero-image-wrap { order: 2; max-width: 360px; margin: 0 auto; }
  .hero h1 { text-align: center; }
  .hero-sub, .hero-bullets, .hero-cta-row, .hero-trust { text-align: left; }
  .hero-bullets { display: inline-block; text-align: left; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-product-img { width: 320px; }
  .float-1 { left: 0; top: 4%; }
  .float-2 { right: 0; bottom: 8%; }

  .trust-strip-inner { gap: 18px; }
  .trust-badge { font-size: 13px; }

  .why-grid, .what-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-image, .what-image { max-width: 400px; margin: 0 auto; }

  .pain-grid, .ingredients-grid, .benefits-grid, .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .mech-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; gap: 30px; max-width: 420px; }
  .price-card.featured { transform: scale(1); order: -1; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card { flex-direction: column; text-align: center; }
  .bonus-card img { width: 110px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .contra-grid { grid-template-columns: 1fr; }

  .editorial-points { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .diagram-legend { grid-template-columns: 1fr 1fr; }
  .svg-diagram-wrap { padding: 24px 16px; }

  .editorial-card { padding: 28px 22px; }
  .refs-list { padding: 22px 20px; }

  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 560px) {
  section { padding: 50px 0; }
  .container, .container-narrow { padding: 0 18px; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }

  .announce-bar { font-size: 13px; padding: 8px 10px; }
  .header-inner { padding: 12px 0; }
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 32px; height: 32px; }

  .btn { padding: 14px 24px; font-size: 15px; }
  .btn-lg { padding: 16px 28px; font-size: 16px; }

  .pain-grid, .ingredients-grid, .benefits-grid, .timeline-grid, .mech-grid { grid-template-columns: 1fr; }

  .hero-product-img { width: 280px; }
  .hero-floater { font-size: 12px; padding: 10px 12px; }
  .float-1, .float-2 { display: none; }

  .price-card { padding: 28px 22px 24px; }
  .price-amount { font-size: 2.5rem; }

  .guarantee-seal { width: 150px; height: 150px; }
  .guarantee-seal-inner .seal-num { font-size: 2.4rem; }

  .footer-grid { grid-template-columns: 1fr; }

  .social-popup { left: 12px; right: 12px; max-width: none; }

  .compare-table-wrap { font-size: 13px; }
}

/* SVG Pathway diagram colors (used inline) */
.dia-stroke { stroke: var(--primary); }
.dia-stroke-2 { stroke: var(--gold); }
.dia-fill-1 { fill: var(--primary); }
.dia-fill-2 { fill: var(--gold); }
.dia-fill-3 { fill: var(--success); }
.dia-fill-bg { fill: var(--bg-soft); }
.dia-text { fill: var(--dark); font-family: 'Inter', sans-serif; font-weight: 600; }
