/* ============================================================
   TINNORIL — MAIN STYLESHEET
   ============================================================ */

:root {
  --navy: #0b1e3c;
  --navy-deep: #071530;
  --navy-light: #14315e;
  --gold: #d9a842;
  --gold-light: #f0c86a;
  --sky: #e8f0fb;
  --sky-deep: #cfe0f5;
  --ink: #1a1f2e;
  --ink-mute: #4a5568;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --success: #2f855a;
  --warn: #c53030;
  --shadow-sm: 0 2px 6px rgba(11,30,60,.06);
  --shadow-md: 0 8px 24px rgba(11,30,60,.10);
  --shadow-lg: 0 20px 50px rgba(11,30,60,.14);
  --radius: 14px;
  --radius-sm: 8px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 22px; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-light));
  color: #fff;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.announce a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.logo em { color: var(--gold); font-style: normal; }
.nav-menu { display: flex; gap: 26px; align-items: center; }
.nav-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(217,168,66,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217,168,66,0.45);
  color: var(--navy-deep);
}
.btn-lg { padding: 15px 32px; font-size: 15.5px; }
.btn-xl { padding: 18px 40px; font-size: 17px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--navy); cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #fff 0%, var(--sky) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(217,168,66,0.15);
  color: var(--navy);
  border: 1px solid rgba(217,168,66,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 700;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p.lead {
  color: var(--ink-mute);
  font-size: 17px;
  margin-bottom: 22px;
}
.hero-bullets { list-style: none; margin-bottom: 26px; }
.hero-bullets li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9a842' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
  background-size: contain;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.hero-trust div {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}
.hero-trust strong { color: var(--navy); display: block; font-size: 15px; margin-bottom: 2px; }
.hero-image {
  position: relative;
  text-align: center;
  animation: float 5s ease-in-out infinite;
}
.hero-image img { max-width: 460px; margin: 0 auto; filter: drop-shadow(0 25px 40px rgba(11,30,60,0.22)); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--navy);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}
.trust-item svg { width: 26px; height: 26px; color: var(--gold-light); flex-shrink: 0; }

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  text-align: center;
  color: var(--ink-mute);
  font-size: 16.5px;
  max-width: 740px;
  margin: 0 auto 48px;
}

/* ---------- AI ANSWER BLOCK ---------- */
.ai-answer {
  background: linear-gradient(135deg, #eef4fc 0%, #e0eaf8 100%);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 24px auto;
  max-width: 820px;
  box-shadow: var(--shadow-sm);
}
.ai-answer h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-body);
}
.ai-answer p { color: var(--ink); font-size: 15.5px; margin: 0; }

/* ---------- WHY CHOOSE ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.why-image img { max-width: 100%; }
.why-list { list-style: none; }
.why-list li {
  padding: 12px 0 12px 34px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9a842' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
  background-size: contain;
}
.why-list strong { color: var(--navy); display: block; margin-bottom: 3px; font-size: 16.5px; }
.why-list span { color: var(--ink-mute); font-size: 14.5px; }

/* ---------- PROBLEM ---------- */
.problem-section {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.problem-section .section-title { color: #fff; }
.problem-section .section-title em { color: var(--gold-light); }
.problem-section .section-sub { color: rgba(255,255,255,0.7); }
.problem-section .ai-answer {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold-light);
}
.problem-section .ai-answer h3 { color: #fff; }
.problem-section .ai-answer p { color: rgba(255,255,255,0.88); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 22px;
  border-radius: var(--radius);
  text-align: center;
}
.pain-card .icon {
  font-size: 34px;
  margin-bottom: 12px;
  display: block;
}
.pain-card h4 { color: var(--gold-light); margin-bottom: 8px; font-size: 1.05rem; }
.pain-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; }

/* ---------- WHAT IS / TWO-COL ---------- */
.twocol-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.twocol-image img { max-width: 100%; border-radius: var(--radius); }
.twocol-content p { margin-bottom: 16px; color: var(--ink); font-size: 16px; }
.twocol-content h3 { color: var(--navy); font-size: 1.25rem; margin: 22px 0 12px; font-family: var(--font-body); }

/* ---------- HOW IT WORKS ---------- */
.mech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.mech-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.mech-card .step-num {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 14.5px;
}
.mech-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.mech-card p { color: var(--ink-mute); font-size: 14.5px; }

/* ---------- DIAGRAM ---------- */
.diagram-section {
  background: linear-gradient(180deg, var(--sky) 0%, #fff 100%);
}
.unique-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.diagram-wrap {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-width: 960px;
  margin: 30px auto 0;
}
.diagram-wrap svg { width: 100%; height: auto; max-width: 900px; margin: 0 auto; display: block; }
.diagram-caption {
  text-align: center;
  color: var(--ink-mute);
  font-size: 14.5px;
  margin-top: 20px;
  font-style: italic;
}

/* ---------- PRICING ---------- */
.pricing-section { background: var(--bg-soft); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 40px;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px 34px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.best-value-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(217,168,66,0.4);
}
.pricing-card h3 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.pricing-card .supply { color: var(--ink-mute); font-size: 13.5px; margin-bottom: 18px; letter-spacing: 0.3px; }
.pricing-card img {
  height: 220px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 18px;
  object-fit: contain;
}
.pricing-card.featured img { height: 240px; }
.pricing-card .price {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}
.pricing-card .price small { font-size: 1rem; color: var(--ink-mute); font-weight: 500; }
.pricing-card .per-bottle { color: var(--ink-mute); font-size: 14px; margin-bottom: 6px; }
.pricing-card .strike { color: var(--ink-mute); text-decoration: line-through; font-size: 15px; margin-bottom: 4px; }
.pricing-card .savings {
  color: var(--success);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.pricing-card .ship {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--sky);
  border-radius: 6px;
  display: inline-block;
}
.pricing-card .ship.free { background: rgba(47,133,90,0.12); color: var(--success); font-weight: 600; }
.pricing-card .btn { width: 100%; margin-top: auto; }

.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.bonus-badge {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}
.bonus-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.bonus-card p { color: var(--ink-mute); font-size: 13.5px; }

/* ---------- INGREDIENTS ---------- */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ingredient-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ingredient-card .ico {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 20px;
}
.ingredient-card .tag {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ingredient-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.ingredient-card p { color: var(--ink-mute); font-size: 14.5px; }

/* ---------- BENEFITS ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--bg-soft);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}
.benefit-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-sm); }
.benefit-card .ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.benefit-card .ico svg { width: 26px; height: 26px; }
.benefit-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-mute); font-size: 13.5px; }

/* ---------- TIMELINE ---------- */
.timeline-section { background: var(--bg-soft); }
.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.tl-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.tl-card .phase {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.tl-card p { color: var(--ink-mute); font-size: 14px; }

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 16px 14px;
  font-size: 14.5px;
  text-align: center;
  font-weight: 700;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .yes { color: var(--success); font-weight: 700; }
.comparison-table .no { color: var(--warn); font-weight: 700; }
.comparison-table .partial { color: #d69e2e; font-weight: 600; }

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-header img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.review-header .name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-header .loc { color: var(--ink-mute); font-size: 12.5px; }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 1px; }
.review-card p { color: var(--ink); font-size: 14.5px; line-height: 1.6; }
.verified {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}

/* ---------- GUARANTEE ---------- */
.guarantee-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
}
.guarantee-section .section-title { color: #fff; }
.guarantee-section .section-title em { color: var(--gold-light); }
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.guarantee-seal img { width: 200px; height: 200px; }
.guarantee-text { max-width: 560px; text-align: left; }
.guarantee-text p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 14px; }

/* ---------- CONTRAINDICATIONS ---------- */
.contra-section { background: #fef7f0; }
.contra-list {
  max-width: 780px;
  margin: 40px auto 0;
  background: #fff;
  padding: 32px 34px;
  border-radius: var(--radius);
  border-left: 4px solid var(--warn);
  box-shadow: var(--shadow-sm);
  list-style: none;
}
.contra-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.contra-list li:last-child { border-bottom: none; }
.contra-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  background: var(--warn);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  font-weight: 700;
}
.contra-list strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  user-select: none;
}
.faq-q .plus { color: var(--gold); font-size: 22px; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 500px; }

/* ---------- REFERENCES ---------- */
.refs-section { background: var(--bg-soft); }
.refs-list {
  max-width: 820px;
  margin: 30px auto 0;
  list-style: none;
  counter-reset: refnum;
}
.refs-list li {
  counter-increment: refnum;
  padding: 14px 0 14px 38px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-mute);
}
.refs-list li:last-child { border-bottom: none; }
.refs-list li::before {
  content: counter(refnum);
  position: absolute;
  left: 0;
  top: 14px;
  background: var(--navy);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 12px;
  font-weight: 700;
}
.refs-list a { color: var(--navy); text-decoration: underline; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
  padding: 70px 0;
}
.final-cta h2 {
  font-family: var(--font-head);
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-bottom: 16px;
}
.final-cta p { color: var(--navy); font-size: 17px; margin-bottom: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }
.final-cta .btn {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(11,30,60,0.35);
}
.final-cta .btn:hover { color: var(--gold-light); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-brand { font-family: var(--font-head); font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-disclaimer p { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- SOCIAL PROOF POPUP ---------- */
.social-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  padding: 14px 44px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 500;
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-left: 4px solid var(--gold);
}
.social-popup.show { opacity: 1; transform: translateX(0); }
.social-popup .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 15px;
}
.social-popup .msg { font-size: 13px; color: var(--ink); line-height: 1.4; }
.social-popup .msg strong { color: var(--navy); }
.social-popup .msg .time { color: var(--ink-mute); font-size: 11.5px; display: block; margin-top: 2px; }
.social-popup .close-x {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--ink-mute);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-sticky-cta .btn { width: 100%; text-align: center; }

/* ---------- LEGAL PAGES ---------- */
.legal-page { padding: 60px 0 80px; }
.legal-page h1 {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 12px;
}
.legal-page .updated {
  color: var(--ink-mute);
  font-size: 14px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 30px 0 12px;
  font-family: var(--font-body);
}
.legal-page h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 22px 0 10px;
}
.legal-page p { margin-bottom: 14px; color: var(--ink); }
.legal-page ul { margin-bottom: 14px; padding-left: 22px; }
.legal-page li { margin-bottom: 6px; color: var(--ink); }
.legal-page a { color: var(--navy); text-decoration: underline; }
.legal-page a:hover { color: var(--gold); }

/* ---------- 404 ---------- */
.error-page {
  padding: 100px 0;
  text-align: center;
}
.error-page h1 {
  font-size: 6rem;
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.error-page h2 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.error-page p { color: var(--ink-mute); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.error-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.error-links a {
  padding: 10px 20px;
  background: var(--bg-soft);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 500;
  border: 1px solid var(--line);
}
.error-links a:hover { background: var(--sky); }

/* ---------- CONTACT PAGE ---------- */
.contact-block {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px;
  margin: 24px 0;
  border-left: 4px solid var(--gold);
}
.contact-block h3 { color: var(--navy); margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: var(--shadow-md); gap: 12px; border-top: 1px solid var(--line); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 8px 0; width: 100%; }
  .mobile-toggle { display: block; }
  .hero { padding: 40px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .hero-image { order: 2; }
  .hero-image img { max-width: 320px; }
  .why-grid, .twocol-grid, .guarantee-inner { grid-template-columns: 1fr; gap: 30px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .mech-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card.featured { transform: scale(1); order: -1; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .bonus-row { grid-template-columns: 1fr; }
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-wrap { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .comparison-table { font-size: 12.5px; }
  .comparison-table th, .comparison-table td { padding: 10px 6px; }
  .social-popup { max-width: calc(100% - 32px); left: 16px; right: 16px; bottom: 78px; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .container { padding: 0 16px; }
  section { padding: 50px 0; }
  .hero-image img { max-width: 260px; }
  .pain-grid, .mech-grid, .ingredient-grid, .benefit-grid, .timeline-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 14px; }
  .trust-item { font-size: 12px; }
  .diagram-wrap { padding: 20px 12px; }
  .btn-lg, .btn-xl { padding: 14px 24px; font-size: 15px; }
  .contra-list { padding: 22px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
