/* ═══════════════════════════════════════════
   VELNA DESIRE PULSE GOLD — style.css
   Bosmera-matching layout
═══════════════════════════════════════════ */

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

:root {
  --gold:     #B8860B;
  --gold-lt:  #D4A017;
  --gold-bg:  #FDF8EC;
  --dark:     #1A1208;
  --dark2:    #2C1E0A;
  --green:    #1E5631;
  --green-lt: #E8F5EF;
  --text:     #1A1A1A;
  --muted:    #6B6B6B;
  --border:   #E8D9A0;
  --red:      #C0392B;
  --white:    #FFFFFF;
  --shadow:   0 2px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', 'Noto Sans Devanagari', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
}
.topbar-inner {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 9px 0;
  animation: marquee 22s linear infinite;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
.header {
  background: var(--dark);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.logo-text       { font-size: 17px; font-weight: 700; color: var(--gold-lt); line-height: 1.15; }
.logo-text small { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.45); }
.header-cta {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(184,134,11,0.4);
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.88; }

/* ── HERO IMAGE SLIDER ──
   Clean, full-width, NO overlay — images carry their own text */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f0e8;
  line-height: 0;
}
.hero-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.hero-track img {
  min-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  max-height: 560px;
}
/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.82);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  z-index: 5;
  transition: background 0.2s;
  line-height: 1;
}
.hero-arrow:hover { background: var(--gold-lt); color: #fff; }
.hero-arrow.prev  { left: 12px; }
.hero-arrow.next  { right: 12px; }
/* Dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 0 12px;
  background: var(--white);
  line-height: 1;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.hero-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ── PRODUCT INTRO (below slider, like Bosmera) ── */
.prod-intro {
  background: var(--white);
  padding: 28px 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.prod-intro-name {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1.2;
}
.prod-intro-name em { font-style: normal; color: var(--gold); }
.prod-intro-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.prod-intro-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.pi-badge {
  background: var(--green-lt);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid #c3e6cb;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--red);
  color: #fff;
  padding: 11px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.timer-group {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0,0,0,0.25);
  padding: 3px 10px;
  border-radius: 6px;
}
.tbox { font-size: 18px; font-weight: 800; min-width: 26px; text-align: center; }
.tsep { font-size: 18px; font-weight: 800; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 26px; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── SECTIONS ── */
.section       { padding: 56px 20px; }
.section-alt   { background: var(--gold-bg); }
.section-dark  { background: var(--dark); }
.section-light { background: #f9f6ee; }
.container     { max-width: 940px; margin: 0 auto; }
.text-center   { text-align: center; }

.sec-eyebrow {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.section-dark .sec-eyebrow {
  background: rgba(212,160,23,0.18);
  color: var(--gold-lt);
}
.sec-title {
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--text);
}
.section-dark .sec-title { color: #fff; }
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}
.section-dark .sec-sub { color: rgba(255,255,255,0.55); }

/* ── BENEFITS IMAGE (full-width, after intro) ── */
.benefits-img-slider {
  position: relative;
  overflow: hidden;
  background: var(--gold-bg);
}
.benefits-track {
  display: flex;
  transition: transform 0.5s ease;
}
.benefits-track img {
  min-width: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 480px;
  background: var(--gold-bg);
}
.benefits-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 0 14px;
  background: var(--gold-bg);
}
.bdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.bdot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ── ORDER SECTION (Bosmera style) ── */
.order-section {
  background: var(--dark);
  padding: 52px 20px;
}
.order-title {
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
}
.order-sub {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

/* Product image side */
.order-img-wrap {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
}
.badge-50 {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 3px 14px rgba(192,57,43,0.5);
}
.badge-50 small { font-size: 9px; font-weight: 700; }
.order-img-wrap img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 4px;
}
.price-new { font-size: 34px; font-weight: 800; color: var(--gold-lt); }
.price-old { font-size: 18px; color: rgba(255,255,255,0.35); text-decoration: line-through; }
.badge-off {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
}
.prod-order-name { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.prod-order-sub  { color: rgba(255,255,255,0.42); font-size: 11px; margin-bottom: 14px; }

/* Pack buttons */
.pack-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 7px; text-align: left; }
.pack-row { display: flex; gap: 8px; margin-bottom: 14px; }
.pack-btn {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(184,134,11,0.28);
  border-radius: 9px;
  padding: 9px 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
.pack-btn.active { border-color: var(--gold-lt); background: rgba(212,160,23,0.14); }
.save-tag {
  position: absolute;
  top: -7px; right: -5px;
  background: var(--gold);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 7px;
  white-space: nowrap;
}
/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.ti {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  padding: 4px 9px;
  border-radius: 50px;
}
/* Stock */
.stock-wrap { margin-top: 14px; }
.stock-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}
.stock-track { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.stock-fill  { height: 100%; width: 78%; background: linear-gradient(90deg, var(--gold-lt), var(--red)); border-radius: 3px; }

/* Form side */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
}
.form-head {
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.form-subh {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}
.form-grp  { margin-bottom: 13px; }
.form-lbl  { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.form-inp, .form-sel, .form-ta {
  width: 100%;
  background: #f9f7f0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  appearance: auto;
}
.form-inp:focus, .form-sel:focus, .form-ta:focus { border-color: var(--green); background: #fff; }
.form-inp::placeholder, .form-ta::placeholder { color: #bbb; }
.form-ta { resize: vertical; min-height: 76px; }
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--green), #2d7a4f);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(30,86,49,0.35);
  transition: opacity 0.2s;
  animation: glow-green 2.5s ease-in-out infinite;
}
.submit-btn:hover { opacity: 0.9; }
@keyframes glow-green {
  0%,100% { box-shadow: 0 4px 16px rgba(30,86,49,0.35); }
  50%      { box-shadow: 0 4px 28px rgba(30,86,49,0.65); }
}
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 9px; }

/* ── CERT IMAGE ROW ── */
.cert-img-strip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 14px;
}
.cert-img-strip img { width: 100%; display: block; }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(212,160,23,0.5); }
.why-icon  { font-size: 26px; flex-shrink: 0; }
.why-title { font-size: 14px; font-weight: 700; color: var(--gold-lt); margin-bottom: 4px; }
.why-desc  { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── HOW TO USE IMAGE ── */
.htu-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.htu-img img { width: 100%; display: block; }

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 14px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(184,134,11,0.4);
}
.step-icon  { font-size: 28px; margin-bottom: 8px; }
.step-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.step-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── MARQUEE TRUST STRIP ── */
.marquee-strip {
  background: var(--green);
  overflow: hidden;
  padding: 0;
  line-height: 0;
}
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 12px 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.marquee-inner .dot-sep { color: rgba(255,255,255,0.3); font-size: 16px; }

/* ── REVIEWS ── */
.rating-summary-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.rating-big-num  { font-size: 52px; font-weight: 800; color: var(--text); line-height: 1; }
.rating-stars-big { color: #F4A023; font-size: 20px; margin: 4px 0; }
.rating-cnt      { font-size: 11px; color: var(--muted); }
.rbar-list       { flex: 1; min-width: 160px; }
.rbar-row        { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.rbar-lbl        { font-size: 11px; color: var(--muted); width: 22px; text-align: right; flex-shrink: 0; }
.rbar-track      { flex: 1; height: 6px; background: #f0e8c8; border-radius: 3px; overflow: hidden; }
.rbar-fill       { height: 100%; background: #F4A023; border-radius: 3px; }
.rbar-pct        { font-size: 11px; color: var(--muted); width: 30px; flex-shrink: 0; }

/* Review slider */
.rev-viewport { overflow: hidden; }
.rev-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s ease;
}
.rev-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: var(--shadow);
  height: 100%;
}
.rev-stars  { color: #F4A023; font-size: 14px; margin-bottom: 8px; }
.rev-text   { font-size: 13px; color: var(--text); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.rev-meta   { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rev-name  { font-size: 13px; font-weight: 700; }
.rev-loc   { font-size: 11px; color: var(--muted); }
.rev-badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
  margin-top: 3px;
}
.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.rev-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--green);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.rev-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.rev-dots-wrap { display: flex; gap: 6px; }
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: all 0.25s;
}
.rev-dot.active { background: var(--green); transform: scale(1.3); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 17px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 12px;
}
.faq-btn:hover { color: var(--green); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-ans { max-height: 220px; padding-bottom: 16px; }

/* ── FINAL CTA ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 52px 20px;
  text-align: center;
}
.cta-banner h2 { color: #fff; font-size: clamp(20px,3vw,28px); margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 24px; }

/* ── BTN GOLD ── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(184,134,11,0.45);
  animation: glow 2.5s ease-in-out infinite;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.9; }
@keyframes glow {
  0%,100% { box-shadow: 0 4px 20px rgba(184,134,11,0.45); }
  50%      { box-shadow: 0 4px 34px rgba(184,134,11,0.75); }
}

/* ── FOOTER ── */
.footer {
  background: #0E0A03;
  color: rgba(255,255,255,0.42);
  padding: 32px 20px;
  text-align: center;
}
.footer-logo  { font-size: 18px; font-weight: 700; color: var(--gold-lt); margin-bottom: 14px; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-links a { color: rgba(255,255,255,0.42); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--gold-lt); }
.disclaimer { font-size: 11px; max-width: 680px; margin: 0 auto 12px; line-height: 1.75; }
.footer-bottom { font-size: 10px; color: rgba(255,255,255,0.2); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  z-index: 800;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.25);
}
.sticky-info { color: #fff; }
.sticky-info strong { display: block; font-size: 14px; font-weight: 800; }
.sticky-info small  { font-size: 11px; opacity: 0.75; }
.sticky-btn {
  background: var(--gold-lt);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .order-grid   { grid-template-columns: 1fr; }
  .sticky-bar   { display: flex; }
  .hero-track img { aspect-ratio: 4/3; max-height: 420px; }
  .rev-slide    { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 480px) {
  .stat-item  { min-width: 50%; }
  .rev-slide  { flex: 0 0 100%; }
  .hero-track img { aspect-ratio: 1/1; max-height: 360px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Fade in animation */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
