/* ============================================
   MAXFORCE — MAIN STYLESHEET
   Color: Red + Black + White + Gold accent
============================================ */

:root {
  --primary: #C8102E;
  --primary-dark: #8B0A1F;
  --primary-light: #E63B54;
  --dark: #0E0E10;
  --dark-2: #1A1A1D;
  --dark-3: #2A2A2E;
  --light: #FAFAFA;
  --off-white: #F5F5F5;
  --gold: #D4AF37;
  --gold-dark: #B8951F;
  --text: #1A1A1A;
  --text-muted: #5F5F5F;
  --border: #E5E5E5;
  --success: #16A34A;
  --error: #DC2626;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
  -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); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }

section { padding: 70px 0; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: linear-gradient(90deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement-bar a { color: var(--gold); font-weight: 700; }
.announcement-bar a:hover { color: #fff; }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }
.main-nav ul { list-style: none; display: flex; gap: 26px; }
.main-nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.main-nav a:hover { color: var(--primary); }
.header-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.header-cta:hover { background: var(--primary-dark); color: #fff !important; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--dark); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0E0E10 0%, #1A1A1D 60%, #2a1015 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary-light);
  background: linear-gradient(90deg, var(--primary-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  line-height: 1.6;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 26px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.98rem;
}
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--gold);
  margin-top: 3px;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(200,16,46,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200,16,46,0.5);
  color: #fff !important;
}
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-trust-item svg { width: 22px; height: 22px; color: var(--gold); }
.hero-image {
  position: relative;
  animation: float 4s ease-in-out infinite;
  text-align: center;
}
.hero-image img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--off-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
}
.trust-badge svg { width: 32px; height: 32px; color: var(--primary); }

/* ============ AI ANSWER BLOCK ============ */
.ai-answer {
  background: linear-gradient(135deg, #fff5f7 0%, #fef8ec 100%);
  border-left: 5px solid var(--primary);
  padding: 22px 28px;
  border-radius: 10px;
  margin: 22px 0;
  box-shadow: var(--shadow-sm);
}
.ai-answer .question {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: block;
}
.ai-answer p { color: var(--text); margin: 0; }

/* ============ WHY CHOOSE ============ */
.why-choose { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.why-image { text-align: center; }
.why-image img { max-width: 100%; }
.why-list { list-style: none; margin-top: 20px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
}
.why-list svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--gold); margin-top: 2px; }
.why-list strong { display: block; color: var(--dark); margin-bottom: 4px; }

/* ============ PROBLEM ============ */
.problem-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.problem-section h2 { color: #fff; text-align: center; margin-bottom: 20px; }
.problem-section .section-lead { text-align: center; color: rgba(255,255,255,0.75); max-width: 700px; margin: 0 auto 40px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px 22px;
  border-radius: var(--radius);
  transition: transform 0.2s, border-color 0.2s;
}
.problem-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.problem-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-light);
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.problem-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.problem-section .ai-answer {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}
.problem-section .ai-answer .question,
.problem-section .ai-answer p { color: rgba(255,255,255,0.9); }
.problem-section .ai-answer .question { color: var(--gold); }

/* ============ WHAT IS ============ */
.what-is { background: #fff; }
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-top: 30px;
}
.what-is-image { text-align: center; }
.what-is-image img { max-width: 90%; }
.what-is-text p { margin-bottom: 15px; color: var(--text); }

/* ============ HOW IT WORKS ============ */
.how-works { background: var(--off-white); }
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.mechanism-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--primary);
}
.mechanism-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mechanism-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  text-align: center; line-height: 34px;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.mechanism-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.mechanism-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ============ DIAGRAM SECTION ============ */
.diagram-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.unique-label {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.diagram-wrap {
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  margin-top: 30px;
  overflow-x: auto;
}
.diagram-wrap svg { width: 100%; height: auto; max-width: 900px; margin: 0 auto; display: block; }
.diagram-caption { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 20px; font-style: italic; }

/* ============ PRICING ============ */
.pricing-section { background: var(--off-white); text-align: center; }
.pricing-section h2 { margin-bottom: 10px; }
.section-lead { color: var(--text-muted); max-width: 700px; margin: 0 auto 30px; font-size: 1.02rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: center;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  padding: 30px 22px 35px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.price-tier { font-family: var(--font-heading); font-size: 1.5rem; color: var(--dark); margin-bottom: 14px; }
.price-image { margin: 14px auto 20px; }
.price-image img {
  width: 220px; height: 220px;
  object-fit: contain;
  margin: 0 auto;
}
.price-card.featured .price-image img { width: 240px; height: 240px; }
.price-per {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.price-per strong { color: var(--dark); font-size: 1.35rem; font-family: var(--font-heading); }
.price-total { color: var(--text); font-size: 0.9rem; margin-bottom: 10px; }
.price-total strong { font-size: 1.1rem; color: var(--dark); }
.price-shipping {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.price-btn {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,16,46,0.4); }
.price-guarantee {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}
.pricing-note {
  margin-top: 34px;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ INGREDIENTS ============ */
.ingredients-section { background: #fff; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.ingredient-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 22px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.ingredient-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(212,175,55,0.15));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}
.ingredient-icon svg { width: 26px; height: 26px; }
.ingredient-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ingredient-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.ingredient-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }

/* ============ BENEFITS ============ */
.benefits-section { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.benefit-card {
  background: #fff;
  padding: 22px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); }
.benefit-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-body); }
.benefit-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ TIMELINE ============ */
.timeline-section { background: #fff; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.timeline-card {
  background: linear-gradient(160deg, #fff 0%, #fafafa 100%);
  padding: 28px 22px;
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.timeline-week {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}
.timeline-phase {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}
.timeline-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-body); }
.timeline-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============ REVIEWS ============ */
.reviews-section { background: var(--off-white); }
.reviews-header { text-align: center; margin-bottom: 20px; }
.reviews-stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.reviews-summary { color: var(--text-muted); font-size: 0.95rem; }
.reviews-summary strong { color: var(--dark); font-size: 1.1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: var(--text); font-size: 0.94rem; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.92rem; }
.reviewer-location { color: var(--text-muted); font-size: 0.82rem; }
.verified-badge {
  display: inline-block;
  background: rgba(22,163,74,0.1);
  color: var(--success);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 6px;
  text-transform: uppercase;
}

/* ============ GUARANTEE ============ */
.guarantee-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  text-align: center;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-seal {
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
.guarantee-seal img { max-width: 100%; }
.guarantee-section h2 { color: #fff; }
.guarantee-section p { color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.guarantee-section .cta-btn { margin-top: 12px; }

/* ============ CONTRAINDICATIONS ============ */
.contraindications-section { background: #fff; }
.contra-header { text-align: center; margin-bottom: 30px; }
.contra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(90deg, rgba(220,38,38,0.05), transparent);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--error);
}
.contra-x {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(220,38,38,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--error);
  font-weight: 700;
  font-size: 1.1rem;
}
.contra-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); font-family: var(--font-body); }
.contra-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============ FAQ ============ */
.faq-section { background: var(--off-white); }
.faq-container { max-width: 850px; margin: 30px auto 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: #fafafa; }
.faq-toggle {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============ REVIEWER ============ */
.reviewer-section { background: #fff; }
.reviewer-card {
  max-width: 700px;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #fff 0%, var(--off-white) 100%);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
}
.reviewer-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}
.reviewer-info h3 { font-size: 1.2rem; margin-bottom: 6px; }
.reviewer-title { color: var(--primary); font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.reviewer-info p { color: var(--text-muted); font-size: 0.92rem; }

/* ============ REFERENCES ============ */
.references-section { background: var(--off-white); }
.references-list {
  max-width: 900px;
  margin: 30px auto 0;
  list-style: none;
  counter-reset: refnum;
}
.references-list li {
  counter-increment: refnum;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
}
.references-list li::before {
  content: counter(refnum);
  position: absolute;
  left: 0; top: 12px;
  width: 28px; height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.references-list a { color: var(--primary); font-weight: 600; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 24px; font-size: 1.05rem; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 55px 0 25px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary-light); }
.footer-brand { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; font-weight: 800; margin-bottom: 12px; }
.footer-brand span { color: var(--primary); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* ============ SOCIAL PROOF POPUP ============ */
.social-proof {
  position: fixed;
  bottom: 20px; left: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 200;
  animation: slideIn 0.5s ease;
  border-left: 4px solid var(--primary);
}
.social-proof.active { display: flex; }
.social-proof-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.social-proof-icon svg { width: 20px; height: 20px; color: #fff; }
.social-proof-text { flex: 1; font-size: 0.86rem; color: var(--text); line-height: 1.4; }
.social-proof-text strong { color: var(--dark); }
.social-proof-time { color: var(--text-muted); font-size: 0.78rem; margin-top: 3px; }
.social-proof-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 4px;
}
@keyframes slideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 12px 16px;
  z-index: 150;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.15);
}
.mobile-sticky-cta a {
  display: block;
  background: #fff;
  color: var(--primary) !important;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  background: var(--off-white);
  min-height: 60vh;
  padding: 60px 0;
}
.legal-content {
  background: #fff;
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h1 { font-size: 2rem; margin-bottom: 12px; color: var(--dark); }
.legal-content .updated { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.legal-content h2 { font-size: 1.4rem; margin-top: 30px; margin-bottom: 12px; color: var(--dark); }
.legal-content h3 { font-size: 1.15rem; margin-top: 22px; margin-bottom: 10px; color: var(--dark); }
.legal-content p { margin-bottom: 14px; color: var(--text); line-height: 1.7; }
.legal-content ul { margin: 12px 0 18px 24px; }
.legal-content li { margin-bottom: 8px; color: var(--text); }
.legal-content a { color: var(--primary); font-weight: 600; }

/* ============ 404 PAGE ============ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 900;
}
.error-page h1 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.error-page p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.error-links a { background: rgba(255,255,255,0.08); color: #fff !important; padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.15); }
.error-links a:hover { background: var(--primary); border-color: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  section { padding: 50px 0; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-inner { display: flex; flex-direction: column; }
  .hero-text { order: 2; }
  .hero-image { order: 1; }
  .hero h1 { order: 1; }
  .hero-trust { justify-content: center; }
  .hero-bullets { text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; }
  .why-grid, .what-is-grid { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contra-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; gap: 25px; }
  .guarantee-seal { width: 200px; height: 200px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .reviewer-card { grid-template-columns: 1fr; text-align: center; }
  .reviewer-photo { margin: 0 auto; }
  .legal-content { padding: 30px 24px; }
}

@media (max-width: 560px) {
  section { padding: 40px 0; }
  .hero { padding: 40px 0 60px; }
  .container { padding: 0 16px; }
  .trust-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .trust-badge { flex-shrink: 0; font-size: 0.8rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ai-answer { padding: 18px 20px; }
  .price-card { padding: 24px 18px 30px; }
  .price-image img { width: 190px; height: 190px; }
  .price-card.featured .price-image img { width: 200px; height: 200px; }
  .social-proof { max-width: calc(100% - 30px); left: 15px; right: 15px; }
  .mechanism-grid, .ingredients-grid { grid-template-columns: 1fr; }
}
