:root {
  --bg: #0f0f10;
  --panel: #18191b;
  --panel-soft: #202225;
  --line: #303238;
  --text: #f4f5f7;
  --muted: #a8adb7;
  --red: #c66a1b;
  --red-dark: #76390f;
  --gold: #d69a2b;
  --gold-bright: #ffd56d;
  --gold-dark: #965c16;
  --copper: #c66a1b;
  --copper-dark: #76390f;
  --copper-soft: #e0943b;
  --charcoal: #111111;
  --charcoal-soft: #1d1c18;
  --navy: #101827;
  --green: #19b77a;
  --blue: #4d8dff;
  --cream: #f7efe2;
  --ink: #191813;
  --ink-soft: #636b77;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Roboto, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #15110a;
  background: linear-gradient(
    180deg,
    var(--gold-bright),
    var(--gold) 50%,
    #bd7b18
  );
  box-shadow: 0 14px 30px rgba(198, 106, 27, 0.3);
}

.btn-secondary {
  color: var(--gold-bright);
  background: #171612;
  border: 1px solid rgba(214, 154, 43, 0.34);
}

.btn-wide {
  width: 100%;
}

.yt-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  color: #f1f1f1;
  background: #0f0f0f;
  border-bottom: 1px solid #272727;
  font-family: Roboto, Inter, Arial, sans-serif;
}

.yt-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yt-burger,
.yt-icon-btn,
.yt-mic {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #f1f1f1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.yt-burger {
  flex-direction: column;
}

.yt-burger:hover,
.yt-icon-btn:hover {
  background: #272727;
}

.yt-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #fff;
  border-radius: 2px;
}

.yt-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  text-decoration: none;
}

.yt-logo-image {
  display: block;
  width: 133px;
  height: 30px;
  flex: 0 0 auto;
  max-width: none;
  object-fit: contain;
}

.yt-search {
  flex: 1;
  max-width: 640px;
  margin: 0 24px;
  display: flex;
  align-items: center;
}

.yt-search-box {
  flex: 1;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: #121212;
  border: 1px solid #303030;
  border-radius: 40px 0 0 40px;
}

.yt-search-box input {
  flex: 1;
  min-width: 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.yt-search-box input::placeholder {
  color: #888;
}

.yt-search-btn {
  width: 64px;
  height: 40px;
  color: #f1f1f1;
  background: #222;
  border: 1px solid #303030;
  border-left: 0;
  border-radius: 0 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.yt-mic {
  margin-left: 12px;
  background: #272727;
}

.yt-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yt-avatar {
  width: 32px;
  height: 32px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.yt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.adult-alert-open {
  overflow: hidden;
}

.adult-initial-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 26%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px) saturate(0.9);
  -webkit-backdrop-filter: blur(10px) saturate(0.9);
}

.adult-initial-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
}

.adult-initial-overlay.is-closing {
  animation: adultOverlayOut 0.22s ease both;
}

.adult-initial-alert {
  position: relative;
  width: min(472px, 100%);
  overflow: hidden;
  padding: 22px 24px 20px;
  color: #f1f1f1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 34%),
    #282828;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.68),
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02);
  font-family: Roboto, Inter, Arial, sans-serif;
  animation: adultAlertIn 0.34s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.adult-initial-alert::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: #ff0000;
}

.adult-initial-alert::after {
  position: absolute;
  top: -96px;
  left: 50%;
  width: 220px;
  height: 220px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  transform: translateX(-50%);
}

.adult-initial-alert__source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 6px 10px;
  color: #e5e5e5;
  background: rgba(15, 15, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.adult-initial-alert__play {
  position: relative;
  width: 22px;
  height: 15px;
  flex: 0 0 auto;
  background: #ff0000;
  border-radius: 4px;
}

.adult-initial-alert__play::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #fff;
  transform: translate(-36%, -50%);
}

.adult-initial-alert__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: #fff;
  background: #ff0000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(255, 0, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.38);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.2px;
  animation: adultAgePulse 1.7s ease-in-out infinite;
}

.adult-initial-alert__body {
  position: relative;
  z-index: 1;
}

.adult-initial-alert__body h2 {
  margin: 0 0 12px;
  color: #f1f1f1;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.adult-initial-alert__body p {
  margin: 0 auto;
  max-width: 372px;
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.adult-initial-alert__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 28px -8px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.adult-initial-alert__secondary,
.adult-initial-alert__confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: Roboto, Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.adult-initial-alert__secondary {
  color: #f1f1f1;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.adult-initial-alert__secondary:hover,
.adult-initial-alert__secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 8px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.adult-initial-alert__confirm {
  color: #0f0f0f;
  background: linear-gradient(180deg, #65b8ff, #3ea6ff);
  box-shadow:
    0 0 0 1px rgba(62, 166, 255, 0.32) inset,
    0 10px 24px rgba(62, 166, 255, 0.22);
}

.adult-initial-alert__confirm:hover,
.adult-initial-alert__confirm:focus-visible {
  background: linear-gradient(180deg, #86c8ff, #57b2ff);
  box-shadow:
    0 0 0 1px rgba(62, 166, 255, 0.4) inset,
    0 13px 28px rgba(62, 166, 255, 0.28),
    0 0 0 4px rgba(62, 166, 255, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .adult-initial-overlay {
    padding: 18px;
  }

  .adult-initial-alert {
    padding: 22px 18px 18px;
  }

  .adult-initial-alert__body h2,
  .adult-initial-alert__body p {
    text-align: center;
  }

  .adult-initial-alert__source {
    margin-left: auto;
    margin-right: auto;
  }

  .adult-initial-alert__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .adult-initial-alert__actions {
    justify-content: center;
    margin-top: 24px;
  }

}

.purchase-toast-stack {
  position: fixed;
  top: 76px;
  right: 24px;
  z-index: 96;
  display: grid;
  gap: 10px;
  width: min(352px, calc(100vw - 32px));
  pointer-events: none;
}

.purchase-toast-stack:empty {
  display: none;
}

.purchase-toast {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  overflow: hidden;
  color: #f1f1f1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
    rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  pointer-events: auto;
  animation:
    purchaseToastIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) both,
    purchaseToastOut 0.42s cubic-bezier(0.4, 0, 1, 1) 7.15s forwards;
  backdrop-filter: blur(14px) saturate(1.08);
  will-change: opacity, transform, filter;
}

.purchase-toast::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 1px;
  content: "";
  background: rgba(255, 213, 109, 0.66);
  opacity: 0.76;
  transform-origin: left;
  animation: purchaseToastProgress 7.2s linear forwards;
}

.purchase-toast__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle at 35% 28%, #fff2ba, transparent 32%),
    linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 0 5px rgba(255, 213, 109, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.24);
  animation: purchaseIconPop 0.58s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.purchase-toast__icon::before {
  width: 11px;
  height: 6px;
  content: "";
  border-bottom: 2px solid #121212;
  border-left: 2px solid #121212;
  transform: rotate(-45deg) translate(1px, -1px);
}

.purchase-toast__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.purchase-toast__eyebrow::before {
  width: 5px;
  height: 5px;
  display: inline-block;
  content: "";
  background: #23d18b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(35, 209, 139, 0.1);
}

.purchase-toast__title {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.24;
  letter-spacing: 0;
}

.purchase-toast__meta {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .purchase-toast-stack {
    top: 66px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .purchase-toast {
    grid-template-columns: 38px 1fr;
    padding: 12px;
  }

  .purchase-toast__icon {
    width: 34px;
    height: 34px;
  }
}

.yt-hero {
  color: #f1f1f1;
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 106, 27, 0.14), transparent 34%),
    #0f0f0f;
  padding: 24px 0 40px;
  font-family: Roboto, Inter, Arial, sans-serif;
}

.yt-banner-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.yt-banner {
  width: 100%;
  aspect-ratio: 2120 / 351;
  overflow: hidden;
  position: relative;
  background: #02070b;
  border-radius: 12px;
}

.yt-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.yt-video-meta {
  max-width: 1300px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-family: Roboto, Inter, Arial, sans-serif;
}

.yt-adult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 10px;
  padding: 5px 10px;
  color: #b8b8b8;
  background: #181818;
  border: 1px solid rgba(255, 0, 0, 0.38);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.yt-adult-badge strong {
  color: #ff2f2f;
  font-weight: 850;
}

@media (min-width: 821px) {
  .yt-adult-badge {
    display: flex;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
}

.yt-video-title {
  margin: 0 0 6px;
  color: #fff;
  font-family: Roboto, Inter, Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.2px;
  text-align: center;
}

.yt-video-info {
  color: #aaa;
  font-family: Roboto, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.vsl-section {
  width: min(540px, calc(100% - 32px));
  max-width: 540px;
  margin: 18px auto 0;
  padding: 0;
}

.vsl-frame {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 540 / 720;
  overflow: hidden;
  background: #000;
  border-radius: 18px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
}

.vsl-frame > :not(script) {
  width: 100%;
  height: 100%;
  display: block;
}

.vsl-frame > vturb-smartplayer {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  aspect-ratio: 540 / 720;
}

.vsl-frame > vturb-smartplayer > .vturb-player-placeholder {
  width: 100% !important;
  max-width: none !important;
}

.is-local-vturb-preview .vsl-frame > vturb-smartplayer {
  display: none !important;
}

.is-vturb-live .vsl-frame > vturb-smartplayer {
  display: block !important;
}

.player-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(214, 154, 43, 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #030405 0%, #14171b 52%, #050506 100%);
}

.play-fake {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.player-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.yt-comments {
  color: #f1f1f1;
  background: #0f0f0f;
  padding: 24px 0 32px;
  font-family: Roboto, Inter, Arial, sans-serif;
}

body.pitch-revealed .yt-comments,
body.pitch-revealed > .yt-footer {
  display: none;
}

.yt-comments-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.ytc-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.ytc-count {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.ytc-sort {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.ytc-add {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
}

.ytc-add-input {
  flex: 1;
  padding: 8px 0;
  color: #aaa;
  border-bottom: 1px solid #303030;
  font-size: 14px;
}

.ytc-add-input::before {
  content: "";
}

.ytc-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.ytc-item.ytc-answer {
  margin-top: -10px;
  margin-left: 54px;
  margin-bottom: 20px;
}

.ytc-item.ytc-answer::before {
  position: absolute;
  top: -15px;
  left: -32px;
  width: 22px;
  height: 34px;
  content: "";
  border-left: 2px solid #303030;
  border-bottom: 2px solid #303030;
  border-radius: 0 0 0 14px;
}

.ytc-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #555;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  object-fit: cover;
}

.ytc-item img.ytc-avatar {
  clip-path: circle(50% at 50% 50%);
  filter: blur(1.9px) saturate(0.82) contrast(0.95);
  transform: scale(1.04);
  transform-origin: center;
}

.ytc-avatar.yc-me {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
}

img.ytc-avatar.yc-me {
  background: transparent;
}

.ytc-body {
  flex: 1;
  min-width: 0;
}

.ytc-name {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.ytc-time {
  margin-left: 6px;
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
}

.ytc-text {
  margin-bottom: 8px;
  color: #f1f1f1;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
}

.ytc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #aaa;
  font-size: 12px;
}

.ytc-actions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ytc-like:hover,
.ytc-dislike:hover {
  color: #fff;
}

.ytc-reply {
  color: #fff;
  padding: 6px 12px;
  border-radius: 18px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.ytc-reply:hover {
  background: #272727;
}

.yt-footer {
  color: #aaa;
  background: #0f0f0f;
  padding: 24px 0 32px;
  border-top: 1px solid #272727;
  font-family: Roboto, Inter, Arial, sans-serif;
}

.yt-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.yt-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}

.yt-footer-links a {
  color: #aaa;
  font-size: 12px;
  transition: color 0.15s ease;
}

.yt-footer-links a:hover {
  color: #fff;
}

.yt-footer-copy {
  margin-top: 8px;
  color: #717171;
  font-size: 12px;
}

@media (max-width: 900px) {
  .yt-search,
  .yt-mic {
    display: none;
  }

  .yt-banner-wrap {
    padding: 0;
  }

  .yt-hero {
    padding-top: 0;
  }

  .yt-banner {
    border-radius: 0;
    aspect-ratio: 6.2 / 1.6;
  }

  .yt-video-meta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vsl-section {
    width: min(540px, calc(100% - 32px));
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .yt-comments-inner,
  .yt-footer-inner {
    padding: 0 16px;
  }

  .ytc-count {
    font-size: 18px;
  }

  .ytc-item.ytc-answer {
    margin-left: 34px;
  }

  .ytc-item.ytc-answer::before {
    left: -22px;
    width: 14px;
  }

  .yt-footer-links {
    gap: 12px;
  }
}

.formula-section,
.offers-section,
.testimonials-section,
.faq-section {
  padding: 72px 0;
  color: var(--ink);
  background: #fff;
}

.section-head h2,
.product-copy h2,
.guarantee-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: var(--gold-bright);
  background: #15130f;
  border: 1px solid rgba(214, 154, 43, 0.28);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.after-result[hidden] {
  display: none;
}

.product-hero {
  position: relative;
  padding: 82px 0 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 84% 42%,
      rgba(255, 213, 109, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 16% 82%,
      rgba(198, 106, 27, 0.18),
      transparent 26%
    ),
    linear-gradient(135deg, #070707 0%, #17130d 54%, #101827 100%);
  overflow: hidden;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 38px;
  align-items: center;
}

.product-copy .lead {
  margin: 18px 0 22px;
  color: #d8dce4;
  font-size: 1.12rem;
  max-width: 640px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.proof-list span {
  padding: 12px 13px;
  color: #fff7dc;
  background: rgba(214, 154, 43, 0.09);
  border: 1px solid rgba(214, 154, 43, 0.2);
  border-radius: var(--radius);
  font-weight: 800;
}

.product-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.product-aura {
  position: absolute;
  inset: 11% 4% 10%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 213, 109, 0.08)
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 213, 109, 0.22),
      transparent 58%
    );
  border: 1px solid rgba(214, 154, 43, 0.22);
  border-radius: var(--radius);
  transform: rotate(-3deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-image-shell,
.kit-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 56%,
      rgba(255, 213, 109, 0.18),
      transparent 52%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(214, 154, 43, 0.06));
  border: 1px solid rgba(214, 154, 43, 0.22);
  border-radius: var(--radius);
}

.product-image-shell {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  min-height: 440px;
  background: transparent;
  border-color: rgba(214, 154, 43, 0.3);
}

.product-image-shell img,
.kit-image img {
  max-height: 98%;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.42));
}

.product-image-shell img {
  animation: corcumen-float 5.5s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #14100a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: corcumen-badge 4.2s ease-in-out infinite;
}

.floating-badge b {
  font-size: 2rem;
  line-height: 0.86;
}

.floating-badge span {
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-one {
  top: 10%;
  right: 3%;
}

.badge-two {
  left: 1%;
  bottom: 12%;
  animation-delay: 0.6s;
}

.corcumen-marquee {
  margin-top: 34px;
  overflow: hidden;
  color: #fff7dc;
  background: rgba(0, 0, 0, 0.34);
  border-top: 1px solid rgba(214, 154, 43, 0.18);
  border-bottom: 1px solid rgba(214, 154, 43, 0.18);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0;
  animation: corcumen-ticker 34s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 14px;
  padding: 8px 14px;
  color: #fff7dc;
  background: rgba(214, 154, 43, 0.08);
  border: 1px solid rgba(214, 154, 43, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 213, 109, 0.8);
}

.image-missing,
.kit-image span {
  position: absolute;
  inset: 14px;
  display: none;
  place-items: center;
  color: #d9dde6;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-weight: 850;
  text-align: center;
}

.product-image-shell.is-missing .image-missing,
.kit-image.is-missing span {
  display: grid;
}

.product-image-shell.is-missing img,
.kit-image.is-missing img {
  display: none;
}

.mechanism-section,
.bonus-section,
.guarantee-section {
  padding: 72px 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(214, 154, 43, 0.13),
      transparent 24%
    ),
    var(--cream);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head .section-kicker {
  color: var(--gold-bright);
  background: #17130d;
}

.section-head p {
  color: var(--ink-soft);
}

.steps-grid,
.formula-grid,
.bonus-grid,
.testimonial-grid,
.offer-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid article,
.formula-grid article,
.bonus-grid article,
.testimonial-grid article,
.offer-card,
.guarantee-card,
.faq-list details {
  background: #fff;
  border: 1px solid #e3e5ea;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(24, 28, 37, 0.08);
}

.steps-grid article {
  padding: 22px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #17110a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  font-weight: 900;
}

.steps-grid h3,
.formula-grid strong,
.bonus-grid strong {
  margin: 14px 0 7px;
  display: block;
  font-size: 1.05rem;
  line-height: 1.18;
}

.steps-grid p,
.formula-grid span,
.bonus-grid span {
  color: var(--ink-soft);
  font-weight: 620;
}

.formula-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.formula-grid article,
.bonus-grid article {
  padding: 20px;
}

.steps-grid article,
.formula-grid article,
.bonus-grid article,
.testimonial-grid article,
.guarantee-card,
.faq-list details {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.steps-grid article:hover,
.formula-grid article:hover,
.bonus-grid article:hover,
.testimonial-grid article:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 154, 43, 0.4);
  box-shadow: 0 24px 54px rgba(24, 28, 37, 0.12);
}

.countdown-strip {
  position: relative;
  isolation: isolate;
  padding: 48px 16px 46px;
  color: #ffffff;
  background:
    linear-gradient(115deg, #070707 0%, #11100d 44%, #20180b 78%, #5c3d10 145%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.countdown-strip::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 18% -12%, rgba(255, 213, 109, 0.18), transparent 35%),
    radial-gradient(circle at 83% 22%, rgba(198, 106, 27, 0.3), transparent 34%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.032) 0 1px,
      transparent 1px 22px
    );
  opacity: 0.8;
  pointer-events: none;
}

.countdown-strip::after {
  position: absolute;
  right: 12%;
  bottom: -108px;
  left: 12%;
  z-index: 0;
  height: 190px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 213, 109, 0.18), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.countdown-inner {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.countdown-title {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.7vw, 2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.1;
}

.countdown-title mark {
  color: var(--gold-bright);
  background: transparent;
  text-shadow: 0 0 18px rgba(255, 213, 109, 0.16);
}

.countdown-subtitle {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
}

.countdown-arrow {
  width: 0;
  height: 0;
  margin: 22px 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 20px solid #ffffff;
  animation: corcumen-countdown-arrow 1.8s ease-in-out infinite;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  min-width: 92px;
  padding: 14px 15px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.countdown-unit strong {
  display: block;
  color: #ffffff;
  font-size: 38px;
  font-weight: 850;
  line-height: 0.95;
}

.countdown-unit span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.countdown-button {
  position: relative;
  z-index: 2;
  min-height: 46px;
  width: min(310px, 100%);
  margin-top: 20px;
  padding: 12px 42px;
  display: inline-grid;
  place-items: center;
  text-align: center;
  color: #17130d;
  background: linear-gradient(180deg, #ffffff, #f4f1e9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  user-select: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.countdown-button span {
  grid-area: 1 / 1;
  pointer-events: none;
}

.countdown-button i {
  position: absolute;
  right: 15px;
  color: rgba(20, 16, 10, 0.76);
  font-style: normal;
  line-height: 1;
}

.countdown-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.countdown-stock {
  width: min(360px, 100%);
  margin-top: 18px;
}

.countdown-stock p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.countdown-stock strong {
  color: var(--gold-bright);
  font-weight: 850;
}

.stock-alert-icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  color: #111;
  background: var(--gold-bright);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.stock-meter {
  width: 100%;
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.stock-meter::before {
  width: var(--stock-meter-width, 100%);
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(255, 213, 109, 0.42);
  transition: width 0.45s ease;
}

@keyframes corcumen-countdown-arrow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes adultAlertIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes adultAgePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 7px rgba(255, 0, 0, 0.15),
      0 0 0 15px rgba(255, 0, 0, 0.06),
      0 12px 28px rgba(0, 0, 0, 0.38);
  }

  50% {
    box-shadow:
      0 0 0 13px rgba(255, 0, 0, 0.08),
      0 0 0 27px rgba(255, 0, 0, 0),
      0 12px 28px rgba(0, 0, 0, 0.38);
  }
}

@keyframes adultOverlayOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes purchaseToastIn {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, -14px, 0) scale(0.96);
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 2px, 0) scale(1.01);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes purchaseToastOut {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, -10px, 0) scale(0.97);
  }
}

@keyframes purchaseIconPop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes purchaseToastProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.offers-priority {
  position: relative;
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 10% 0%, rgba(198, 106, 27, 0.14), transparent 30%),
    radial-gradient(
      circle at 92% 8%,
      rgba(214, 154, 43, 0.22),
      transparent 31%
    ),
    linear-gradient(180deg, #f2dfca 0%, #fff7ec 48%, #f6f2ec 100%);
  overflow: hidden;
}

.offers-priority::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.028) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.offers-priority .container {
  position: relative;
  z-index: 1;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 253, 247, 0.98),
    rgba(255, 255, 255, 0.98) 46%,
    #ffffff
  );
  border: 1px solid rgba(32, 25, 18, 0.11);
  border-radius: var(--radius);
  box-shadow:
    0 18px 42px rgba(24, 28, 37, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.offer-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 213, 109, 0.14), transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(198, 106, 27, 0.1), transparent 36%);
  opacity: 0.72;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.offer-card::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(150, 92, 22, 0.14),
    var(--gold),
    rgba(150, 92, 22, 0.14)
  );
  pointer-events: none;
}

.offer-card.featured {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 213, 109, 0.2),
      transparent 34%
    ),
    linear-gradient(180deg, #fffaf2, #fff0dc 52%, #ffffff);
  border: 2px solid var(--red);
  transform: translateY(-12px);
  box-shadow:
    0 34px 80px rgba(118, 57, 15, 0.18),
    0 0 0 6px rgba(214, 154, 43, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.offer-card.featured::after {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--red-dark),
    var(--red),
    var(--gold),
    var(--red)
  );
}

.offer-card:hover,
.offer-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(214, 154, 43, 0.58);
  box-shadow:
    0 30px 76px rgba(24, 28, 37, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.offer-card.featured:hover,
.offer-card.featured:focus-within {
  transform: translateY(-18px);
}

.offer-card:hover::before,
.offer-card:focus-within::before {
  opacity: 1;
}

.featured-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 4;
  min-width: 148px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--copper-soft), var(--copper-dark));
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 26px rgba(118, 57, 15, 0.24);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 28px 26px 0;
  color: #17130f;
  font-size: clamp(1.72rem, 2.2vw, 2.12rem);
  line-height: 1;
  text-align: center;
}

.offer-card.featured h3 {
  padding-top: 48px;
}

.duration,
.per-bottle,
.cash-price {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 780;
}

.duration {
  margin-top: 9px;
  color: #626977;
  font-size: 1rem;
  font-weight: 850;
}

.kit-image {
  height: 214px;
  margin: 12px 14px 2px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.kit-image::before {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 2%;
  height: 86%;
  content: "";
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(20, 16, 12, 0.18) 0%,
      rgba(20, 16, 12, 0.1) 36%,
      transparent 68%
    ),
    radial-gradient(
      ellipse at 50% 74%,
      rgba(255, 213, 109, 0.2),
      transparent 62%
    );
  border-radius: 50%;
  opacity: 0.9;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.kit-image::after {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 25%;
  content: "";
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 0, 0, 0.22),
    rgba(0, 0, 0, 0.08) 42%,
    transparent 72%
  );
  filter: blur(7px);
  opacity: 0.8;
  transform: translateY(12px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.kit-image img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 98%;
  height: 214px;
  max-height: 214px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.offer-card:hover .kit-image::before,
.offer-card:focus-within .kit-image::before {
  opacity: 1;
  transform: scale(1.03);
}

.offer-card:hover .kit-image::after,
.offer-card:focus-within .kit-image::after {
  opacity: 0.95;
  transform: translateY(15px) scale(1.05);
}

.offer-card:hover .kit-image img,
.offer-card:focus-within .kit-image img {
  transform: translateY(-7px) scale(1.04);
}

.kit-image span {
  color: var(--ink-soft);
  border-color: #c8ced8;
}

.price {
  color: var(--red-dark);
  font-size: clamp(2.25rem, 4.6vw, 3.08rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  letter-spacing: 0;
  text-wrap: balance;
}

.installment-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.installment-price small {
  color: #646b78;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price span {
  font-size: 0.42em;
  margin-left: -5px;
}

.cash-price {
  margin-top: 5px;
  color: #755719;
  font-size: 0.92rem;
}

.per-bottle {
  margin: 4px auto 0;
  width: fit-content;
  padding: 4px 10px;
  color: #27211a;
  background: rgba(214, 154, 43, 0.16);
  border: 1px solid rgba(150, 92, 22, 0.2);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
}

.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 22px 18px;
  padding: 14px 16px;
  list-style: none;
  background: rgba(255, 250, 238, 0.72);
  border: 1px solid rgba(214, 154, 43, 0.18);
  border-radius: var(--radius);
}

.offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.28;
}

.offer-card li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff3bf 0 18%, transparent 20%),
    linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 4px rgba(214, 154, 43, 0.14);
}

.offer-card .btn {
  min-height: 54px;
  margin: auto 22px 22px;
  border-radius: var(--radius);
  font-size: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.offer-card .btn-secondary {
  color: var(--gold-bright);
  background: linear-gradient(180deg, #17140e, #090806);
  border: 1px solid rgba(214, 154, 43, 0.28);
}

.offer-card .btn-primary {
  color: #120d06;
  background: linear-gradient(180deg, #ffda72, var(--gold) 54%, #b86419);
  box-shadow: 0 18px 34px rgba(195, 111, 29, 0.34);
}

.offer-card .btn:hover {
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.2);
}

.offer-card .btn-secondary:hover {
  box-shadow: 0 20px 36px rgba(15, 12, 8, 0.24);
}

.offer-card .btn-primary:hover {
  box-shadow: 0 24px 42px rgba(195, 111, 29, 0.42);
}

.offer-card .btn {
  margin-top: auto;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: -1;
  width: 48%;
  height: 100%;
  content: "";
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  transform: skewX(-18deg);
  animation: corcumen-button-sheen 3.6s ease-in-out infinite;
}

/* Minimal kit-card pass */
#kits {
  scroll-margin-top: 72px;
}

.offers-priority {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 213, 109, 0.18), transparent 31%),
    radial-gradient(circle at 88% 10%, rgba(198, 106, 27, 0.11), transparent 33%),
    linear-gradient(180deg, #edd9bf 0%, #fff2e2 48%, #f4f0e8 100%);
}

.offers-priority::before {
  background:
    linear-gradient(90deg, rgba(70, 46, 18, 0.045) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, rgba(70, 46, 18, 0.035) 0 1px, transparent 1px 92px);
  opacity: 0.38;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
}

.offers-priority .section-head {
  color: #1d1710;
}

.offers-priority .section-head p {
  color: rgba(33, 27, 19, 0.72);
}

.offer-grid {
  gap: 18px;
  width: min(1080px, 100%);
}

.offer-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf8 70%, #ffffff 100%);
  border: 1px solid rgba(80, 55, 24, 0.17);
  border-radius: 8px;
  box-shadow:
    0 22px 58px rgba(76, 54, 25, 0.12),
    0 7px 18px rgba(17, 24, 39, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.offer-card::before {
  background:
    linear-gradient(180deg, rgba(255, 213, 109, 0.12), transparent 36%),
    radial-gradient(circle at 50% 16%, rgba(198, 106, 27, 0.065), transparent 38%);
  opacity: 0.92;
}

.offer-card::after {
  height: 2px;
  background: rgba(216, 163, 49, 0.72);
}

.offer-card.featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff4e4 66%, #ffffff 100%);
  border: 1px solid rgba(198, 106, 27, 0.44);
  box-shadow:
    0 30px 72px rgba(118, 57, 15, 0.14),
    0 12px 26px rgba(76, 54, 25, 0.07),
    0 0 0 4px rgba(255, 213, 109, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.offer-card.featured::after {
  height: 3px;
  background: var(--red);
}

.offer-card:hover,
.offer-card:focus-within {
  border-color: rgba(198, 106, 27, 0.26);
  box-shadow:
    0 34px 78px rgba(76, 54, 25, 0.16),
    0 10px 24px rgba(17, 24, 39, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.kit-badge,
.featured-ribbon {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 4;
  min-width: 0;
  max-width: calc(100% - 28px);
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  margin: 16px auto 0;
  transform: none;
  color: #17130f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.kit-badge-featured {
  color: #ffffff;
  background: linear-gradient(135deg, #df8732, #8a4212);
  border-color: rgba(198, 106, 27, 0.82);
  box-shadow: 0 12px 26px rgba(118, 57, 15, 0.2);
}

.kit-badge-secondary {
  color: #ffffff;
  background: linear-gradient(135deg, #b9621d, #6f3511);
  border-color: rgba(198, 106, 27, 0.72);
  box-shadow: 0 10px 22px rgba(118, 57, 15, 0.14);
}

.offer-card:hover .kit-badge,
.offer-card:focus-within .kit-badge {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.offer-card h3 {
  padding: 16px 24px 0;
  color: #111111;
  font-size: clamp(1.62rem, 2vw, 1.96rem);
  font-weight: 850;
}

.offer-card.featured h3 {
  padding-top: 16px;
}

.duration {
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.96rem;
  font-weight: 700;
}

.kit-image {
  height: 190px;
  margin: 14px 20px 0;
}

.kit-image::before {
  left: 10%;
  right: 10%;
  bottom: 2%;
  height: 62%;
  background:
    radial-gradient(ellipse at 50% 64%, rgba(255, 213, 109, 0.16), transparent 64%),
    radial-gradient(ellipse at 50% 72%, rgba(0, 0, 0, 0.12), transparent 66%);
}

.kit-image::after {
  left: 20%;
  right: 20%;
  bottom: 6%;
  height: 18%;
  filter: blur(9px);
  opacity: 0.5;
}

.kit-image img {
  height: 190px;
  max-height: 190px;
  filter: drop-shadow(0 16px 20px rgba(17, 17, 17, 0.1));
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.34s ease;
}

.offer-card:hover .kit-image::before,
.offer-card:focus-within .kit-image::before {
  opacity: 1;
  transform: scale(1.08);
}

.offer-card:hover .kit-image::after,
.offer-card:focus-within .kit-image::after {
  opacity: 0.68;
  transform: translateY(12px) scale(1.08);
}

.offer-card:hover .kit-image img,
.offer-card:focus-within .kit-image img {
  transform: translateY(-10px) scale(1.035);
  filter: drop-shadow(0 24px 28px rgba(17, 17, 17, 0.16));
}

.installment-price {
  width: calc(100% - 44px);
  margin: 12px auto 0;
  padding: 15px 12px 13px;
  gap: 8px;
  color: var(--copper-dark);
  background:
    linear-gradient(180deg, rgba(255, 242, 219, 0.9), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(214, 154, 43, 0.3);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.offer-card:hover .installment-price,
.offer-card:focus-within .installment-price {
  background: linear-gradient(180deg, #fff2dd, #ffffff);
  border-color: rgba(214, 154, 43, 0.48);
  box-shadow:
    0 10px 22px rgba(150, 92, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.installment-price small {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.price {
  font-size: clamp(2.42rem, 4.8vw, 3.2rem);
  font-weight: 850;
}

.price span {
  margin-left: -4px;
  color: var(--copper-dark);
}

.cash-price {
  margin-top: 9px;
  color: #6b5a32;
  font-size: 0.86rem;
  font-weight: 650;
}

.per-bottle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 10px;
  color: #17130f;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(150, 92, 22, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  box-shadow: 0 8px 18px rgba(150, 92, 22, 0.06);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.per-bottle span {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.per-bottle strong {
  color: var(--copper-dark);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
}

.offer-card:hover .per-bottle,
.offer-card:focus-within .per-bottle {
  border-color: rgba(198, 106, 27, 0.26);
  box-shadow: 0 10px 22px rgba(198, 106, 27, 0.08);
  transform: translateY(-1px);
}

.offer-card ul {
  gap: 10px;
  margin: 18px 24px 20px;
  padding: 0;
  background: transparent;
  border: 0;
}

.offer-card li {
  position: relative;
  display: block;
  min-height: 20px;
  padding-left: 30px;
  color: #2b2b2b;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.28;
}

.offer-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(150, 92, 22, 0.34);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(150, 92, 22, 0.08);
}

.offer-card li::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--gold-dark);
  border-left: 2px solid var(--gold-dark);
  transform: rotate(-45deg);
}

.offer-card .btn {
  position: relative;
  min-height: 48px;
  margin: auto 24px 24px;
  padding: 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #141414;
  border: 1px solid #141414;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.14);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.offer-card .btn::after {
  display: none;
}

.offer-card .btn span {
  width: 100%;
  display: block;
  min-width: 0;
  padding: 0 24px;
  text-align: center;
}

.offer-card .btn i {
  position: absolute;
  right: 14px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  border-radius: 50%;
  font-style: normal;
  opacity: 0.78;
  pointer-events: none;
  transition:
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.offer-card .btn-secondary {
  color: #17130f;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.2);
}

.offer-card .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d67a26, #8a4212);
  border-color: #b9621d;
  box-shadow: 0 16px 30px rgba(118, 57, 15, 0.22);
}

.offer-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.18);
}

.offer-card .btn:hover i,
.offer-card .btn:focus-visible i {
  opacity: 1;
  transform: translateX(2px);
}

.offer-card .btn-secondary:hover {
  color: #ffffff;
  background: #17130f;
  border-color: #17130f;
}

.offer-card .btn-primary:hover {
  background: linear-gradient(135deg, #e0943b, #76390f);
  border-color: #9a4a14;
  box-shadow: 0 20px 36px rgba(118, 57, 15, 0.26);
}

body a.btn.checkout-link.smartplayer-click-event,
body a.btn.checkout-link.smartplayer-click-event:visited {
  appearance: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  outline: none;
}

body .offer-card a.btn.checkout-link.smartplayer-click-event {
  position: relative !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  margin: auto 24px 24px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.14) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease !important;
}

body .offer-card a.btn.checkout-link.smartplayer-click-event span {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  min-width: 0 !important;
  padding: 0 58px !important;
  text-align: center !important;
  line-height: 1.08 !important;
}

body .offer-card a.btn.checkout-link.smartplayer-click-event i {
  position: absolute !important;
  top: 50% !important;
  right: 14px !important;
  width: 24px !important;
  height: 24px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

body .offer-card a.btn-primary.checkout-link.smartplayer-click-event {
  color: #ffffff !important;
  background: linear-gradient(135deg, #d67a26, #8a4212) !important;
  border: 1px solid #b9621d !important;
  box-shadow: 0 16px 30px rgba(118, 57, 15, 0.22) !important;
}

body .offer-card a.btn-secondary.checkout-link.smartplayer-click-event {
  color: #17130f !important;
  background: #ffffff !important;
  border: 1px solid rgba(17, 17, 17, 0.2) !important;
}

body .offer-card a.btn.checkout-link.smartplayer-click-event:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.18) !important;
}

body .offer-card a.btn.checkout-link.smartplayer-click-event:hover i {
  transform: translateY(-50%) translateX(2px) !important;
}

body .offer-card a.btn-primary.checkout-link.smartplayer-click-event:hover {
  background: linear-gradient(135deg, #e0943b, #76390f) !important;
  border-color: #9a4a14 !important;
  box-shadow: 0 20px 36px rgba(118, 57, 15, 0.26) !important;
}

body .offer-card a.btn-secondary.checkout-link.smartplayer-click-event:hover {
  color: #ffffff !important;
  background: #17130f !important;
  border-color: #17130f !important;
}

body .final-cta a.btn-primary.checkout-link.smartplayer-click-event {
  min-height: 48px !important;
  padding: 14px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #15110a !important;
  background: linear-gradient(
    180deg,
    var(--gold-bright),
    var(--gold) 50%,
    #bd7b18
  ) !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 14px 30px rgba(214, 154, 43, 0.3) !important;
  font-family: Inter, Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
}

body .final-cta a.btn-primary.checkout-link.smartplayer-click-event:hover {
  transform: translateY(-2px) !important;
}

.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials-section {
  background: #f7f8fb;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid article {
  padding: 24px;
}

.avatar-letter {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  border-radius: 50%;
  font-weight: 950;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 680;
}

.testimonial-grid strong {
  color: var(--ink-soft);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
}

.seal-365 {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(214, 154, 43, 0.26);
}

.seal-365 strong {
  font-size: 3.4rem;
  line-height: 0.9;
}

.seal-365 span {
  font-weight: 900;
  text-transform: uppercase;
}

.guarantee-card p {
  color: var(--ink-soft);
  font-weight: 640;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 18px 20px;
  padding-right: 54px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  content: "+";
  color: #17110a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.faq-list details[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ink-soft);
  animation: corcumen-faq-open 0.22s ease both;
}

.final-cta {
  margin-top: 28px;
  text-align: center;
}

.sales-footer {
  padding: 38px 0;
  color: #d8dce4;
  background: #111317;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2c3038;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.1rem;
}

.footer-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.footer-grid a {
  display: inline-block;
  margin-left: 18px;
  color: #fff;
  font-weight: 800;
}

.legal {
  padding-top: 18px;
  color: #858b96;
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.steps-grid article.is-visible:hover,
.formula-grid article.is-visible:hover,
.bonus-grid article.is-visible:hover,
.testimonial-grid article.is-visible:hover,
.faq-list details.is-visible:hover {
  transform: translateY(-5px);
}

.offer-card.featured.is-visible {
  transform: translateY(-6px);
}

.offer-card.is-visible:hover,
.offer-card.is-visible:focus-within {
  transform: translateY(-9px);
}

.offer-card.featured.is-visible:hover,
.offer-card.featured.is-visible:focus-within {
  transform: translateY(-12px);
}

@media (hover: hover) and (pointer: fine) {
  .offer-card:hover,
  .offer-card:focus-within,
  .offer-card.is-visible:hover,
  .offer-card.is-visible:focus-within {
    transform: translateY(-13px) scale(1.012);
  }

  .offer-card.featured:hover,
  .offer-card.featured:focus-within,
  .offer-card.featured.is-visible:hover,
  .offer-card.featured.is-visible:focus-within {
    transform: translateY(-16px) scale(1.014);
  }
}

@keyframes corcumen-button-sheen {
  0%,
  45% {
    left: -80%;
  }

  72%,
  100% {
    left: 135%;
  }
}

@keyframes corcumen-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes corcumen-badge {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes corcumen-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes corcumen-faq-open {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .steps-grid,
  .formula-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .yt-search,
  .yt-mic {
    display: none;
  }

  .product-grid,
  .guarantee-card {
    grid-template-columns: 1fr;
  }

  .proof-list,
  .offer-grid,
  .bonus-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    order: -1;
    transform: none;
  }

  .offer-card.featured.is-visible {
    transform: none;
  }

  .offer-card.featured:hover,
  .offer-card.featured:focus-within,
  .offer-card.featured.is-visible:hover,
  .offer-card.featured.is-visible:focus-within,
  .offer-card:hover,
  .offer-card:focus-within,
  .offer-card.is-visible:hover,
  .offer-card.is-visible:focus-within {
    transform: translateY(-5px);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid a {
    margin: 0 18px 0 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .yt-header {
    padding: 0 10px;
  }

  .yt-header-right .yt-icon-btn {
    display: none;
  }

  .formula-section,
  .offers-section,
  .testimonials-section,
  .faq-section,
  .product-hero,
  .mechanism-section,
  .bonus-section,
  .guarantee-section {
    padding: 52px 0;
  }

  .steps-grid,
  .formula-grid {
    grid-template-columns: 1fr;
  }

  .product-image-shell {
    min-height: 300px;
  }

  .product-stage {
    min-height: 360px;
  }

  .product-aura {
    inset: 10% 2% 14%;
  }

  .floating-badge {
    width: 72px;
    height: 72px;
  }

  .floating-badge b {
    font-size: 1.45rem;
  }

  .floating-badge span {
    font-size: 0.55rem;
  }

  .badge-one {
    top: 28px;
    right: 0;
  }

  .badge-two {
    bottom: 32px;
    left: 0;
  }

  .marquee-track span {
    padding: 8px 12px;
    font-size: 10px;
  }

  .countdown-strip {
    padding: 44px 12px 42px;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 82px;
    padding: 13px 10px 14px;
  }

  .countdown-unit strong {
    font-size: 32px;
  }

  .offers-priority {
    padding-top: 54px;
  }

  .offer-card h3 {
    padding-top: 16px;
  }

  .offer-card.featured h3 {
    padding-top: 16px;
  }

  .kit-image {
    height: 180px;
    margin: 14px 18px 0;
  }

  .kit-image img {
    height: 180px;
    max-height: 180px;
  }

  .offer-card ul {
    margin: 16px 20px 18px;
    padding: 0;
  }

  .offer-card .btn {
    min-height: 48px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .price {
    font-size: 2.32rem;
  }

  .installment-price {
    width: calc(100% - 40px);
    gap: 6px;
  }

  .installment-price small {
    font-size: 0.68rem;
  }

  .guarantee-card {
    padding: 24px;
  }
}

@media (min-width: 821px) {
  .offer-card:hover,
  .offer-card:focus-within,
  .offer-card.is-visible:hover,
  .offer-card.is-visible:focus-within {
    transform: translate3d(0, -14px, 0) scale(1.014);
    border-color: rgba(198, 106, 27, 0.22);
    box-shadow:
      0 34px 80px rgba(17, 24, 39, 0.16),
      0 0 0 1px rgba(214, 154, 43, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .offer-card.featured:hover,
  .offer-card.featured:focus-within,
  .offer-card.featured.is-visible:hover,
  .offer-card.featured.is-visible:focus-within {
    transform: translate3d(0, -18px, 0) scale(1.016);
    box-shadow:
      0 38px 88px rgba(118, 57, 15, 0.17),
      0 0 0 4px rgba(255, 213, 109, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }
}

@media (min-width: 821px) and (hover: hover) {
  body .offer-grid .offer-card:hover {
    transform: translate3d(0, -18px, 0) scale(1.025) !important;
    border-color: rgba(198, 106, 27, 0.32);
    box-shadow:
      0 38px 92px rgba(17, 24, 39, 0.18),
      0 0 0 1px rgba(214, 154, 43, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  body .offer-grid .offer-card:hover .kit-image img {
    transform: translateY(-14px) scale(1.055);
    filter: drop-shadow(0 30px 34px rgba(17, 17, 17, 0.2));
  }

  body .offer-grid .offer-card:hover .installment-price {
    transform: translateY(-4px);
    border-color: rgba(214, 154, 43, 0.56);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Saída explícita para a oferta de retorno. */
.pv-exit-link{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:6px 15px;border:1px solid #555;border-radius:20px;color:#f4f5f7;font-size:13px;font-weight:600;text-decoration:none}.pv-exit-link:hover{background:#303030}.pv-exit-link:focus-visible{outline:2px solid #ffd56d;outline-offset:3px}a.adult-initial-alert__secondary{display:inline-flex;align-items:center;justify-content:center;text-decoration:none}
