/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0d0a06;
  color: #f5ecd8;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --bg: #0d0a06;
  --bg2: #15100a;
  --gold: #d4a84a;
  --gold-light: #f0c97a;
  --gold-dark: #a37d2f;
  --cream: #f5ecd8;
  --red: #c83a3a;
  --green: #2faa5a;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold-light); }

/* ============ TOP BAR ============ */
.top-bar {
  background: linear-gradient(90deg, #7a0d0d, #c83a3a, #7a0d0d);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 50;
}
.top-bar__inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.top-bar b { color: #ffe680; }
.pulse-dot {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffe680;
  display: inline-block;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffe680;
  animation: pulse 1.6s infinite;
  will-change: transform, opacity;
}
.countdown { font-weight: 800; color: #ffe680; font-variant-numeric: tabular-nums; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 28px 0 56px;
  min-height: calc(100vh - 44px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at top, rgba(212,168,74,0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(184,80,30,0.15), transparent 70%),
    linear-gradient(180deg, #15100a 0%, #0d0a06 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23d4a84a' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.kicker {
  display: inline-block;
  background: rgba(212,168,74,0.15);
  border: 1px solid rgba(212,168,74,0.4);
  color: var(--gold-light);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.kicker--dark { background: rgba(212,168,74,0.1); }
.kicker--center { display: block; text-align: center; width: fit-content; margin: 0 auto 18px; }

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero__sub {
  font-size: 16px;
  color: #d8cdb3;
  margin-bottom: 18px;
  max-width: 560px;
  line-height: 1.5;
}
.hero__bullets { list-style: none; margin-top: 18px; }
.hero__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 5px 0;
  font-size: 15px;
  color: #e9ddc0;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1208;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Price inline (hero) */
.price-inline {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.price-inline__old {
  font-size: 16px;
  color: #8a7a52;
}
.price-inline__now {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(240, 201, 122, 0.4);
}
.price-inline__now small {
  font-family: 'Inter';
  font-size: 13px;
  background: var(--gold);
  color: #1a1208;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.price-inline__tag {
  background: linear-gradient(135deg, #c83a3a, #7a0d0d);
  color: #fff;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(200,58,58,0.4);
}

/* CTA */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2faa5a, #1d7a40);
  color: #fff;
  padding: 18px 38px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(47, 170, 90, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform .15s ease, box-shadow .2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(47, 170, 90, 0.5); }
.cta__sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 4px;
  opacity: 0.9;
  text-transform: none;
}
.cta--hero { width: 100%; max-width: 480px; animation: bounce-soft 3s infinite; padding: 16px 32px; font-size: 17px; }
.cta--big {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 30px auto 8px;
  font-size: 22px;
  padding: 22px 40px;
}
.cta--final { animation: bounce-soft 2.5s infinite; }
.cta--mini {
  padding: 12px 18px;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-block;
}

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.trust-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px;
}
.trust-row--center { justify-content: center; margin: 30px auto 20px; }
.trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: #c7b787;
  background: rgba(255,255,255,0.04);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212,168,74,0.18);
}
.trust span { font-size: 16px; }

/* Hero image */
.hero__image {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero__image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(240,201,122,0.25));
  animation: float 6s ease-in-out infinite;
}
.devices-label {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212,168,74,0.1);
  border: 1px solid rgba(212,168,74,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__glow {
  position: absolute;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(240,201,122,0.35), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: glow 4s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes rotate-badge {
  from { transform: rotate(15deg); }
  to { transform: rotate(375deg); }
}

/* ============ SECTIONS COMMON ============ */
section { padding: 80px 0; }
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.section-title--center { text-align: center; }
.section-sub {
  text-align: center;
  font-size: 17px;
  color: #c7b787;
  margin-bottom: 50px;
}

/* ============ PAIN ============ */
.pain {
  background: linear-gradient(180deg, #0d0a06, #1a1208);
  text-align: center;
}
.pain .section-title { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.pain__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,74,0.15);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: left;
  transition: transform .2s, border-color .2s;
}
.pain__card:hover { transform: translateY(-4px); border-color: rgba(212,168,74,0.4); }
.pain__icon { font-size: 36px; margin-bottom: 14px; }
.pain__card p { color: #d8cdb3; font-size: 15px; }
.pain__lead {
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
}

/* ============ SOLUTION ============ */
.solution {
  background:
    radial-gradient(ellipse at right, rgba(212,168,74,0.12), transparent 60%),
    #15100a;
}
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.solution__image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.solution__copy h2 { margin-bottom: 22px; }
.solution__copy p {
  font-size: 17px;
  color: #d8cdb3;
  margin-bottom: 18px;
}
.solution__bullets {
  list-style: none;
  margin-top: 22px;
  padding: 22px;
  background: rgba(212,168,74,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}
.solution__bullets li {
  padding: 6px 0;
  color: #e9ddc0;
  font-size: 16px;
}

/* ============ KIT ============ */
.kit {
  background: linear-gradient(180deg, #0d0a06, #1a1208 50%, #0d0a06);
}
.kit__main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(212,168,74,0.12), rgba(212,168,74,0.03));
  border: 1.5px solid rgba(212,168,74,0.4);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}
.kit__main-img { position: relative; }
.kit__main-img img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.tag {
  position: absolute;
  top: -10px; left: 12px;
  background: var(--gold);
  color: #1a1208;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag--main { background: linear-gradient(135deg, #c83a3a, #7a0d0d); color: #fff; }
.tag--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); }
.kit__main-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 14px;
}
.kit__main-info p { color: #d8cdb3; font-size: 16px; margin-bottom: 14px; }
.kit__value { color: var(--gold-light); font-weight: 600; }
.kit__value s { color: #8a7a52; }

.kit__subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.6vw, 26px);
  text-align: center;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
.kit__hint {
  text-align: center;
  color: #b8a982;
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.kit__hint strong { color: var(--gold-light); }
.kit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}
.bonus-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,74,0.15);
  border-radius: 14px;
  padding: 20px 16px;
  position: relative;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,74,0.5);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.bonus-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.bonus-card h4 {
  font-size: 15px;
  color: #fff;
  margin: 14px 0 6px;
  font-weight: 700;
  min-height: 38px;
}
.bonus-card p { font-size: 13px; color: #c7b787; min-height: 50px; }
.bonus-card .value { display: block; margin-top: 10px; font-size: 13px; color: var(--gold-light); }
.bonus-card .value s { color: #8a7a52; }
.bonus-card .value--addon {
  background: rgba(47,170,90,0.15);
  border: 1px solid rgba(47,170,90,0.4);
  color: #6efb9b;
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 12px;
}
.bonus-card--highlight {
  background: linear-gradient(135deg, rgba(212,168,74,0.18), rgba(212,168,74,0.05));
  border-color: rgba(240,201,122,0.55);
  box-shadow: 0 0 40px rgba(240,201,122,0.15);
}

/* Value stack */
.value-stack {
  max-width: 560px;
  margin: 0 auto 30px;
  background: linear-gradient(180deg, rgba(212,168,74,0.12), rgba(212,168,74,0.02));
  border: 1.5px solid rgba(212,168,74,0.35);
  border-radius: 14px;
  padding: 22px 26px;
}
.value-stack__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 16px;
  color: #d8cdb3;
  border-bottom: 1px dashed rgba(212,168,74,0.15);
}
.value-stack__row:last-child { border-bottom: none; }
.value-stack__row s { color: #8a7a52; }
.value-stack__row--total { font-weight: 700; color: var(--gold-light); padding-top: 14px; }
.value-stack__row--total s { color: var(--gold-light); }
.value-stack__row--today {
  margin-top: 6px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(47,170,90,0.18), rgba(47,170,90,0.06));
  border: 1px solid rgba(47,170,90,0.4);
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  border-bottom: none;
}
.value-stack__row--hint {
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #b8a982;
  border-bottom: none;
  border: 1px dashed rgba(212,168,74,0.25);
  border-radius: 8px;
}
.value-stack__row--hint span:last-child { color: var(--gold-light); font-weight: 700; }
.big-price {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: #6efb9b;
  text-shadow: 0 0 20px rgba(47,170,90,0.45);
}
.oferta-sub {
  text-align: center;
  color: var(--gold-light);
  font-size: 14px;
  margin-top: 8px;
}

/* ============ TESTIMONIOS ============ */
.testimonios {
  background: #15100a;
}
.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.testi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,74,0.15);
  border-radius: 14px;
  padding: 26px;
}
.testi__stars { color: #ffd14a; font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.testi p { color: #e0d5b8; font-size: 15px; margin-bottom: 18px; font-style: italic; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.testi__author strong { display: block; color: #fff; font-size: 14px; }
.testi__author small { font-size: 12px; color: #b8a982; }

/* ============ GUARANTEE ============ */
.guarantee {
  background:
    radial-gradient(ellipse at left, rgba(212,168,74,0.18), transparent 60%),
    #1a1208;
}
.guarantee__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
}
.seal {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-dark) 70%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(212,168,74,0.35), inset 0 -8px 20px rgba(0,0,0,0.3);
  position: relative;
}
.seal::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 3px dashed rgba(26,18,8,0.5);
  border-radius: 50%;
  animation: rotate-badge 30s linear infinite;
}
.seal__inner {
  text-align: center;
  color: #1a1208;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.seal__big { display: block; font-size: 80px; line-height: 1; }
.seal__small { display: block; font-size: 22px; letter-spacing: 4px; }
.seal__sub { display: block; font-size: 14px; letter-spacing: 3px; margin-top: 6px; }

.guarantee__copy h2 { margin-bottom: 18px; }
.guarantee__copy p { color: #d8cdb3; font-size: 17px; margin-bottom: 14px; }
.guarantee__cta { font-size: 20px !important; color: var(--gold-light) !important; }

/* ============ FAQ ============ */
.faq { background: #0d0a06; }
.faq .section-title { margin-bottom: 40px; }
.faq__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,74,0.15);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.faq__chev {
  font-size: 22px;
  color: var(--gold-light);
  transition: transform .25s;
}
.faq__item.open .faq__chev { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 22px;
}
.faq__item.open .faq__a { max-height: 300px; padding: 0 22px 18px; }
.faq__a p { color: #c7b787; font-size: 15px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background:
    radial-gradient(ellipse at center top, rgba(212,168,74,0.22), transparent 70%),
    linear-gradient(180deg, #15100a 0%, #0d0a06 100%);
  text-align: center;
}
.final-cta h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 22px;
  line-height: 1.2;
}
.final-cta > .container > p {
  font-size: 18px;
  color: #d8cdb3;
  max-width: 700px;
  margin: 0 auto 30px;
}
.final-cta__price {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(212,168,74,0.12), rgba(212,168,74,0.04));
  border: 1.5px solid rgba(212,168,74,0.4);
  padding: 20px 50px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.final-cta__price span { font-size: 14px; color: #c7b787; }
.final-cta__price span s { color: #8a7a52; }
.final-cta__price strong {
  font-family: 'Cinzel', serif;
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  margin-top: 4px;
  text-shadow: 0 0 30px rgba(240,201,122,0.5);
}
.verse {
  margin-top: 50px;
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1.6;
}
.verse small { color: #b8a982; font-size: 14px; }

/* ============ FOOTER ============ */
.footer {
  background: #0a0805;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(212,168,74,0.1);
}
.footer p { color: #8a7a52; font-size: 13px; margin-bottom: 6px; }
.footer__small { color: #5a4f37; font-size: 12px; }

/* ============ STICKY CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: rgba(15, 12, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,168,74,0.4);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 540px;
  width: calc(100% - 32px);
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta__info { flex: 1; font-size: 13px; color: #d8cdb3; }
.sticky-cta__info strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.sticky-cta__info span s { color: #8a7a52; }
.sticky-cta__info span b { color: var(--gold-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero { padding: 20px 0 40px; min-height: 0; }
  .hero__grid, .solution__grid, .kit__main, .guarantee__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__image { order: -1; }
  .hero__image img { max-width: 360px; }
  .devices-label { font-size: 12px; padding: 6px 14px; }
  section { padding: 56px 0; }
  .kit__main { padding: 24px; text-align: center; }
  .kit__main-img { max-width: 240px; margin: 0 auto; }
  .cta--hero { font-size: 16px; padding: 14px 22px; }
  .cta--big { font-size: 18px; padding: 18px 22px; }
  .final-cta__price { padding: 18px 30px; }
  .final-cta__price strong { font-size: 42px; }
  .seal { width: 200px; height: 200px; }
  .seal__big { font-size: 64px; }
  .price-inline__now { font-size: 34px; }
  .trust-row { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .top-bar { font-size: 12px; }
  .bonus-card img { height: 160px; }
  .kit__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bonus-card { padding: 14px 10px; }
  .bonus-card h4 { font-size: 13px; min-height: auto; }
  .bonus-card p { display: none; }
  .bonus-card .value { font-size: 12px; }
  .sticky-cta { flex-direction: row; padding: 10px 12px; bottom: 8px; }
  .sticky-cta__info { font-size: 12px; }
  .cta--mini { padding: 10px 14px; font-size: 12px; }
  .pain__grid { grid-template-columns: 1fr; }
}
