/* ============================================
   ARCTIC BLAST — MAIN STYLESHEET
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- VARIABLES ---- */
:root {
  --navy: #0A3B6C;
  --navy-d: #062646;
  --navy-l: #11569c;
  --navy-xl: #1a6bc2;
  --pale: #EAF3F8;
  --pale-d: #d3e6f2;
  --white: #ffffff;
  --red: #BC0028;
  --red-d: #8e001e;
  --red-l: #e0123f;
  --gold: #F0B429;
  --gold-d: #c98f10;
  --ink: #16232f;
  --ink-soft: #4a5b6b;
  --line: #dde7ee;
  --success: #1d8a4e;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10, 59, 108, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 59, 108, 0.14);
  --shadow-lg: 0 20px 50px rgba(10, 59, 108, 0.20);
  --container: 1180px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- UTILITIES ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.sec-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(188, 0, 40, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sec-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.sec-head { text-align: center; margin-bottom: 48px; }

.btn-green, .btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(188, 0, 40, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn-green:hover, .btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(188, 0, 40, 0.45);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--navy-d);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  padding: 20px 48px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(201, 143, 16, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); }

.btn-sub { display: block; font-size: 12px; opacity: 0.85; margin-top: 6px; font-weight: 600; letter-spacing: 0.03em; }

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy-d);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px 16px;
}
.topbar span { color: var(--gold); font-weight: 800; }
.topbar .sep { margin: 0 10px; opacity: 0.5; }
@media (max-width: 640px) { .topbar .sep:nth-of-type(2), .topbar .sep:nth-of-type(3) { display: none; } .topbar .hide-mob { display: none; } }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pale);
  border-radius: 10px;
}
.logo-icon img { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); }
.logo-text .name em { color: var(--red); font-style: normal; }
.logo-text .tag { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-desktop a.active, .nav-desktop a:hover { color: var(--red); }
.nav-desktop a.active::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red);
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.h-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: 14.5px;
  padding: 12px 24px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(188,0,40,0.3);
}
.h-btn .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.25s; }
.hamburger.o span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.o span:nth-child(2) { opacity: 0; }
.hamburger.o span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mob-menu.show { display: flex; }
.mob-menu a {
  padding: 14px 24px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.mob-menu .mob-cta { padding: 18px 24px; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-cta .h-btn span.full { display: none; }
}
@media (min-width: 861px) { .mob-menu { display: none !important; } }

/* ---- MEDICAL REVIEW STRIP ---- */
.review-strip { background: var(--pale); border-bottom: 1px solid var(--pale-d); padding: 9px 0; }
.review-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.review-strip-text { font-size: 12.5px; color: var(--navy); font-weight: 500; }
.review-strip-text strong { font-weight: 800; }
.review-strip-date { font-size: 12px; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
@media (max-width: 640px) { .review-strip-inner { justify-content: center; text-align: center; } .review-strip-date { display: none; } }

/* ---- HERO ---- */
.hero { padding: 56px 0 70px; background: linear-gradient(180deg, var(--pale) 0%, #ffffff 100%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.hero-img-col { order: 1; display: flex; justify-content: center; }
.hero-text-col { order: 2; }

.hero-img-wrap { position: relative; max-width: 460px; }
.hero-img-wrap img {
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(10,59,108,0.25));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge-float {
  position: absolute;
  bottom: 6px;
  right: -10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge-float .b-num { font-family: var(--font-display); font-size: 20px; color: var(--gold); }

.official-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--pale-d);
  color: var(--navy);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.official-pill .dot-live { width: 7px; height: 7px; background: var(--success); border-radius: 50%; }

.hero-text-col h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 800;
}
.hero-text-col h1 em { font-style: normal; color: var(--red); }
.hero-text-col h1 strong { color: var(--navy-l); }

.hero-desc { font-size: 18px; color: var(--ink-soft); margin-bottom: 22px; max-width: 540px; }

.hero-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero-stars .stars { color: var(--gold-d); font-size: 18px; letter-spacing: 2px; }
.hero-stars .stars-txt { font-size: 14px; color: var(--ink-soft); font-weight: 600; }

.hero-cta-row { margin-bottom: 28px; }
.hero-cta-row .btn-red { width: 100%; max-width: 380px; font-size: 19px; padding: 20px 32px; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--pale-d);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
}
.trust-pill img { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-img-col { order: 1; }
  .hero-text-col { order: 2; }
  .hero-desc, .official-pill { margin-left: auto; margin-right: auto; }
  .hero-stars { justify-content: center; }
  .hero-cta-row .btn-red { margin: 0 auto; }
  .trust-pills { justify-content: center; }
}

/* ---- REVIEWS SECTION ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pale-d); }
.review-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-loc { font-size: 12.5px; color: var(--ink-soft); }
.review-stars { color: var(--gold-d); font-size: 14px; margin-bottom: 4px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(29,138,78,0.1); color: var(--success);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.review-headline { font-weight: 700; color: var(--ink); margin-bottom: 8px; font-size: 15.5px; }
.review-body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---- WHY CHOOSE ---- */
.why-choose-section { background: var(--pale); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-5px); }
.why-card img { width: 84px; height: 84px; margin: 0 auto 18px; }
.why-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

.why-extra-card { max-width: 720px; margin: 36px auto 0; background: var(--white); border-radius: var(--radius-md); padding: 30px 32px; text-align: center; box-shadow: var(--shadow-sm); }
.why-extra-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-extra-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* ---- PRICING SECTIONS ---- */
.pricing-section { background: var(--white); }
.pricing-badge-img { display: block; max-width: 360px; margin: 0 auto 36px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
.price-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid var(--line);
  background: var(--white);
}
.price-card.featured { border-color: var(--gold); transform: scale(1.03); box-shadow: var(--shadow-md); }
.price-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: var(--shadow-lg); }
.price-card img { width: 100%; }
.price-card .order-strip {
  text-align: center; padding: 14px; background: var(--navy); color: var(--white);
  font-weight: 800; font-size: 14.5px; letter-spacing: 0.03em;
}
.price-card.featured .order-strip { background: var(--red); }

.pricing-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ink-soft); }
.pricing-note strong { color: var(--navy); }

.pricing-combo-link { display: block; max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.25s, box-shadow 0.25s; }
.pricing-combo-link:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-combo-img { width: 100%; display: block; }

@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 380px; } .price-card.featured { transform: none; order: -1; } }

/* ---- BONUSES ---- */
.bonuses-section { background: linear-gradient(160deg, var(--navy-d), var(--navy)); color: var(--white); }
.bonuses-section .sec-tag { background: rgba(255,255,255,0.12); color: var(--gold); }
.bonuses-section .sec-h, .bonuses-section .sec-sub { color: var(--white); }
.bonuses-section .sec-sub { color: rgba(255,255,255,0.75); }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bonus-card { text-align: center; }
.bonus-card img { max-width: 200px; margin: 0 auto 22px; filter: drop-shadow(0 16px 24px rgba(0,0,0,0.35)); }
.bonus-card .retail { font-size: 14px; text-decoration: line-through; opacity: 0.55; margin-bottom: 4px; }
.bonus-card .free-tag { color: var(--gold); font-weight: 800; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px; }
.bonus-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.bonus-card p { font-size: 14.5px; color: rgba(255,255,255,0.75); }
.bonus-total { text-align: center; margin-top: 44px; font-size: 18px; }
.bonus-total strong { color: var(--gold); font-size: 24px; }

@media (max-width: 860px) { .bonus-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---- WHAT IS ---- */
.what-is-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.what-is-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.what-is-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); margin-bottom: 20px; font-weight: 800; }
.what-is-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.what-is-text p:last-child { margin-bottom: 0; }
.what-is-text strong { color: var(--navy); }

@media (max-width: 860px) { .what-is-grid { grid-template-columns: 1fr; gap: 32px; } .what-is-img { order: -1; max-width: 360px; margin: 0 auto; } }

/* ---- HOW IT WORKS ---- */
.how-works-section { background: var(--pale); }
.how-explainer { max-width: 800px; margin: 0 auto 50px; }
.how-explainer p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; line-height: 1.7; }
.how-explainer p:last-child { margin-bottom: 0; }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.how-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px 20px;
  text-align: center; position: relative; box-shadow: var(--shadow-sm);
}
.how-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; background: var(--red); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; box-shadow: 0 6px 14px rgba(188,0,40,0.4);
}
.how-icon { font-size: 34px; margin: 10px 0 14px; }
.how-card h3 { font-size: 15.5px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--ink-soft); }

@media (max-width: 1024px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; } }
@media (max-width: 640px) { .how-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 36px; } }

/* ---- ADVANTAGE ---- */
.advantage-intro { max-width: 740px; margin: 0 auto 44px; text-align: center; }
.advantage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; max-width: 980px; margin: 0 auto; }
.advantage-item { display: flex; gap: 16px; align-items: flex-start; }
.adv-dot {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--pale); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
}
.advantage-item h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.advantage-item p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 760px) { .advantage-list { grid-template-columns: 1fr; } }

/* ---- INGREDIENTS ---- */
.ingredients-section { background: var(--pale); }
.ingredients-intro { max-width: 740px; margin: 0 auto 44px; text-align: center; }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
.ing-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform 0.25s;
}
.ing-card:hover { transform: translateY(-4px); }
.ing-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.ing-num {
  width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px;
  flex-shrink: 0; transition: transform 0.3s;
}
.ing-card:hover .ing-num { transform: scale(1.15) rotate(-6deg); }
.ing-top h3 { font-size: 17px; font-weight: 800; color: var(--navy); }
.ing-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.65; }
.ing-benefits { margin-bottom: 14px; }
.ing-benefits li { font-size: 13.5px; color: var(--ink-soft); padding-left: 20px; position: relative; margin-bottom: 6px; line-height: 1.5; }
.ing-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--navy); font-weight: 800; }
.ing-tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.03em;
  background: rgba(10,59,108,0.08); color: var(--navy); padding: 4px 12px; border-radius: 999px;
}

.science-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.science-box { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
.science-box .sci-icon { font-size: 30px; margin-bottom: 12px; }
.science-box h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.science-box p { font-size: 13px; color: var(--ink-soft); }

.science-article { max-width: 760px; margin: 0 auto; }
.science-article h3 { font-family: var(--font-display); font-size: 21px; color: var(--navy); margin: 30px 0 12px; font-weight: 800; }
.science-article h3:first-child { margin-top: 0; }
.science-article p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 0; }
.science-bottom-line { background: var(--pale); border-left: 4px solid var(--navy); border-radius: var(--radius-md); padding: 26px 28px; margin-top: 36px; }
.science-bottom-line h4 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; font-weight: 800; }
.science-bottom-line p { font-size: 15px; color: var(--ink-soft); margin-bottom: 0; }

@media (max-width: 860px) { .ingredients-grid, .science-grid { grid-template-columns: 1fr; } }
@media (min-width: 861px) and (max-width: 1024px) { .ingredients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- BENEFITS ---- */
.benefits-section { background: linear-gradient(160deg, var(--navy), var(--navy-l)); color: var(--white); }
.benefits-section .sec-tag { background: rgba(255,255,255,0.12); color: var(--gold); }
.benefits-section .sec-h { color: var(--white); }
.benefits-intro { max-width: 700px; margin: 0 auto 44px; text-align: center; color: rgba(255,255,255,0.8); font-size: 17px; }

.benefits-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto 56px; }
.benefit-detail-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 24px; position: relative; }
.bd-num { position: absolute; top: -14px; left: 20px; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--navy-d); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.benefit-detail-card h4 { font-size: 15.5px; font-weight: 800; color: var(--white); margin: 10px 0 8px; }
.benefit-detail-card p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.benefits-checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 36px; max-width: 980px; margin: 0 auto; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--navy-d); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; margin-top: 2px;
}
.benefit-item p { font-size: 15.5px; color: rgba(255,255,255,0.92); }

@media (max-width: 760px) { .benefits-checklist { grid-template-columns: 1fr; } .benefits-detail-grid { grid-template-columns: 1fr; } }
@media (min-width: 761px) and (max-width: 1024px) { .benefits-detail-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- GUARANTEE ---- */
.guarantee-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.guarantee-img { text-align: center; }
.guarantee-img img { max-width: 280px; margin: 0 auto; }
.guarantee-text h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); color: var(--navy); margin-bottom: 18px; font-weight: 800; }
.guarantee-text p { color: var(--ink-soft); margin-bottom: 14px; font-size: 16.5px; }
.guarantee-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.g-pill {
  background: var(--pale); color: var(--navy); font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: 999px;
}

@media (max-width: 860px) { .guarantee-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; } .guarantee-pills { justify-content: center; } }

/* ---- MEDICAL REVIEWER BIO ---- */
.reviewer-section { background: var(--pale); padding: 56px 0; }
.reviewer-card {
  max-width: 760px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
.reviewer-photo-wrap { flex-shrink: 0; }
.reviewer-initials {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-l));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  box-shadow: var(--shadow-sm);
}
.reviewer-label { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.reviewer-info h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); font-weight: 800; margin-bottom: 4px; }
.reviewer-cred { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; margin-bottom: 14px; }
.reviewer-bio { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 640px) {
  .reviewer-card { flex-direction: column; align-items: center; text-align: center; padding: 30px 24px; }
}

/* ---- FAQ ---- */
.faq-section { background: var(--pale); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md); margin-bottom: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 16px;
}
.faq-q .plus { font-size: 22px; color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 26px 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ---- FINAL CTA ---- */
.final-cta-section { background: linear-gradient(160deg, var(--navy-d), var(--navy)); color: var(--white); text-align: center; }
.urgency-box {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(188,0,40,0.18); border: 1px solid rgba(188,0,40,0.4);
  color: #ff8fa3; font-weight: 700; font-size: 13.5px;
  padding: 10px 22px; border-radius: 999px; margin-bottom: 28px;
}
.final-cta-section h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.final-cta-section .sub { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 600px; margin: 0 auto 36px; }
.final-order-img { max-width: 320px; margin: 0 auto 28px; cursor: pointer; transition: transform 0.25s; }
.final-order-img:hover { transform: scale(1.04); }
.price-note { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.price-note strong { color: var(--gold); }
.payment-logos { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.payment-logos img { height: 26px; border-radius: 4px; background: #fff; padding: 4px 6px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-d); color: rgba(255,255,255,0.7); padding: 56px 0 28px; font-size: 14px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.2s; font-size: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); }
.footer-logo .name em { color: var(--gold); font-style: normal; }
.footer-brand p { max-width: 280px; font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }

@media (max-width: 760px) { .footer-top { flex-direction: column; gap: 28px; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--red); padding: 14px 20px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.sticky-mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-weight: 800; font-size: 15px; }
@media (max-width: 760px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 66px; }
}

/* ---- LEGAL PAGES ---- */
.page-hero { background: linear-gradient(160deg, var(--navy-d), var(--navy)); color: var(--white); padding: 70px 0 50px; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 15px; }
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-wrap h2 { font-family: var(--font-display); color: var(--navy); font-size: 24px; margin: 36px 0 14px; font-weight: 800; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { color: var(--ink-soft); margin-bottom: 16px; font-size: 15.5px; }
.legal-wrap ul { margin: 0 0 16px 0; }
.legal-wrap li { color: var(--ink-soft); margin-bottom: 8px; font-size: 15.5px; padding-left: 22px; position: relative; }
.legal-wrap li::before { content: "—"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.legal-note { background: var(--pale); border-radius: var(--radius-md); padding: 22px 26px; font-size: 14px; color: var(--ink-soft); margin: 28px 0; border-left: 4px solid var(--navy); }
.legal-cta-box {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  color: var(--white);
  margin-top: 50px;
}
.legal-cta-box h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 12px; }
.legal-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; max-width: 1100px; margin: 0 auto; padding: 64px 24px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { font-family: var(--font-display); color: var(--navy); font-size: 24px; margin-bottom: 22px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--ink); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit-btn {
  width: 100%; background: var(--red); color: #fff; font-weight: 800; font-size: 16px;
  padding: 16px; border-radius: 999px; box-shadow: 0 10px 24px rgba(188,0,40,0.3);
  transition: transform 0.2s;
}
.contact-submit-btn:hover { transform: translateY(-2px); }
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--pale); border-radius: var(--radius-md); padding: 22px; }
.info-card h4 { color: var(--navy); font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.info-card p { color: var(--ink-soft); font-size: 14px; }
.info-card a { color: var(--navy); font-weight: 700; }
.faq-cta-box { background: var(--navy); color: #fff; border-radius: var(--radius-md); padding: 24px; text-align: center; }
.faq-cta-box p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 14px; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; padding: 44px 20px; } }

/* ---- ACCESSIBILITY ---- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--navy-l);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
