/* ==========================================================
   Reduprime Turbo — Landing Page
   ========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --red: #e11d2e;
  --red-dark: #b8001a;
  --red-light: #ff2a3b;
  --gold: #ddb647;
  --gold-light: #f0cf6b;
  --text: #ffffff;
  --text-soft: #d4d4d4;
  --text-mute: #9a9a9a;
  --line: #262626;
  --green: #2ecc71;
  --container: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-red: 0 8px 24px rgba(225,29,46,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================
   Topbar (added when integrated with brand hub)
   ========================================================== */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.topbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
}
.topbar-logo img { height: 32px; width: 32px; border-radius: 6px; }
.topbar-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.topbar-nav a:hover { color: var(--gold); }
.topbar-nav a.btn-mini {
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-red);
}
.topbar-nav a.btn-mini:hover { color: #fff; filter: brightness(1.1); }

/* Language switcher (footer) */
.lang-switcher {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.lang-switcher a {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: .3px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease;
}
.lang-switcher a:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-block;
  padding: 16px 34px;
  background: linear-gradient(180deg, var(--red-light), var(--red));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: var(--shadow-red);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 20px 44px; font-size: 18px; }
.btn-block { display: block; width: 100%; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(225,29,46,.25), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(221,182,71,.10), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #1a0509 100%);
  padding: 40px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--text-soft);
  text-transform: uppercase;
}
.hero-eyebrow strong { color: var(--gold); }
.hero h1 {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .red { color: var(--red); }
.hero p.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-image {
  position: relative;
  text-align: center;
}
.hero-image img {
  margin: 0 auto;
  max-height: 600px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.6));
}
.hero-mobile-img { display: none; }

/* ==========================================================
   Promo banner (red strip)
   ========================================================== */
.promo {
  background: linear-gradient(90deg, #c4001a, #e11d2e, #c4001a);
  padding: 14px 0;
}
.promo-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 12px;
  text-align: center;
}
.promo-item {
  flex: 1 1 160px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.promo-item::before {
  content: "✓";
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  font-weight: 900;
}

/* ==========================================================
   Generic section
   ========================================================== */
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--bg-alt);
}
.section.dark {
  background: linear-gradient(180deg, #050505, #0e0e0e);
}
.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 900px;
  text-transform: uppercase;
}
.section-title .red { color: var(--red); }
.section-title .gold { color: var(--gold); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ==========================================================
   Problems section (3 cards)
   ========================================================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: linear-gradient(180deg, #1a1a1a, #0e0e0e);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.problem-card:hover { transform: translateY(-6px); border-color: var(--red); }
.problem-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--shadow-red);
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: .3px;
}
.problem-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.diet-bar {
  margin-top: 60px;
  padding: 36px 30px;
  text-align: center;
  background: linear-gradient(135deg, #1a0a0d, #0a0a0a);
  border: 1px solid var(--red);
  border-radius: var(--radius-lg);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.diet-bar .red { color: var(--red); }

/* ==========================================================
   Multi-action benefits
   ========================================================== */
.multi-action {
  background:
    radial-gradient(circle at 20% 30%, rgba(225,29,46,.12), transparent 50%),
    var(--bg-alt);
}
.multi-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.multi-action-text p {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.multi-action-text strong { color: #fff; }
.benefits-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.benefit-icon {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s ease;
}
.benefit-icon:hover { border-color: var(--gold); }
.benefit-icon img {
  width: 90px; height: 90px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.benefit-icon p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.3;
}

/* ==========================================================
   Why wins
   ========================================================== */
.why-wins {
  background:
    radial-gradient(circle at 80% 20%, rgba(221,182,71,.08), transparent 60%),
    var(--bg);
}
.why-wins-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-wins-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 22px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}
.why-wins-text p {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.why-wins-text strong { color: #fff; }

/* ==========================================================
   Comparison table
   ========================================================== */
.compare-card {
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  margin-top: 30px;
}
.compare-title {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}
.compare-sub {
  font-weight: 700;
  font-size: 16px;
  color: #ffefef;
  margin-bottom: 22px;
}
.compare-sub .mute { opacity: .6; font-weight: 500; }
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  display: grid;
  grid-template-columns: 230px 1fr 1fr 1fr 1fr;
  min-width: 920px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
}
.compare-cell {
  padding: 14px 16px;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px dashed #2a2a2a;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.head {
  background: #111;
  font-weight: 900;
  color: #fff;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 14px;
}
.compare-cell.head.reduprime {
  background: linear-gradient(0deg, var(--red), var(--red-light));
}
.compare-cell.aspect {
  background: #0f0f0f;
  font-weight: 700;
  color: #fff;
}
.compare-cell.bad {
  background: #f8f8f8;
  color: #333;
}
.compare-cell.win {
  background: #160607;
  color: #ffdbdb;
  font-weight: 700;
}
.compare-cell.win strong { color: #fff; font-weight: 900; }
.compare-note {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-note::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 3px;
}

/* ==========================================================
   13 Triggers section
   ========================================================== */
.triggers-section {
  background: linear-gradient(180deg, #0a0a0a, #0e0e0e 50%, #0a0a0a 100%);
}
.triggers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.trigger-card {
  background: linear-gradient(180deg, #1a0a0d, #0e0606);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.trigger-card:hover { transform: translateY(-4px); border-color: var(--red); }
.trigger-card::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--red), transparent);
  border-radius: 0 0 80px 0;
  opacity: .4;
}
.trigger-num {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.trigger-card h3 {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}
.trigger-card .ingredients {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 0 12px;
}
.trigger-card .desc {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================
   Transformations carousel
   ========================================================== */
.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #1a1a1a;
}
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-track { background: #1a1a1a; border-radius: 4px; }
.carousel::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.carousel-item {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.carousel-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ==========================================================
   Video testimonials
   ========================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.video-grid video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  background: #000;
  object-fit: cover;
}

/* ==========================================================
   Kits / Pricing
   ========================================================== */
.kits {
  background: linear-gradient(180deg, var(--bg), #1a0509);
}
.kits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.kit-card {
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.kit-card:hover { transform: translateY(-6px); }
.kit-card.featured { border-color: var(--gold); transform: scale(1.04); }
.kit-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.kit-badge {
  position: absolute;
  top: 14px;
  right: -36px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(35deg);
  text-transform: uppercase;
  z-index: 2;
}
.kit-tier {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.kit-card.featured .kit-tier { background: var(--gold); color: #1a1a1a; }
.kit-units {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding: 16px 0 8px;
  color: var(--text);
}
.kit-img {
  padding: 0 18px;
  text-align: center;
}
.kit-img img { margin: 0 auto; max-height: 240px; }
.kit-price-from {
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
  margin: 14px 0 0;
}
.kit-price-from del { color: #777; }
.kit-price-from strong { color: var(--text-soft); display: block; margin-top: 4px; }
.kit-price {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 6px 0;
}
.kit-price .small { font-size: 24px; }
.kit-price-vista {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 18px;
}
.kit-cta {
  padding: 0 18px 22px;
  margin-top: auto;
}
.kit-cta .btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
}

.payments {
  margin-top: 42px;
  text-align: center;
}
.payments img { margin: 0 auto; max-width: 100%; }
.payments .desk { display: block; }
.payments .mob { display: none; }

/* ==========================================================
   Quality / certifications
   ========================================================== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.quality-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}
.quality-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.quality-card .badge {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}
.quality-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #fff;
  line-height: 1.3;
}

/* ==========================================================
   Guarantee
   ========================================================== */
.guarantee {
  background:
    radial-gradient(ellipse at center, rgba(221,182,71,.10), transparent 60%),
    var(--bg-alt);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.guarantee-img img { margin: 0 auto; max-height: 480px; }
.guarantee-text .label {
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.guarantee-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  margin: 12px 0 18px;
  text-transform: uppercase;
  line-height: 1.1;
}
.guarantee-text h2 .red { color: var(--red); }
.guarantee-text p { color: var(--text-soft); margin: 0 0 14px; font-size: 16px; }
.guarantee-list {
  list-style: none;
  margin: 18px 0 18px;
  padding: 0;
}
.guarantee-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
  color: #fff;
}
.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-text .strong-line {
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  margin-top: 18px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  background: var(--bg);
}
.faq-list { max-width: 880px; margin: 30px auto 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 22px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 50px 0 24px;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}
.footer-logo img { max-height: 70px; }
.footer h4 {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.footer p { margin: 4px 0; }
.footer .ssl {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .ssl span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer .ssl span::before {
  content: "🔒";
  font-size: 14px;
}
.legal {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 12px;
  line-height: 1.6;
}
.legal p { margin: 0 0 8px; }
.legal strong { color: #fff; }

/* ==========================================================
   Sticky CTA (mobile)
   ========================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px;
  background: rgba(10,10,10,.95);
  border-top: 1px solid var(--line);
  display: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sticky-cta .btn { width: 100%; padding: 14px 18px; font-size: 15px; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 980px) {
  .hero { padding: 30px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero p.lead { margin: 0 auto 24px; }
  .hero-image { display: none; }
  .hero-mobile-img { display: block; margin: 0 auto; max-height: 460px; }
  .problems-grid { grid-template-columns: 1fr; }
  .multi-action-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .multi-action-grid > div:first-child { order: 2; }
  .why-wins-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .triggers-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .kits-grid { grid-template-columns: 1fr 1fr; }
  .kit-card.featured { transform: none; }
  .kit-card.featured:hover { transform: translateY(-6px); }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guarantee-list { display: inline-block; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer .ssl { justify-content: center; }
  .payments .desk { display: none; }
  .payments .mob { display: block; }
  body { padding-bottom: 80px; }
  .sticky-cta { display: block; }
  .section { padding: 56px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .triggers-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kits-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .promo-inner { gap: 8px; }
  .promo-item { font-size: 11px; flex-basis: calc(50% - 8px); }
  .compare-card { padding: 18px 14px; }
  .carousel-item { width: 220px; }
}
