:root {
  --bg-dark: #020c07;
  --bg-darker: #010604;
  --bg-card: #04140c;
  --neon-yellow: #e1ff2b;
  --neon-green: #26e67e;
  --neon-green-hover: #4bf098;
  --electric-red: #ff2e50;
  --electric-blue: #3f78ff;
  --text-white: #ffffff;
  --text-gray: #9fb8ab;
  --line: rgba(38, 230, 126, 0.08);
  --shadow-neon: 0 16px 36px rgba(225, 255, 43, 0.05);
  --shadow-red: 0 16px 36px rgba(255, 46, 80, 0.05);
  --shadow-green: 0 16px 36px rgba(38, 230, 126, 0.08);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

/* Background grid pattern */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  background-image:
    linear-gradient(90deg, rgba(38, 230, 126, 0.3) 1px, transparent 1px),
    linear-gradient(rgba(38, 230, 126, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

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

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

/* TOPBAR (Cleaner, subtle border) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 6, 4, 0.9);
  backdrop-filter: blur(12px);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 6px 0;
}

.topbar__inner {
  width: min(1140px, calc(100% - 24px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar__label strong {
  color: var(--neon-green);
}

.timer {
  min-width: 80px;
  padding: 5px 12px;
  border: 1px solid rgba(38, 230, 126, 0.3);
  border-radius: 6px;
  background: var(--bg-darker);
  color: var(--neon-yellow);
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(38, 230, 126, 0.15);
}

.topbar__link {
  color: var(--neon-green);
  font-weight: 900;
  border-bottom: 2px solid var(--neon-green);
  padding-bottom: 2px;
  transition: opacity 150ms ease;
}

.topbar__link:hover {
  opacity: 0.8;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 0.85em; /* Always make the anchor price smaller */
  margin: 0 4px;
}

/* HERO (Cleaner, better spacing) */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px; /* Increased desktop padding */
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -150px -5%;
  height: 250px;
  background: var(--bg-darker);
  transform: skewY(-2deg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 50px;
  align-items: center;
  z-index: 5;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--neon {
  color: var(--neon-yellow);
}

.eyebrow--red {
  color: var(--electric-red);
}

h1, h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  line-height: 1.05; /* Improved line height (less squished) */
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 76px);
  background: linear-gradient(135deg, var(--text-white) 40%, #b2ffd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 20px;
  color: var(--text-white);
  line-height: 1.1;
}

h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: var(--text-gray);
  font-size: 19px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

/* BUTTONS (LARGER & GREEN-ORIENTED) */
.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 36px;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--neon-green), #0a9b4d);
  color: var(--bg-darker);
  box-shadow: var(--shadow-green);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--neon-green-hover), var(--neon-green));
  box-shadow: 0 12px 30px rgba(38, 230, 126, 0.4);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  transition: all 0.2s ease;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.button--full {
  width: 100%;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38, 230, 126, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(38, 230, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 230, 126, 0); }
}

.button--pulse {
  animation: pulse 2s infinite;
}

/* PROOF STRIP */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 580px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(6, 29, 18, 0.3);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.proof-strip div {
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip dt {
  color: var(--neon-green);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* HERO MEDIA & STICKERS */
.hero__media {
  position: relative;
  min-height: 580px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(6, 29, 18, 0.4), rgba(1, 8, 5, 0.7));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.sticker-fan {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  perspective: 1200px;
}

.sticker-wrapper {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: min(44%, 220px);
  aspect-ratio: 3 / 4;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  cursor: pointer;
}

.sticker-card {
  width: 100%;
  height: 100%;
  border: 7px solid var(--text-white);
  border-radius: 12px;
  background: var(--text-white);
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backface-visibility: hidden;
}

.holographic-sheen {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.18) 60%,
    rgba(255, 255, 255, 0) 70%
  );
  background-size: 200% 200%;
  background-position: 0% 0%;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sticker-wrapper:hover .holographic-sheen {
  opacity: 1;
}

#sticker-3d-1 {
  z-index: 4;
  transform: translateX(-50%) rotate(0deg);
}

#sticker-3d-2 {
  z-index: 3;
  transform: translateX(-86%) rotate(-14deg);
}

#sticker-3d-3 {
  z-index: 2;
  transform: translateX(-14%) rotate(13deg);
}

#sticker-3d-4 {
  z-index: 1;
  transform: translateX(-122%) rotate(-25deg);
}

.sticker-fan::before {
  content: "CRAQUES • SELEÇÃO • RARO";
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 10;
  transform: translateX(-50%) rotate(-1deg);
  border-radius: 999px;
  background: var(--neon-green);
  color: var(--bg-darker);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(38, 230, 126, 0.2);
}

.media-card {
  position: absolute;
  min-width: 170px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-darker);
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.media-card span {
  display: block;
  color: var(--neon-green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.media-card strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
}

.media-card--top {
  top: 80px;
  right: -10px;
}

.media-card--bottom {
  left: -10px;
  bottom: 40px;
}

.glow-green {
  border-color: var(--neon-green);
}

.glow-red {
  border-color: var(--electric-red);
}

/* TICKER */
.ticker {
  overflow: hidden;
  background: var(--bg-card);
  color: var(--text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker__track {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 14px 0;
  animation: ticker 25s linear infinite;
}

.ticker span {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.ticker span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 32px;
  border-radius: 999px;
  background: var(--neon-green);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section--problem {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.split p, .showcase__copy p, .offer__copy p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
}

.pain-list {
  display: grid;
  gap: 14px;
}

.pain-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
  transition: transform 150ms ease, border-color 150ms ease;
}

.pain-item:hover {
  transform: translateX(4px);
  border-color: rgba(38, 230, 126, 0.2);
}

.pain-item span {
  color: var(--neon-green);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 32px;
  line-height: 1;
}

.pain-item p {
  margin: 0;
  color: var(--text-white);
  font-weight: 700;
  font-size: 15px;
}

/* SIMULATOR (CALCULADORA DO PREJUÍZO) */
.section--calculator {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.calculator-box {
  padding: 44px;
  border: 1px solid rgba(38, 230, 126, 0.2);
  border-radius: 20px;
  background: rgba(6, 29, 18, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calculator-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
}

.calculator-control {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.control-label {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

#stickers-value {
  color: var(--neon-green);
  font-size: 24px;
  font-weight: 900;
}

.slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-card);
  outline: none;
  margin: 15px 0;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--neon-green);
  cursor: pointer;
  transition: transform 100ms ease;
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 700;
  text-transform: uppercase;
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.result-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
}

.result-card span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.result-card strong {
  display: block;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.result-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.result-card--bad {
  border-color: rgba(255, 255, 255, 0.06);
}

.result-card--bad span, .result-card--bad strong {
  color: var(--text-white);
}

.result-card--bad p {
  color: var(--text-gray);
}

.result-card--good {
  background: rgba(38, 230, 126, 0.03);
  border-color: rgba(38, 230, 126, 0.2);
}

.result-card--good span, .result-card--good strong {
  color: var(--neon-green);
}

.result-card--good p {
  color: #c2eed5;
}

.calculator-summary {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
}

.calculator-summary h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.savings-highlight {
  color: var(--neon-green);
}

/* SECTION HEADING */
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--light h2, .section-heading--light p {
  color: var(--text-white);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 230, 126, 0.2);
}

.feature-card h3 {
  margin-top: 15px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.5;
}

.icon {
  display: inline-flex;
  min-width: 58px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--neon-green);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* STEPS (COMO FUNCIONA) */
.section--green {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps article {
  min-height: 220px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
}

.steps strong {
  color: var(--neon-green);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 40px;
  line-height: 1;
}

.steps h3 {
  margin-top: 15px;
  color: var(--text-white);
}

.steps p {
  margin-bottom: 0;
  color: var(--text-gray);
  font-size: 15px;
}

/* SHOWCASE / GALLERY */
.section--gallery {
  background: var(--bg-darker);
}

.showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.showcase img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.showcase__copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background: rgba(6, 29, 18, 0.2);
}

.showcase__copy h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 0.95;
  margin-bottom: 15px;
  color: var(--text-white);
}

.showcase__copy p {
  margin-bottom: 0;
}

/* OFFER / CHECKOUT */
.offer {
  display: grid;
  grid-template-columns: 0.9fr minmax(360px, 500px);
  gap: 50px;
  align-items: center;
}

.offer-card {
  position: relative;
  padding: 34px 26px;
  border: 1px solid rgba(38, 230, 126, 0.3);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.badge {
  display: inline-flex;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--neon-green);
  color: var(--bg-darker);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-white);
}

.offer-timer span {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-timer strong {
  font-size: 26px;
  color: var(--neon-yellow);
  font-variant-numeric: tabular-nums;
}

.offer-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-white);
  font-weight: 700;
  font-size: 15px;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--neon-green);
  color: var(--bg-darker);
  font-size: 11px;
  font-weight: 900;
}

.price {
  margin: 24px 0 20px;
  text-align: center;
}

.price span {
  display: block;
  color: var(--text-gray);
  font-size: 15px;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price strong {
  display: block;
  color: var(--neon-green);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
}

.secure {
  margin: 16px 0 0;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* FAQ ACCORDION */
.section--faq {
  background: var(--bg-darker);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: rgba(38, 230, 126, 0.3);
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  color: var(--neon-green);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  color: var(--electric-red);
}

.faq p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: var(--text-white);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto 30px;
}

.final-cta p {
  margin: 20px 0 0;
  color: var(--text-gray);
  font-size: 13px;
}

/* FOOTER */
.footer {
  padding: 24px 0 100px;
  background: #000201;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 600;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

/* MOBILE STICKY CTA */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(38, 230, 126, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.mobile-cta span {
  font-size: 14px;
  font-weight: 700;
}

.mobile-cta strong {
  color: var(--neon-green);
}

.mobile-cta a {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neon-green), #0a9b4d);
  color: var(--bg-darker);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 980px) {
  .hero__grid,
  .split,
  .showcase,
  .offer,
  .faq-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .features,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__media {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 12px 0; /* Original padding */
  }
  
  .topbar__inner {
    flex-direction: column; /* Stacked layout for prominent timer */
    gap: 10px;
    text-align: center;
    font-size: 12px;
    padding: 0 10px;
  }

  .topbar__link {
    display: none;
  }

  .timer {
    font-size: 24px; /* Large timer to drive scarcity */
    padding: 8px 20px;
    min-width: 120px;
    border-width: 2px;
    margin-top: 4px;
    margin-bottom: 2px;
  }

  /* Hero Section Overhaul on Mobile */
  .hero {
    padding-top: 48px; /* Comfortable spacing to clear the larger topbar */
    padding-bottom: 20px;
  }

  .hero__grid {
    gap: 20px; /* Reduced gap */
  }

  .hero__media {
    order: 1;
    min-height: auto;
    padding: 15px 5px;
    background: linear-gradient(145deg, rgba(6, 29, 18, 0.45), rgba(1, 8, 5, 0.75)); /* Added card bg like reference */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .hero__copy {
    order: 2;
    text-align: center;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 7.5vw, 34px); /* Slightly smaller to fit above the fold */
    line-height: 1.1;
  }

  h2 {
    font-size: 28px;
    line-height: 1.15;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 8px;
    letter-spacing: 0.1;
  }

  .hero__lead {
    font-size: 14px;
    margin-bottom: 20px; /* Compact margin */
    margin-inline: auto;
    line-height: 1.5;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-bottom: 0px;
    justify-content: stretch;
  }

  .button {
    width: 100%;
    min-height: 52px; /* Marginally thinner button to save vertical space */
    font-size: 14px;
  }

  .proof-strip {
    display: none;
  }

  .sticker-fan {
    height: 200px; /* Taller for larger cards */
    transform: none;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .sticker-wrapper {
    bottom: 10px;
    width: 115px; /* Larger stickers as requested */
  }

  .sticker-card {
    border-width: 4px;
  }

  /* Centered fan rotations on mobile (shifted +27% to balance visual center) */
  #sticker-3d-1 { transform: translateX(-23%) rotate(0deg); }
  #sticker-3d-2 { transform: translateX(-77%) rotate(-10deg); }
  #sticker-3d-3 { transform: translateX(31%) rotate(10deg); }
  #sticker-3d-4 { transform: translateX(-131%) rotate(-20deg); }

  .sticker-fan::before {
    display: none;
  }

  .media-card {
    display: none; /* Hide floating badges on mobile to optimize space */
  }

  .media-card span {
    font-size: 9px;
  }

  .media-card strong {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  /* Compact Calculator Widget on Mobile */
  .calculator-box {
    padding: 20px 16px; /* Reduced box padding */
  }

  .calculator-header {
    margin-bottom: 24px;
  }

  .calculator-grid {
    gap: 20px;
    margin-bottom: 24px;
  }

  .calculator-control {
    padding: 18px 14px; /* Thinner control padding */
  }

  .control-label {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .slider-input {
    margin: 8px 0;
  }

  .calculator-results {
    gap: 12px;
  }

  .result-card {
    padding: 14px; /* Thin result card */
  }

  .result-card strong {
    font-size: 26px; /* Scaled down price font size */
    margin-bottom: 4px;
  }

  .result-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .calculator-summary {
    padding-top: 20px;
  }

  .calculator-summary h3 {
    font-size: 20px; /* Smaller summary header */
    margin-bottom: 16px;
  }

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

  .steps article {
    min-height: 0;
  }

  .offer-card {
    padding: 24px 16px;
  }

  .price strong {
    font-size: 58px;
  }

  .footer .container {
    display: grid;
    text-align: center;
    gap: 10px;
  }

  .mobile-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 120px; /* Leaves clear space for mobile sticky CTA */
  }
}

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

  .ticker__track,
  .button,
  .button--pulse {
    animation: none;
    transition: none;
  }
}
