/* ==========================================================================
   ÉLANOR SHAPE — Landing Page
   Stile luxury editorial · Mobile-first responsive
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  --bg: #FDFCFA;
  --bg-alt: #F6F1E7;
  --ink: #1A1512;
  --ink-soft: #4B4238;
  --muted: #7D7266;
  --line: #ECE4D3;

  --red: #DC2626;
  --red-dark: #B91C1C;
  --green: #0F7A4E;
  --green-dark: #0B5F3D;
  --purple: #6B21A8;
  --gold: #C7A24C;
  --gold-dark: #8E6E1A;
  --rose: #FDECEE;
  --rose-ink: #B91C1C;
  --sage: #E7F0E4;
  --lavender: #EFE1F6;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 6px rgba(26, 21, 18, 0.06);
  --shadow: 0 10px 30px rgba(26, 21, 18, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 21, 18, 0.15);

  --top-bar-h: 42px;
  --header-h: 68px;

  --container: 1140px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: calc(var(--top-bar-h) + var(--header-h));
  padding-bottom: 60px; /* room for mobile sticky bar */
  width: 100%;
  max-width: 100vw;
  min-width: 0;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
em { font-style: italic; }
strong { font-weight: 700; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- 3. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 760px; }

/* ---------- 4. COLOR HELPERS ---------- */
.c-red { color: var(--red); }
.c-green { color: var(--green); }
.c-purple { color: var(--purple); }
.c-gold { color: var(--gold-dark); }
.c-gray { color: var(--ink-soft); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--gold {
  background: linear-gradient(135deg, #d8b063 0%, #9d7f2c 100%);
  color: #fff;
}
.btn--block { width: 100%; padding: 18px 22px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--lg { padding: 18px 34px; font-size: 15px; }

/* ---------- 6. BADGES ---------- */
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}
.badge > * { vertical-align: middle; }
.badge--rose  { background: var(--rose);     color: var(--rose-ink); }
.badge--green { background: var(--sage);     color: var(--green-dark); }
.badge--purple{ background: var(--lavender); color: var(--purple); }

/* ---------- 7. TOP URGENCY BAR ---------- */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--top-bar-h);
  background: var(--red);
  color: #fff;
  z-index: 60;
  display: flex;
  align-items: center;
}
.urgency-bar__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.urgency-bar__left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.urgency-bar__icon { font-weight: 800; }
.urgency-bar__pill {
  background: #fff;
  color: var(--red);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
}
.urgency-bar__label { opacity: .95; }
.urgency-bar__right { display: flex; align-items: center; gap: 6px; font-weight: 800; }
@media (max-width: 640px) {
  .urgency-bar__label { display: none; }
}

/* ---------- 8. HEADER ---------- */
.site-header {
  position: fixed;
  top: var(--top-bar-h);
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header__logo img { height: 34px; width: auto; }
@media (min-width: 768px) { .site-header__logo img { height: 40px; } }
.site-nav { display: none; gap: 32px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.site-nav a { transition: color .2s; }
.site-nav a:hover { color: var(--ink); }
@media (min-width: 768px) { .site-nav { display: flex; } }
@media (max-width: 480px) {
  .site-header .btn { padding: 8px 12px; font-size: 11px; }
  .urgency-bar__inner { font-size: 11px; }
  .urgency-bar__pill { padding: 1px 6px; font-size: 11px; }
}

/* ---------- 9. HERO ---------- */
.hero { padding: 40px 0 20px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(220,38,38,.05), transparent 70%);
  pointer-events: none;
}
.hero__intro { text-align: center; margin-bottom: 32px; }
.hero__title { margin: 20px 0 20px; }
.hero__line { display: block; }
.hero__line--sm { font-size: clamp(12px, 2vw, 20px); }
.hero__line--md { font-size: clamp(16px, 3.4vw, 32px); margin-top: 6px; }
.hero__line--lg { font-size: clamp(18px, 4.6vw, 46px); }
.hero__line--xl { font-size: clamp(22px, 6.4vw, 64px); margin: 6px 0; letter-spacing: -0.02em; }
.hero__title { word-wrap: break-word; overflow-wrap: break-word; hyphens: none; }
@media (max-width: 380px) {
  .hero__line--xl { font-size: 20px; }
}
.hero__lead {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-soft);
  line-height: 1.65;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-row li { display: inline-flex; align-items: center; gap: 6px; }
.ti { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 6px; font-size: 12px; }
.ti--rose   { background: var(--rose);     color: var(--rose-ink); }
.ti--purple { background: var(--lavender); color: var(--purple); }
.ti--green  { background: var(--sage);     color: var(--green-dark); }
.ti--red    { background: var(--rose);     color: var(--red); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: 40px; }
}

/* Before/After card (Mara) */
.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f0e6d1;
  aspect-ratio: 4/3;
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-card__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
}
.ba-card__name { font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.ba-card__meta { font-size: 12px; opacity: .8; margin-top: 2px; }
.ba-card__result {
  text-align: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--red);
}
.ba-card__result-value { font-family: var(--serif); font-weight: 900; font-size: 24px; line-height: 1; }
.ba-card__result-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; opacity: .9; margin-top: 3px; }

/* Trust grid (3 cards) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.trust-grid__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tg-icon { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 10px; font-size: 16px; margin-bottom: 6px; }
.tg-icon--rose  { background: var(--rose);     color: var(--rose-ink); }
.tg-icon--purple{ background: var(--lavender); color: var(--purple); }
.tg-icon--red   { background: var(--rose);     color: var(--red); }
.tg-title { font-size: 11px; font-weight: 800; }
.tg-sub { font-size: 10px; color: var(--muted); margin-top: 2px; }

.live-viewers {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--rose);
  color: var(--rose-ink);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(220,38,38,.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* ---------- 10. OFFER CARD (form) ---------- */
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
}
@media (min-width: 768px) { .offer-card { padding: 32px; } }
.offer-card__badge {
  display: block;
  text-align: center;
  background: var(--rose);
  color: var(--rose-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offer-card__product {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  background: var(--bg-alt);
}
.offer-card__title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 8px;
}
.offer-card__hint { text-align: center; font-size: 12px; color: var(--muted); margin-top: 6px; }

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 6px 0;
}
.price__old { text-decoration: line-through; color: var(--muted); font-size: 18px; }
.price__new { font-family: var(--serif); font-weight: 900; font-size: 40px; color: var(--ink); }
.price__save {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.stock-bar { margin: 18px 0; }
.stock-bar__labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stock-bar__warn { color: var(--red); }
.stock-bar__pct { color: var(--muted); }
.stock-bar__track {
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.stock-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #f87171);
}

/* Form fields */
.order-form { display: flex; flex-direction: column; gap: 12px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fafafa;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,122,78,.15);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}

.mini-countdown {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--rose);
  color: var(--rose-ink);
}
.mini-countdown__label { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 8px; }
.mini-countdown__row { display: inline-flex; align-items: center; gap: 8px; }
.mini-countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mini-countdown__box {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  min-width: 48px;
}
.mini-countdown__unit span { font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }
.mini-countdown__sep { font-family: var(--serif); font-weight: 900; font-size: 22px; color: var(--red); }

/* LinkStorm iframe wrapper */
.linkstorm-frame {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fafafa;
  border: 1px solid var(--line);
  min-height: 600px;
}
.linkstorm-frame iframe { width: 100%; min-height: 600px; }

.fine-print { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.55; }
.form-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- 11. TICKER ---------- */
.ticker {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
}
.ticker--green { background: var(--green); }
.ticker__track {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: ticker 30s linear infinite;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.ticker__track span { flex: 0 0 auto; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 12. STATS ---------- */
.stats { padding: 48px 0; background: #F8F3E9; border-block: 1px solid var(--line); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stats__num { font-family: var(--serif); font-size: clamp(30px, 4vw, 40px); font-weight: 400; }
.stats__lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- 13. SECTIONS COMMON ---------- */
.section-head { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(30px, 4.6vw, 46px); margin: 14px 0 12px; }
.section-sub { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

/* ---------- 14. BENEFITS ---------- */
.benefits { padding: 72px 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.benefit-card {
  padding: 24px;
  border-radius: var(--radius);
}
.benefit-card__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  background: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.benefit-card h3 { font-size: 22px; margin-bottom: 6px; }
.benefit-card p  { font-size: 13px; line-height: 1.65; color: var(--ink-soft); }
.benefit-card--green  { background: var(--sage);     }
.benefit-card--green h3  { color: var(--green-dark); }
.benefit-card--purple { background: var(--lavender); }
.benefit-card--purple h3 { color: var(--purple); }
.benefit-card--rose   { background: var(--rose);     }
.benefit-card--rose h3   { color: var(--rose-ink); }
.benefit-card--sage   { background: #EEF6EA; }
.benefit-card--sage h3   { color: var(--green-dark); }

.mid-cta { margin-top: 44px; text-align: center; }
.mid-cta__line { font-size: 14px; font-weight: 700; margin-bottom: 14px; }

/* ---------- 15. TRANSFORMATIONS ---------- */
.transformations { padding: 72px 0; }
.transformations__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .transformations__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .transformations__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .3s;
}
.tf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tf-card__img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.tf-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tf-card__label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  padding: 4px 8px; border-radius: 4px;
}
.tf-card__result {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--red); color: #fff;
  font-family: var(--serif);
  font-weight: 900; font-size: 14px;
  padding: 6px 12px; border-radius: 999px;
}
.tf-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.stars { color: var(--green); font-size: 14px; letter-spacing: 2px; }
.tf-card__chip {
  align-self: flex-start;
  background: var(--sage);
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.tf-card__body p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; flex: 1; font-style: italic; }
.tf-card__author { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.tf-card__name { font-size: 12px; font-weight: 800; }
.tf-card__verified { font-size: 10px; color: var(--green-dark); }
.avatar {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.avatar--green  { background: var(--green); }
.avatar--rose   { background: #E86A6A; }
.avatar--purple { background: var(--purple); }
.avatar--red    { background: var(--red); }

/* ---------- 16. FAQ ---------- */
.faq { padding: 72px 0 100px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chev {
  color: var(--muted);
  font-size: 18px;
  transition: transform .2s;
}
.faq-item[open] .faq-item__chev { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ---------- 17. FOOTER ---------- */
.site-footer { padding: 40px 0 100px; text-align: center; background: #F8F3E9; border-top: 1px solid var(--line); }
.site-footer__logo { margin: 0 auto 16px; height: 40px; width: auto; opacity: .8; }
.disclaimer { font-size: 10px; color: var(--muted); line-height: 1.6; max-width: 640px; margin: 0 auto 12px; }
.copyright { font-size: 10px; color: var(--muted); }

/* ---------- 18. MOBILE STICKY BAR ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 55;
  box-shadow: 0 -6px 20px rgba(0,0,0,.15);
}
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ---------- 19. SOCIAL PROOF POPUP ---------- */
.proof-pop {
  position: fixed;
  left: 16px; bottom: 80px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  z-index: 54;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.proof-pop:not([hidden]) { opacity: 1; transform: translateY(0); }
.proof-pop .avatar { width: 36px; height: 36px; font-size: 14px; }
.proof-pop__body { flex: 1; min-width: 0; }
.proof-pop__name { font-size: 12px; font-weight: 800; }
.proof-pop__meta { font-size: 10px; color: var(--muted); }
.proof-pop__close {
  color: var(--muted);
  font-size: 14px;
  padding: 4px;
}
@media (min-width: 768px) { .proof-pop { bottom: 24px; } }

/* ---------- MOBILE SAFETY LAYER ---------- */
/* Prevent any child from expanding parent beyond viewport */
.hero__grid, .stats__grid, .benefits__grid, .transformations__grid,
.trust-grid, .hero__intro { min-width: 0; }
.badge, .hero__lead, .hero__title, .trust-row,
.tf-card, .benefit-card, .offer-card,
.ba-card, .stock-bar, .order-form,
.faq-item, .section-head, .mid-cta { min-width: 0; max-width: 100%; }

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 24px; }
  .hero__title { max-width: 100%; }
  .hero__line--xl { font-size: 20px; letter-spacing: -0.02em; }
  .hero__line--lg { font-size: 17px; }
  .hero__line--md { font-size: 15px; }
  .hero__line--sm { font-size: 11.5px; }
  .badge { font-size: 10px; padding: 6px 12px; }
  .trust-row { gap: 8px 14px; font-size: 11px; }
  .trust-row li { font-size: 11px; }
  .hero__lead { font-size: 14px; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 14px; }
  .stats__num { font-size: 28px; }
  .offer-card { padding: 18px; }
  .offer-card__title { font-size: 22px; }
  .price__new { font-size: 32px; }
  .mini-countdown__box { font-size: 20px; min-width: 40px; padding: 4px 10px; }
  .btn--lg { padding: 14px 22px; font-size: 13px; }
  .benefit-card { padding: 20px; }
  .benefit-card h3 { font-size: 20px; }
  .ba-card__result-value { font-size: 20px; }
  .ba-card__name { font-size: 17px; }
  .live-viewers { font-size: 11px; }
  .tf-card__body p { font-size: 12px; }
}

/* ---------- 20. UTILITIES ---------- */
.urgency-pulse { animation: soft-pulse 1.6s ease-in-out infinite; }
@keyframes soft-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
