/* ========================================
   VAPOFIL OFFICIAL — STYLESHEET
   Sans-serif, 1200px max-width, official look
   ======================================== */

:root {
  --bg-deep: #0650A3;
  --bg-radial-end: #1E1230;
  --bg-white: #ffffff;
  --gold: #f5b942;
  --gold-deep: #d99a1f;
  --green: #16a34a;
  --green-deep: #15803d;
  --red: #dc2626;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(6,80,163,0.18);
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============ MAIN CONTAINER 1200px ============ */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4.2vw, 2.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); }

/* ============ TOP TRUST BAR ============ */
.top-trust-bar {
  background:
    radial-gradient(at center center, #0650A3 0%, #1E1230 100%);
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  padding: 9px 0;
  text-align: center;
  font-weight: 500;
}
.top-trust-bar .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; align-items: center; }
.top-trust-bar strong { color: #ffd57a; font-weight: 700; }
.top-trust-bar .sep { color: rgba(255,255,255,0.3); }
.top-trust-bar i { color: #ffd57a; margin-right: 4px; }

/* ============ NAVIGATION ============ */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #0650A3, #1E1230);
  color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(6,80,163,0.3);
}
.brand-text { font-size: 22px; color: var(--text-dark); letter-spacing: -0.01em; }
.brand-text sup { font-size: 11px; color: var(--gold-deep); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: #0650A3; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(217,154,31,0.35);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,154,31,0.45); }
.nav-cta i { margin-left: 6px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(at center center, #0650A3 0%, #1E1230 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,185,66,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); display: inline-block; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,185,66,0.15);
  border: 1px solid rgba(245,185,66,0.4);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-checks { margin-bottom: 28px; }
.hero-checks li {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}
.hero-checks i { color: var(--gold); margin-right: 10px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(217,154,31,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  border: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(217,154,31,0.5); }
.btn-primary small { font-size: 11px; font-weight: 500; opacity: 0.9; margin-top: 2px; }
.btn-primary.inline-cta { flex-direction: row; gap: 8px; margin-top: 24px; }
.btn-primary.big-btn { font-size: 18px; padding: 18px 40px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-row > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-trust-row i { color: var(--gold); font-size: 20px; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}
.hero-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(245,185,66,0.35) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-bottle {
  position: relative;
  z-index: 1;
  max-width: 380px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
  animation: gentleFloat 4s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-badge {
  position: absolute;
  background: #fff;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  font-size: 20px;
}
.float-badge i { color: var(--gold-deep); font-size: 18px; }
.float-badge strong { display: block; font-weight: 800; line-height: 1; }
.float-badge span { font-size: 11px; color: var(--text-light); }
.fb-1 { top: 8%; right: 0; animation: gentleFloat 5s ease-in-out infinite; }
.fb-2 { bottom: 18%; left: 0; animation: gentleFloat 5s ease-in-out infinite 1.2s; }
.fb-3 { top: 50%; right: -5%; animation: gentleFloat 5s ease-in-out infinite 2.4s; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: #f8fafc;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-card img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 14px; }
.trust-card h4 { color: #0650A3; margin-bottom: 8px; font-size: 20px; text-transform: uppercase; letter-spacing: 0.03em; }
.trust-card p { font-size: 18px; line-height: 1.6; }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section-light { background: #ffffff; }
.section-dark {
  background: radial-gradient(at center center, #0650A3 0%, #1E1230 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.section-dark .wrap { position: relative; z-index: 2; }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .kicker {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #0650A3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-head.light .kicker { color: var(--gold); }
.section-head.light h2 { color: #fff; }
.section-lead {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9, #fff);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-image img { max-width: 100%; }
.about-text p { margin-bottom: 16px; font-size: 20px; line-height: 1.75; }
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.about-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  color: #0650A3;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.about-pills i { color: var(--gold-deep); }

/* ============ HOW IT WORKS / MECHANISM ============ */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.mech-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}
.mech-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.mech-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(217,154,31,0.35);
}
.mech-card h4 { color: #fff; margin-bottom: 10px; font-size: 19px; }
.mech-card p { color: rgba(255,255,255,0.78); font-size: 20px; line-height: 1.65; }

.mech-summary {
  background: rgba(245,185,66,0.12);
  border: 1px solid rgba(245,185,66,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.mech-summary p { color: rgba(255,255,255,0.92); font-size: 20px; margin-bottom: 22px; }
.mech-summary strong { color: var(--gold); }

/* ============ INGREDIENTS ============ */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.ing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid #0650A3;
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-left-color 0.2s;
  position: relative;
}
.ing-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.ing-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.ing-card h4 { color: var(--text-dark); margin-bottom: 8px; font-size: 18px; }
.ing-card p { font-size: 20px; line-height: 1.65; color: var(--text-mid); }

.ing-conclusion {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.ing-conclusion h3 { color: #0650A3; margin-bottom: 14px; }
.ing-conclusion p { font-size: 20px; max-width: 720px; margin: 0 auto; line-height: 1.7; }

/* ============ PRICING ============ */
.pricing-section {
  background: radial-gradient(at center center, #0650A3 0%, #1E1230 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,185,66,0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.pricing-section .wrap { position: relative; z-index: 2; }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.price-card.best {
  transform: scale(1.04);
  border: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(245,185,66,0.4);
}
.price-card.best:hover { transform: scale(1.04) translateY(-6px); }
.best-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(217,154,31,0.5);
  white-space: nowrap;
}
.price-head { margin-bottom: 18px; }
.price-head h4 { font-size: 22px; color: #0650A3; margin-bottom: 4px; }
.price-head span { font-size: 20px; color: var(--text-light); font-weight: 600; }
.price-img {
  background: linear-gradient(180deg, #f8fafc, #fff);
  border-radius: var(--radius);
  padding: 20px 10px;
  margin-bottom: 18px;
  min-height: 200px;
  display: grid;
  place-items: center;
}
.price-img img { max-height: 180px; width: auto; }
.price-amt { margin-bottom: 16px; }
.price-amt .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.price-amt .per { font-size: 20px; color: var(--text-light); margin-left: 4px; }

.price-btn {
  display: block;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(22,163,74,0.35);
}
.price-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(22,163,74,0.45); }
.price-btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); box-shadow: 0 6px 18px rgba(217,154,31,0.4); }
.price-btn.primary:hover { box-shadow: 0 10px 24px rgba(217,154,31,0.55); }

.price-total { font-size: 20px; color: var(--text-mid); margin-bottom: 8px; }
.price-total s { color: var(--red); margin: 0 4px; }
.price-total strong { color: var(--text-dark); font-size: 20px; }
.price-bonus {
  background: #f0fdf4;
  color: var(--green-deep);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}
.price-bonus i { margin-right: 4px; }
.price-pay { max-width: 200px; margin: 8px auto 0; opacity: 0.7; }

/* ============ GUARANTEE ============ */
.guarantee-section { background: linear-gradient(180deg, #fffbeb, #fff); }
.guarantee-box {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(245,185,66,0.2);
}
.guarantee-img img { width: 100%; }
.guarantee-content h2 { margin-bottom: 16px; }
.guarantee-content .kicker { color: var(--gold-deep); }
.guarantee-content p { font-size: 20px; margin-bottom: 22px; line-height: 1.7; }
.guarantee-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--text-mid);
}
.guarantee-points i {
  background: var(--green);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}
.guarantee-points strong { color: var(--text-dark); }

/* ============ BENEFITS ============ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #0650A3; }
.b-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #0650A3, #1E1230);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(6,80,163,0.3);
}
.benefit-card h4 { margin-bottom: 10px; color: var(--text-dark); }
.benefit-card p { font-size: 20px; line-height: 1.65; }

/* ============ REVIEWS ============ */
.review-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.review-stars .stars { color: var(--gold); font-size: 20px; }
.review-stars span { color: rgba(255,255,255,0.85); font-size: 14px; }
.review-stars strong { color: #fff; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}
.review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.r-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.r-head img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.r-head h5 { color: #fff; font-size: 20px; margin-bottom: 2px; }
.r-head span { font-size: 12px; color: rgba(255,255,255,0.6); }
.review-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.review-card p { color: rgba(255,255,255,0.85); font-size: 20px; line-height: 1.7; font-style: italic; }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto 50px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item.active { border-color: #0650A3; box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  font-family: inherit;
}
.faq-q span { flex: 1; padding-right: 16px; }
.faq-q i {
  color: #0650A3;
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 400px; }
.faq-a p { padding: 0 24px 22px; font-size: 20px; line-height: 1.7; color: var(--text-mid); }

.faq-cta {
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.faq-cta h3 { color: var(--text-dark); margin-bottom: 8px; }
.faq-cta p { margin-bottom: 22px; font-size: 20px; }
.faq-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-cta-btns .btn-secondary { color: #0650A3; border-color: #0650A3; }
.faq-cta-btns .btn-secondary:hover { background: #0650A3; color: #fff; }
.faq-cta-btns .btn-primary { flex-direction: row; gap: 8px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: #0650A3;
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(245,185,66,0.15) 0%, transparent 60%);
}
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta > .wrap > p { color: rgba(255,255,255,0.85); font-size: 20px; max-width: 640px; margin: 0 auto 40px; }

.final-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto;
}
.final-product img { max-width: 360px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.final-deal { text-align: left; }
.final-deal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.final-deal-row.big { border-bottom: none; margin-bottom: 22px; padding-bottom: 0; }
.final-deal-row .lbl { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; }
.final-deal-row .strike { text-decoration: line-through; color: rgba(255,255,255,0.5); font-size: 20px; }
.final-deal-row .hero-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
.final-deal .btn-primary { display: flex; width: 100%; justify-content: center; gap: 8px; flex-direction: row; }
.final-trust { text-align: center; margin-top: 14px; font-size: 20px; color: rgba(255,255,255,0.7); }
.final-trust i { color: var(--gold); margin-right: 6px; }

/* ============ FOOTER ============ */
.footer {
  background: #0a0e1a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-disclaimer { max-width: 980px; margin: 0 auto 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-disclaimer p { font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.footer-disclaimer strong { color: rgba(255,255,255,0.85); }

.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }

.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.footer-links a { font-size: 20px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.5); text-align: center; }

/* ============ STICKY URGENCY BAR ============ */
.urgency-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 12px 0;
  z-index: 99;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.urgency-bar.show { transform: translateY(0); }
.urgency-bar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.urgency-text { font-size: 14px; font-weight: 600; flex: 1; }
.urgency-text i { margin-right: 8px; }
.urgency-text .timer {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  margin-left: 8px;
  font-size: 20px;
}
.urgency-btn {
  background: #fff;
  color: var(--gold-deep);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.2s;
}
.urgency-btn:hover { transform: scale(1.04); }

/* ============ SCROLL TO TOP ============ */
#scrollTop {
  position: fixed;
  bottom: 78px;
  right: 22px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #0650A3, #1E1230);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
#scrollTop:hover { transform: translateY(-3px); }

/* ============ EXIT POPUP ============ */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.exit-popup.show { display: flex; }
.exit-popup-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 44px 36px 36px;
  text-align: center;
  position: relative;
  border-top: 6px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: popIn 0.4s ease;
}
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.exit-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #94a3b8;
  line-height: 1;
}
.exit-close:hover { color: var(--text-dark); }
.exit-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.exit-popup h3 { margin-bottom: 12px; font-size: 26px; color: var(--text-dark); }
.exit-popup p { color: var(--text-mid); font-size: 20px; margin-bottom: 22px; line-height: 1.6; }
.exit-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(217,154,31,0.4);
  transition: transform 0.2s;
}
.exit-btn:hover { transform: translateY(-2px); }
.exit-timer {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.exit-timer strong {
  display: inline-block;
  background: #fef3c7;
  color: var(--gold-deep);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 800;
  margin-left: 4px;
}
.exit-dismiss { font-size: 12px; color: var(--text-light); display: block; }
.exit-dismiss:hover { color: var(--text-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-eyebrow, .hero-trust-row { justify-content: center; }
  .hero-checks { display: inline-block; text-align: left; }
  .hero-cta-row { justify-content: center; }
  .hero-visual { min-height: auto; }
  .hero-bottle { max-width: 320px; }
  .fb-1, .fb-2, .fb-3 { display: none; }

  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.best { transform: none; }
  .price-card.best:hover { transform: translateY(-6px); }
  .guarantee-box { grid-template-columns: 1fr; padding: 36px; gap: 30px; text-align: center; }
  .guarantee-img { max-width: 200px; margin: 0 auto; }
  .guarantee-points li { text-align: left; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .final-product { grid-template-columns: 1fr; padding: 36px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.show { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 20px; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .top-trust-bar { font-size: 11.5px; padding: 8px 0; }
  .top-trust-bar .sep { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; padding: 16px 0; }
  .hero-stat { display: flex; align-items: center; gap: 14px; justify-content: center; }
  .hero-stat .num { font-size: 26px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row a { width: 100%; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .guarantee-box { padding: 28px 22px; }
  .ing-conclusion { padding: 28px 22px; }
  .faq-cta { padding: 28px 22px; }
  .final-product { padding: 28px 22px; gap: 24px; }
  .final-deal-row .hero-price { font-size: 28px; }
  .urgency-bar .wrap { flex-direction: column; gap: 10px; padding-bottom: 4px; }
  .urgency-text { font-size: 12.5px; text-align: center; }
  .urgency-btn { width: 100%; text-align: center; padding: 10px; }
  .nav-wrap { height: 64px; }
  .brand-text { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; font-size: 20px; }
  .nav-links.show { top: 64px; }
}

/* ============ PRICING (SCREENSHOT STYLE) ============ */
.pricing-section {
  background: #ffffff;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.pricing-section .section-head.light .kicker { color: var(--gold-deep); }
.pricing-section .section-head.light h2 { color: var(--text-dark); }
.pricing-section .section-head.light p { color: var(--text-mid); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18); }
.price-card.best {
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(243, 132, 30, 0.35);
}
.price-card.best:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 30px 60px rgba(243, 132, 30, 0.45); }

/* HEADER */
.price-head {
  text-align: center;
  padding: 22px 16px 18px;
  color: #fff;
}
.price-head.dark {
  background: #0a0a0a;
}
.price-head.orange {
  background: linear-gradient(180deg, #f5832a, #e36b15);
}
.price-head h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.05;
  text-transform: none;
}
.price-head.orange h4 {
  font-size: 30px;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.bottle-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bottle-count {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.day-supply {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
}






/* ============ PRICING (SCREENSHOT STYLE) ============ */
.pricing-section {
  background: #ffffff;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.pricing-section .section-head.light .kicker { color: var(--gold-deep); }
.pricing-section .section-head.light h2 { color: var(--text-dark); }
.pricing-section .section-head.light p { color: var(--text-mid); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18); }
.price-card.best {
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(243, 132, 30, 0.35);
}
.price-card.best:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 30px 60px rgba(243, 132, 30, 0.45); }

/* HEADER */
.price-head {
  text-align: center;
  padding: 22px 16px 18px;
  color: #fff;
}
.price-head.dark {
  background: #0a0a0a;
}
.price-head.orange {
  background: linear-gradient(180deg, #f5832a, #e36b15);
}
.price-head h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1.05;
  text-transform: none;
}
.price-head.orange h4 {
  font-size: 30px;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.bottle-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bottle-count {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.day-supply {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
}

/* CARD BODY */
.price-card-body {
  padding: 30px 22px 26px;
  text-align: center;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-body.orange-body {
  background: linear-gradient(180deg, #fff5ea 0%, #ffe1c2 60%, #ffd1a3 100%);
}

/* BADGES */
.badge-most-popular {
  position: absolute;
  top: 22px;
  left: 14px;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  padding: 6px 12px 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: rotate(-6deg);
  z-index: 3;
}
.badge-most-popular::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid #b45309;
}
.ribbon-stars {
  display: block;
  font-size: 8px;
  color: #fbbf24;
  margin-top: 2px;
  letter-spacing: 1px;
}

.badge-free-shipping {
  position: absolute;
  top: 22px;
  right: 14px;
  background: #fbbf24;
  color: #0a0a0a;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transform: rotate(6deg);
  z-index: 3;
}
.badge-free-shipping i { font-size: 16px; }
.badge-free-shipping.small-badge {
  background: #fbbf24;
  font-size: 10px;
}

/* PRODUCT IMAGE */
.price-img {
  margin: 0 auto 18px;
  min-height: 200px;
  max-height: 220px;
  display: grid;
  place-items: center;
  background: none;
  padding: 0;
}
.price-img img {
  max-height: 220px;
  width: auto;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
}
.price-card.best .price-img img {
  max-height: 230px;
}

/* PRICE AMOUNT */
.price-amt {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  line-height: 1;
}
.price-amt .dollar {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 0.9;
  margin-top: 12px;
}
.price-amt .big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: #0a0a0a;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.price-amt .per {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  text-align: left;
  line-height: 1.1;
  margin-top: 16px;
  margin-left: 2px;
}

/* INFO ROWS */
.price-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.02em;
  margin: 8px 0;
  text-transform: uppercase;
}
.price-info-row i {
  color: #16a34a;
  font-size: 16px;
}

.dotted-divider {
  border-top: 2px dotted rgba(0,0,0,0.25);
  margin: 12px 0;
}

/* TOTAL */
.price-total {
  font-size: 17px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 14px 0;
  letter-spacing: 0.01em;
}
.price-total s {
  color: #64748b;
  font-weight: 600;
  margin: 0 4px;
}
.price-total strong {
  color: #0a0a0a;
  font-size: 22px;
  font-weight: 900;
  margin-left: 2px;
}

/* SHIPPING TAG */
.shipping-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 4px auto 16px;
  align-self: center;
  color: #fff;
}
.shipping-tag.dark-tag {
  background: #0a0a0a;
}
.shipping-tag.orange-tag {
  background: #fbbf24;
  color: #0a0a0a;
}
.shipping-tag i { font-size: 10px; }

/* ADD TO CART BUTTON */
.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #fde047 0%, #facc15 50%, #d4a017 100%);
  color: #0a0a0a;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid #b8860b;
  box-shadow: 0 6px 0 #8b6914, 0 8px 18px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 16px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.cart-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #8b6914, 0 6px 14px rgba(0,0,0,0.2);
}
.cart-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #8b6914, 0 4px 10px rgba(0,0,0,0.2);
}
.cart-btn i { font-size: 20px; }

.cart-btn.orange-cart {
  background: linear-gradient(180deg, #fb923c 0%, #f97316 50%, #c2410c 100%);
  color: #fff;
  border-color: #9a3412;
  box-shadow: 0 6px 0 #7c2d12, 0 8px 18px rgba(0,0,0,0.22);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.cart-btn.orange-cart:hover {
  box-shadow: 0 4px 0 #7c2d12, 0 6px 14px rgba(0,0,0,0.25);
}
.cart-btn.orange-cart:active {
  box-shadow: 0 2px 0 #7c2d12, 0 4px 10px rgba(0,0,0,0.25);
}

/* PAYMENT */
.price-pay {
  max-width: 220px;
  margin: 6px auto 0;
  opacity: 0.9;
}