/* ================================================================
   PROSTALIS — Estilos principales
   Tema: Azul noche profundo + Oro
   ================================================================ */

/* === Variables === */
:root {
  --bg:       #070d18;
  --bg-2:     #0a1525;
  --bg-3:     #0f1d30;
  --bg-card:  #122030;
  --bg-card2: #162840;

  --gold:     #c8a227;
  --gold-2:   #e8c04a;
  --gold-dim: rgba(200, 162, 39, 0.12);
  --green:    #1b9169;
  --green-2:  #25c28d;
  --green-dim: rgba(27, 145, 105, 0.12);
  --red:      #d94f4f;

  --text:     #ddd7cd;
  --text-2:   #8293a8;
  --text-3:   #4a5e72;
  --white:    #f3ece2;
  --border:   rgba(200, 162, 39, 0.15);
  --border-2: rgba(255,255,255,0.06);

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  --r:    10px;
  --r-sm: 6px;
  --r-lg: 20px;
  --r-xl: 32px;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.6);
  --glow-gold: 0 0 32px rgba(200,162,39,.25);
  --glow-green: 0 0 32px rgba(27,145,105,.25);

  --container: 1200px;
  --pad-section: clamp(64px, 10vw, 112px);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === Noise texture overlay === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* === Layout === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  position: relative;
  z-index: 1;
}

section { position: relative; overflow: hidden; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(14px, 2.5vw, 24px);
}
.section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 7vw, 72px);
  color: var(--text-2);
  font-size: 1.05rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0a0e14;
  box-shadow: 0 6px 28px rgba(200,162,39,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(200,162,39,.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 20px 52px;
  font-size: 1.1rem;
}

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-gold {
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,39,.3);
  color: var(--gold-2);
}
.badge-green {
  background: var(--green-dim);
  border: 1px solid rgba(27,145,105,.3);
  color: var(--green-2);
}

/* === Cards === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,39,.2);
  box-shadow: var(--shadow-lg);
}

/* === Forms === */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  color: var(--text);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,39,.12);
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(7, 13, 24, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--glow-green);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-text span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text); background: var(--border-2); }
.nav-cta {
  margin-left: 8px;
  padding: 9px 20px !important;
  background: var(--gold-dim) !important;
  border: 1px solid rgba(200,162,39,.3) !important;
  color: var(--gold) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #0a0e14 !important;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(7,13,24,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  padding: 16px 0 24px;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px clamp(20px,5vw,48px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-2);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--bg);
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65vw;
  height: 65vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(27,145,105,0.12) 0%,
    rgba(27,145,105,0.04) 45%,
    transparent 70%);
  border-radius: 50%;
}
.hero-bg-glow2 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(200,162,39,0.07) 0%,
    transparent 65%);
  border-radius: 50%;
}
.hero-grid-lines {
  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;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.hero-content { position: relative; z-index: 1; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.hero h1 {
  margin-bottom: 24px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  animation: fadeUp .7s .3s ease both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp .7s .4s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.hero-trust-item svg { color: var(--green-2); flex-shrink: 0; }

/* Product PNG image */
.hero-product-img-wrap {
  position: relative;
  animation: float 5s ease-in-out infinite;
  z-index: 2;
  width: clamp(140px, 18vw, 240px);
  flex-shrink: 0;
}
.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(27,145,105,0.3)) drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn .9s .2s ease both;
}
.capsule-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 32px 0;
}
.capsule-circle {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(27,145,105,0.1) 0%,
    rgba(27,145,105,0.04) 50%,
    transparent 70%);
  border: 1px solid rgba(27,145,105,0.08);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.capsule-circle-2 {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(200,162,39,0.07) 0%,
    transparent 70%);
  border: 1px solid rgba(200,162,39,0.08);
  animation: pulse-ring 4s 1s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.capsule-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.capsule-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  text-align: center;
  min-width: 90px;
  animation: fadeIn 1s ease both;
}
.capsule-stat .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-2);
  display: block;
  line-height: 1;
}
.capsule-stat .lbl {
  font-size: 0.68rem;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  padding: 0;
  background: linear-gradient(90deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border-2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-num .unit { color: var(--gold); }
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ================================================================
   PRELOADER
   ================================================================ */
.form-preloader {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 24, 0.88);
  backdrop-filter: blur(6px);
  border-radius: var(--r-xl);
  z-index: 20;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.form-preloader.active { display: flex; }
.preloader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(200, 162, 39, 0.18);
  border-top-color: var(--gold);
  border-right-color: var(--gold-2);
  animation: spin .75s linear infinite;
}
.preloader-text {
  font-size: 0.9rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   intl-tel-input — тёмная тема
   ================================================================ */
.iti { width: 100%; }
.iti__selected-dial-code { color: var(--text-2) !important; font-size: .9rem; }
.iti__flag-container { background: transparent; }
.iti__selected-flag {
  background: rgba(255,255,255,.04) !important;
  border-right: 1px solid var(--border-2);
  border-radius: var(--r) 0 0 var(--r);
  padding: 0 10px 0 12px !important;
}
.iti__selected-flag:hover,
.iti__selected-flag:focus { background: rgba(255,255,255,.07) !important; }
.iti input.form-control { padding-left: 90px !important; }
.iti__country-list {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r) !important;
  box-shadow: var(--shadow-lg) !important;
  color: var(--text) !important;
  max-height: 240px;
}
.iti__country:hover,
.iti__country--highlight { background: rgba(200,162,39,.1) !important; }
.iti__country-name { color: var(--text) !important; }
.iti__dial-code { color: var(--text-2) !important; }
.iti__divider { border-top-color: var(--border-2) !important; }
.iti__search-input {
  background: var(--bg) !important;
  border-bottom: 1px solid var(--border-2) !important;
  color: var(--text) !important;
  outline: none;
  padding: 8px 12px;
  font-size: .88rem;
}
.iti__search-input::placeholder { color: var(--text-3) !important; }

/* ================================================================
   PRODUCT VIDEO
   ================================================================ */
.product-video-section {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 48px rgba(200,162,39,.1), var(--shadow-lg);
  background: #000;
}
.video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.problem-intro {
  max-width: 720px;
  margin: 0 auto clamp(40px,7vw,72px);
  text-align: center;
}
.problem-stat-highlight {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.symptom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .3s, transform .3s;
}
.symptom-card:hover {
  border-color: rgba(217,79,79,.3);
  transform: translateY(-3px);
}
.symptom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(217,79,79,.1);
  border: 1px solid rgba(217,79,79,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.symptom-text h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.symptom-text p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

.consequences-box {
  background: linear-gradient(135deg, rgba(217,79,79,.08) 0%, rgba(217,79,79,.03) 100%);
  border: 1px solid rgba(217,79,79,.2);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  align-items: center;
}
.consequences-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--red);
  margin-bottom: 4px;
  grid-column: 1 / -1;
}
.consequence-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.consequence-item::before {
  content: '✗';
  width: 22px;
  height: 22px;
  background: rgba(217,79,79,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--red);
  flex-shrink: 0;
}

/* ================================================================
   PRODUCT INTRO
   ================================================================ */
.product-intro {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
}
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.product-badges { margin-bottom: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.product-content h2 { margin-bottom: 20px; }
.product-content p {
  color: var(--text-2);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.product-certif {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.certif-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
}
.certif-item svg { color: var(--gold); }

.product-visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--glow-gold);
}
.product-visual-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.product-stat-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-stat-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-stat-name { font-size: 0.85rem; color: var(--text-2); }
.product-stat-pct {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.progress-bar {
  height: 6px;
  background: var(--border-2);
  border-radius: 50px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold-2) 100%);
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ================================================================
   BENEFITS
   ================================================================ */
.benefits {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,39,.25);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--green-dim) 0%, rgba(27,145,105,0.05) 100%);
  border: 1px solid rgba(27,145,105,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ================================================================
   INGREDIENTS
   ================================================================ */
.ingredients {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.ingredient-card:hover { transform: translateY(-5px); border-color: rgba(200,162,39,.2); }
.ingredient-card:hover::before { transform: scaleX(1); }
.ingredient-emoji { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.ingredient-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}
.ingredient-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
}
.ingredient-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,39,.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================================
   CLINICAL RESULTS / TIMELINE
   ================================================================ */
.clinical {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.clinical-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: flex-start;
}
.clinical-content h2 { margin-bottom: 20px; }
.clinical-content p {
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}
.clinical-numbers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.clin-num {
  display: flex;
  align-items: center;
  gap: 16px;
}
.clin-num .n {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  line-height: 1;
}
.clin-num .d { font-size: 0.88rem; color: var(--text-2); line-height: 1.4; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:last-child .tl-line { display: none; }
.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  flex-shrink: 0;
}
.tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-green);
  z-index: 1;
}
.tl-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-2), transparent);
  margin: 4px 0;
  min-height: 24px;
}
.timeline-content {
  padding-top: 10px;
  flex: 1;
}
.tl-week {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-content p { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }

/* ================================================================
   DOCTOR SECTION
   ================================================================ */
.doctor {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
  position: relative;
}
.doctor::before {
  content: '"';
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  left: clamp(20px, 5vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 14rem);
  color: rgba(200,162,39,0.06);
  line-height: 1;
  pointer-events: none;
}
.doctor-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.doctor-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.doctor-quote em { font-style: normal; color: var(--gold); }
.doctor-profile {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px 12px 12px;
}
.doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.doctor-info { text-align: left; }
.doctor-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.doctor-title { font-size: 0.78rem; color: var(--text-2); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, border-color .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,39,.2);
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card2) 0%, var(--bg-3) 100%);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.author-meta { font-size: 0.78rem; color: var(--text-2); }
.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--green-2);
  margin-top: 2px;
}

/* ================================================================
   HOW TO ORDER — 3 STEPS
   ================================================================ */
.how-to-order {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.step-card:hover {
  border-color: rgba(200,162,39,.25);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0a0e14;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,162,39,.35);
}
.step-icon {
  font-size: 2rem;
  line-height: 1;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin: 0;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}
.step-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
  padding: 10px 14px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,39,.15);
  border-radius: var(--r-sm);
  font-size: 0.78rem;
  color: var(--gold);
  line-height: 1.45;
}
.step-tip svg { flex-shrink: 0; margin-top: 1px; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  padding-top: 60px;
  color: var(--text-3);
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-connector {
    padding: 0;
    transform: rotate(90deg);
    justify-self: center;
  }
}

/* ================================================================
   PRICING / ORDER
   ================================================================ */
.pricing {
  padding: var(--pad-section) 0;
  background: var(--bg-2);
}
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.pricing-left h2 { margin-bottom: 16px; }
.pricing-left > p {
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.7;
}
.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--green-dim);
  border: 1px solid rgba(27,145,105,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green-2);
  flex-shrink: 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--glow-gold);
  position: relative;
}
.pricing-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0a0e14;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.price-old {
  font-size: 1.3rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-new {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.price-new .currency { font-size: 1.6rem; vertical-align: super; }
.price-save {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,39,.3);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.countdown-wrap {
  margin-bottom: 24px;
}
.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  gap: 10px;
}
.countdown-unit {
  flex: 1;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 10px 6px 8px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-2);
  display: block;
  line-height: 1;
}
.countdown-lbl { font-size: 0.62rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

.stock-bar { margin-bottom: 24px; }
.stock-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 6px;
}
.stock-label strong { color: var(--red); }
.stock-progress { height: 6px; background: var(--border-2); border-radius: 50px; overflow: hidden; }
.stock-fill { height: 100%; background: var(--red); border-radius: 50px; width: 73%; }

.order-form { display: flex; flex-direction: column; gap: 0; }
.order-form .form-group { margin-bottom: 16px; }
.order-form .btn-primary { width: 100%; margin-top: 4px; }
.form-disclaimer {
  font-size: 0.74rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--green-2);
}
.form-success p { font-size: 0.9rem; color: var(--text-2); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section {
  padding: var(--pad-section) 0;
  background: var(--bg);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(200,162,39,.25); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-chevron {
  background: var(--gold-dim);
  transform: rotate(180deg);
}
.faq-chevron svg { color: var(--text-2); }
.faq-item.open .faq-chevron svg { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.faq-more {
  text-align: center;
  margin-top: 32px;
}

/* ================================================================
   TRUST SECTION
   ================================================================ */
.trust-section {
  padding: 56px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { padding: 20px; }
.trust-icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.trust-item p { font-size: 0.78rem; color: var(--text-2); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-2);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-3);
  max-width: 700px;
  text-align: right;
  line-height: 1.5;
}

/* ================================================================
   INNER PAGES
   ================================================================ */
.page-hero {
  padding: calc(72px + clamp(40px, 7vw, 80px)) 0 clamp(40px, 6vw, 64px);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-2);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-2); max-width: 600px; }
.page-content {
  padding: var(--pad-section) 0;
  max-width: 800px;
}
.page-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 36px 0 14px;
  color: var(--white);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.page-content ul { padding-left: 24px; list-style: disc; }
.page-content a { color: var(--gold); text-decoration: underline; }

/* FAQ page specific */
.faq-page-section { padding: var(--pad-section) 0; }
.faq-category { margin-bottom: 56px; }
.faq-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  padding: var(--pad-section) 0;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-2); margin-bottom: 32px; font-size: 0.95rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 18px 22px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(200,162,39,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-item-text p { font-size: 0.85rem; color: var(--text-2); margin: 0; }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; }
.contact-form textarea.form-control { resize: vertical; min-height: 120px; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50%       { transform: translateY(-18px) rotate(-15deg); }
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(1.04); }
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .product-inner { grid-template-columns: 1fr; }
  .clinical-inner { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-disclaimer { text-align: left; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .consequences-box { grid-template-columns: 1fr; padding: 24px; }
  .consequences-box .consequences-title { grid-column: 1; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px 24px; }
  .countdown-num { font-size: 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

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

/* ================================================================
   PRODUCT GALLERY SLIDER
   ================================================================ */
.product-gallery {
  padding: var(--pad-section) 0;
  background: var(--bg-3);
}
.gallery-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.slider-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-card2);
}
.slide-placeholder svg { opacity: 0.25; }
.slide-placeholder span { opacity: 0.4; }

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
  font-size: 1.4rem;
  line-height: 1;
}
.slider-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(200,162,39,.4);
  color: var(--gold);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ================================================================
   MOBILE HERO IMAGE
   ================================================================ */
.hero-visual-mobile {
  display: none;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.hero-visual-mobile img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(27,145,105,0.25)) drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}
.hero-visual-mobile-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero-visual-mobile { display: block; }
  .gallery-slider { flex-direction: column; }
  .slider-btn { display: none; }
  .slider-viewport { width: 100%; }
}
@media (min-width: 1025px) {
  .hero-visual-mobile { display: none; }
}
