/* ============================================
   RESTOLIN — Main Stylesheet
   ============================================ */

:root {
  --c-primary: #5C2D5C;
  --c-primary-dark: #3D1D3D;
  --c-primary-light: #7D4F7D;
  --c-accent: #D4A24C;
  --c-accent-dark: #B8862E;
  --c-green: #2D5A3D;
  --c-green-light: #4A7D5C;
  --c-coral: #E89B7A;
  --c-bg: #FAF6F0;
  --c-bg-alt: #FFFFFF;
  --c-bg-dark: #1F1F2E;
  --c-text: #1F1F2E;
  --c-text-muted: #5A5A6E;
  --c-border: #E8DFCC;
  --c-success: #2D8B5A;
  --c-star: #F5B82E;
  --shadow-sm: 0 2px 8px rgba(31, 31, 46, 0.06);
  --shadow-md: 0 6px 20px rgba(31, 31, 46, 0.08);
  --shadow-lg: 0 16px 40px rgba(31, 31, 46, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.2s ease;
}

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

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.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--c-primary-dark);
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--c-text-muted); }

a { color: var(--c-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c-accent-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* ============ Announcement Bar ============ */
.announcement {
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.announcement a { color: var(--c-accent); font-weight: 700; text-decoration: underline; }
.announcement a:hover { color: #fff; }

/* ============ Sticky Header ============ */
.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--c-primary); }
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(212, 162, 76, 0.35);
  transition: var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 162, 76, 0.45);
  color: #fff;
}
.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}
.btn-secondary {
  background: var(--c-primary);
  box-shadow: 0 6px 18px rgba(92, 45, 92, 0.3);
}

/* ============ Hero ============ */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #FAF6F0 0%, #F2E8E0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.12), transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "title image"
    "sub image"
    "bullets image"
    "cta image"
    "trust image";
  column-gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-title-block { grid-area: title; align-self: end; }
.hero-img-wrap { grid-area: image; align-self: center; }
.hero-sub { grid-area: sub; margin-top: 18px; }
.hero-bullets { grid-area: bullets; }
.hero-cta-block { grid-area: cta; }
.hero-trust-block { grid-area: trust; }
.hero-badge {
  display: inline-block;
  background: rgba(92, 45, 92, 0.1);
  color: var(--c-primary);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero h1 { margin-bottom: 18px; color: var(--c-primary-dark); }
.hero h1 em {
  font-style: normal;
  color: var(--c-accent-dark);
  background: linear-gradient(120deg, transparent 0%, rgba(212, 162, 76, 0.2) 0%, rgba(212, 162, 76, 0.2) 100%, transparent 100%);
  padding: 0 6px;
}
.hero-sub {
  font-size: 1.08rem;
  margin-bottom: 24px;
  color: var(--c-text-muted);
}
.hero-bullets {
  list-style: none;
  margin-bottom: 30px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--c-text);
  font-weight: 500;
}
.check-svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.trust-proof {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 600;
}
.trust-proof-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(45, 90, 61, 0.12);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hero-img-wrap {
  position: relative;
  text-align: center;
}
.hero-img {
  max-width: 100%;
  filter: drop-shadow(0 24px 40px rgba(31, 31, 46, 0.18));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ Trust Strip ============ */
.trust-strip {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.trust-badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-bg), #fff);
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ============ Section Base ============ */
section { padding: 70px 0; }
.section-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  color: var(--c-accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ============ AI Answer Block ============ */
.ai-block {
  background: linear-gradient(135deg, #EAF3FF 0%, #DBE9F9 100%);
  border-left: 4px solid #4A7AC8;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.ai-block strong {
  display: block;
  margin-bottom: 8px;
  color: var(--c-primary-dark);
  font-size: 1.05rem;
}
.ai-block p { margin: 0; color: var(--c-text); }

/* ============ Why Choose ============ */
.why-choose {
  background: var(--c-bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-list { list-style: none; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.why-list strong { color: var(--c-primary-dark); display: block; margin-bottom: 4px; font-size: 1.1rem; }
.why-list span { color: var(--c-text-muted); font-size: 15px; }
.gold-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ============ Problem Section ============ */
.problem {
  background: linear-gradient(135deg, var(--c-bg-dark) 0%, #2D2D40 100%);
  color: #fff;
  padding: 80px 0;
}
.problem h2 { color: #fff; }
.problem p { color: #C8C8D6; }
.problem .section-eyebrow { color: var(--c-coral); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  text-align: center;
}
.pain-card .icon {
  font-size: 38px;
  margin-bottom: 14px;
}
.pain-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.pain-card p { color: #B8B8C8; font-size: 14px; margin: 0; }
.problem .ai-block {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--c-coral);
  color: #fff;
}
.problem .ai-block strong { color: #fff; }
.problem .ai-block p { color: #D8D8E8; }

/* ============ What Is ============ */
.what-is {
  background: var(--c-bg);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.what-img-card {
  background: linear-gradient(145deg, #F2E8E0 0%, #FAF6F0 60%, #EFE4F0 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  min-height: 360px;
}
.what-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 14px 28px rgba(31, 31, 46, 0.16));
}

/* ============ How It Works ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.how-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-primary);
  transition: var(--transition);
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-card .step-num {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}
.how-card h3 { color: var(--c-primary-dark); font-size: 1.15rem; margin-bottom: 8px; }
.how-card p { color: var(--c-text-muted); font-size: 14.5px; margin: 0; }

/* ============ Mechanism Diagram ============ */
.mechanism {
  background: linear-gradient(135deg, #fff 0%, #FAF6F0 100%);
}
.diagram-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--c-border);
  position: relative;
}
.unique-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}
.diagram-svg { width: 100%; height: auto; max-height: 460px; }
.diagram-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-weight: 500;
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* ============ Pricing ============ */
.pricing {
  background: var(--c-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 2px solid var(--c-border);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.best-value {
  transform: scale(1.05);
  border-color: var(--c-accent);
  box-shadow: 0 14px 40px rgba(212, 162, 76, 0.25);
  z-index: 2;
}
.price-card.best-value:hover { transform: scale(1.05) translateY(-6px); }
.price-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  color: #fff;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-tag.popular { background: var(--c-primary); }
.price-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  margin-top: 8px;
}
.price-bottle-img {
  margin: 0 auto 20px;
  object-fit: contain;
}
.price-card.best-value .price-bottle-img { width: 240px; height: 240px; }
.price-card:not(.best-value) .price-bottle-img { width: 220px; height: 220px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--c-primary-dark);
  font-weight: 700;
  line-height: 1;
}
.price-amount .currency { font-size: 1.4rem; vertical-align: top; margin-right: 2px; }
.price-amount .per { font-size: 1rem; color: var(--c-text-muted); font-family: 'Inter', sans-serif; font-weight: 500; }
.price-was {
  text-decoration: line-through;
  color: #B8B8C0;
  font-size: 1rem;
  margin: 6px 0 10px;
}
.price-total {
  color: var(--c-green);
  font-weight: 700;
  margin: 6px 0 18px;
  font-size: 1.05rem;
}
.price-shipping {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 12px;
}

/* ============ Ingredients ============ */
.ingredients {
  background: #fff;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.ing-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: 24px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.ing-card:hover {
  border-color: var(--c-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.ing-card .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.mech-tag {
  display: inline-block;
  background: rgba(92, 45, 92, 0.1);
  color: var(--c-primary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ing-card h3 {
  color: var(--c-primary-dark);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.ing-card p { font-size: 14.5px; color: var(--c-text-muted); margin: 0; }

/* ============ Benefits ============ */
.benefits {
  background: var(--c-bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.benefit-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card .b-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.benefit-card h3 { color: var(--c-primary-dark); font-size: 1.05rem; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; margin: 0; }

/* ============ Timeline ============ */
.timeline {
  background: linear-gradient(135deg, #fff 0%, #F8F4EC 100%);
}
.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent), var(--c-green));
  z-index: 0;
}
.tl-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-border);
}
.tl-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: -52px auto 16px;
  border: 4px solid #fff;
}
.tl-card h3 { color: var(--c-primary-dark); font-size: 1.1rem; margin-bottom: 6px; }
.tl-card .tl-phase {
  font-size: 12px;
  color: var(--c-accent-dark);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tl-card p { font-size: 14px; margin: 0; }

/* ============ Comparison Table ============ */
.compare {
  background: #fff;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 700px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.compare-table th {
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.compare-table th:first-child { text-align: left; }
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--c-primary-dark);
}
.compare-table .col-best { background: rgba(212, 162, 76, 0.08); }
.compare-table .check-yes { color: var(--c-success); font-size: 22px; font-weight: 700; }
.compare-table .check-no { color: #D04A3A; font-size: 22px; font-weight: 700; }
.compare-table .check-mid { color: var(--c-accent-dark); font-size: 22px; }
.compare-table tr:last-child td { border-bottom: none; }

/* ============ Reviews ============ */
.reviews {
  background: var(--c-bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars {
  color: var(--c-star);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}
.review-name {
  font-weight: 700;
  color: var(--c-primary-dark);
  font-size: 15px;
  margin-bottom: 2px;
}
.review-meta {
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.verified-badge {
  background: var(--c-success);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

/* ============ Guarantee ============ */
.guarantee {
  background: linear-gradient(135deg, var(--c-bg) 0%, #F2E8E0 100%);
  text-align: center;
}
.guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
}
.guarantee-seal {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--c-accent), var(--c-accent-dark), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 32px rgba(212, 162, 76, 0.4);
}
.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}
.seal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--c-accent-dark);
}
.seal-content .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.seal-content .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.seal-content .sub {
  font-size: 10px;
  color: var(--c-text-muted);
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* ============ Contraindications ============ */
.contraindications {
  background: linear-gradient(135deg, #fff 0%, #FFF8F5 100%);
}
.contra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contra-item {
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-left: 4px solid #D04A3A;
  box-shadow: var(--shadow-sm);
}
.contra-icon {
  color: #D04A3A;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
.contra-item span { color: var(--c-text); font-size: 15px; font-weight: 500; }

/* ============ FAQ ============ */
.faq {
  background: #fff;
}
.faq-list {
  max-width: 820px;
  margin: 30px auto 0;
}
.faq-item {
  background: var(--c-bg);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { background: #fff; box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--c-accent-dark); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
  color: var(--c-text-muted);
}
.faq-item.active .faq-a {
  max-height: 500px;
  padding: 0 26px 22px;
}

/* ============ Medical Reviewer ============ */
.med-reviewer {
  background: var(--c-bg);
}
.med-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.med-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--c-accent);
}
.med-info h3 { color: var(--c-primary-dark); margin-bottom: 4px; }
.med-info .creds {
  color: var(--c-accent-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.med-info p { font-size: 14.5px; margin: 0; }

/* ============ References ============ */
.references {
  background: #fff;
  padding: 60px 0;
}
.ref-list {
  max-width: 860px;
  margin: 30px auto 0;
  font-size: 14px;
  color: var(--c-text-muted);
}
.ref-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  list-style: none;
  line-height: 1.6;
}
.ref-list li::before {
  content: counter(ref-counter) ".";
  counter-increment: ref-counter;
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}
.ref-list { counter-reset: ref-counter; }
.ref-list a { color: var(--c-primary); text-decoration: underline; }

/* ============ Final CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 18px; }
.final-cta p { color: #E8D8E8; font-size: 1.1rem; margin-bottom: 32px; }
.final-cta .btn { background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark)); }

/* ============ Footer ============ */
.footer {
  background: var(--c-bg-dark);
  color: #B8B8C8;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: #B8B8C8;
  font-size: 14px;
  transition: var(--transition);
}
.footer ul a:hover { color: var(--c-accent); }
.footer-logo {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  color: #9090A0;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #8080A0;
}

/* ============ Social Proof Popup ============ */
.proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  z-index: 200;
  border-left: 4px solid var(--c-accent);
  transform: translateX(-130%);
  transition: transform 0.4s ease;
}
.proof-popup.show {
  display: flex;
  transform: translateX(0);
}
.proof-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.proof-text { flex: 1; }
.proof-name { font-weight: 700; color: var(--c-primary-dark); font-size: 14px; }
.proof-action { font-size: 12.5px; color: var(--c-text-muted); }
.proof-time { font-size: 11px; color: #A0A0B0; margin-top: 2px; }
.proof-close {
  background: none;
  border: none;
  color: #A0A0B0;
  cursor: pointer;
  font-size: 18px;
  padding: 0 4px;
  line-height: 1;
}

/* ============ Mobile Sticky CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.12);
  z-index: 99;
}
.mobile-cta .btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* ============ Inline Pages (legal, contact) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  padding: 70px 0 50px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #E8D8E8; }
.page-content {
  padding: 60px 0;
  background: #fff;
}
.page-content .container { max-width: 880px; }
.page-content h2 {
  color: var(--c-primary-dark);
  margin: 30px 0 12px;
  font-size: 1.5rem;
}
.page-content h3 {
  color: var(--c-primary-dark);
  margin: 22px 0 10px;
  font-size: 1.2rem;
}
.page-content p, .page-content li {
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.75;
}
.page-content ul, .page-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--c-primary-dark); }

/* ============ Contact Form ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.contact-info-card {
  background: var(--c-bg);
  padding: 30px;
  border-radius: var(--radius-md);
}
.contact-info-card h3 { color: var(--c-primary-dark); margin-bottom: 14px; }
.contact-info-card a { display: block; margin: 8px 0; color: var(--c-primary); font-weight: 600; }

/* ============ 404 Page ============ */
.error-page {
  padding: 100px 0;
  text-align: center;
  background: var(--c-bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 14px;
}
.error-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.error-links a {
  background: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  color: var(--c-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .why-grid, .what-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Hero: single column, order = title → image → sub → bullets → cta → trust */
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "sub"
      "bullets"
      "cta"
      "trust";
    gap: 0;
  }
  .hero-title-block { align-self: auto; }
  .hero-sub { margin-top: 24px; }
  .hero-cta-block { margin-top: 26px; }
  .pain-grid, .how-grid, .ingredients-grid,
  .benefits-grid, .timeline-wrap, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-wrap::before { display: none; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card.best-value { transform: none; order: -1; }
  .price-card.best-value:hover { transform: translateY(-6px); }
  .contra-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .med-card { grid-template-columns: 1fr; text-align: center; padding: 26px; }
  .med-avatar { margin: 0 auto; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
  .proof-popup { bottom: 88px; left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  section { padding: 50px 0; }
  .pain-grid, .how-grid, .ingredients-grid,
  .benefits-grid, .timeline-wrap, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 50px; }
  .price-card.best-value .price-bottle-img,
  .price-card:not(.best-value) .price-bottle-img {
    width: 200px;
    height: 200px;
  }
  .logo { font-size: 1.35rem; }
  .logo-mark { width: 32px; height: 32px; font-size: 1rem; }
  .header .btn { padding: 10px 18px; font-size: 13px; }
  .diagram-wrap { padding: 24px 18px; }
  .guarantee-seal { width: 140px; height: 140px; }
  .seal-content .num { font-size: 2.2rem; }
  .btn-lg { padding: 15px 30px; font-size: 15px; }
}
