/* Font loaded via <link> in HTML — do not duplicate with @import */

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --white: #ffffff;
  --bg: #f0f4ff;
  --surface: #ffffff;
  --surface-2: #f8faff;

  --green: #1b8a3d;
  --green-light: #d4edda;
  --green-mid: #27ae60;
  --green-dark: #0d5c29;
  --green-glow: rgba(27, 138, 61, 0.25);
  --green-gradient: linear-gradient(
    135deg,
    #0d5c29 0%,
    #1b8a3d 50%,
    #27ae60 100%
  );

  --blue: #1a56db;
  --blue-light: #ebf5ff;
  --blue-mid: #2563eb;
  --blue-dark: #1e3a8a;
  --blue-glow: rgba(26, 86, 219, 0.2);

  --gold: #f59e0b;
  --gold-light: #fef3c7;
  --gold-glow: rgba(245, 158, 11, 0.3);

  --red: #dc2626;
  --red-light: #fee2e2;

  --text: #0f172a;
  --text-sec: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-pill: 50px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.07);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.13);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-green: 0 8px 30px rgba(27, 138, 61, 0.3);
  --shadow-blue: 0 8px 30px rgba(26, 86, 219, 0.25);

  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", sans-serif;
  --t: 0.2s ease;
  --t-slow: 0.4s ease;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ── Skip navigation link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
}
input,
select {
  font-family: var(--font);
}
img {
  max-width: 100%;
  display: block;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--t-slow);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo-icon {
  font-size: 28px;
  animation: logoSpin 6s linear infinite;
  display: inline-block;
}
@keyframes logoSpin {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(20deg);
  }
}
.logo-text strong {
  color: var(--green);
}
.header-nav {
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.nav-link:hover {
  color: var(--green);
  background: var(--green-light);
  text-decoration: none;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-gradient);
  color: white;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: all var(--t);
  box-shadow: var(--shadow-green);
  overflow: hidden;
}
.cart-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--t);
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(27, 138, 61, 0.4);
}
.cart-btn:hover::before {
  opacity: 1;
}
.cart-btn:active {
  transform: translateY(0);
}
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 0 4px;
  transition: transform var(--t);
}
.cart-badge.pulse {
  animation: badgePulse 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.6);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════
   PRIZE STRIP (HERO BANNER)
═══════════════════════════════════════ */
.prize-strip {
  background: var(--green-gradient);
  color: white;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.prize-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 60%
    );
}
/* Floating orbs */
.prize-strip::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -100px;
  right: -60px;
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.prize-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.prize-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.prize-amount {
  flex: 1;
}
.prize-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.prize-value {
  display: block;
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: prizeGlow 3s ease-in-out infinite;
}
@keyframes prizeGlow {
  0%,
  100% {
    text-shadow:
      0 4px 20px rgba(0, 0, 0, 0.2),
      0 0 40px rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow:
      0 4px 20px rgba(0, 0, 0, 0.2),
      0 0 40px rgba(255, 255, 255, 0.15);
  }
}
.prize-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.countdown-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 62px;
  transition: background var(--t);
}
.countdown-block:hover {
  background: rgba(0, 0, 0, 0.3);
}
.countdown-block span {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.countdown-block small {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown-sep {
  font-size: 26px;
  font-weight: 900;
  opacity: 0.5;
  margin: 0 2px;
  padding-bottom: 14px;
  animation: sepBlink 1s step-end infinite;
}
@keyframes sepBlink {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.15;
  }
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
}
.trust-icon {
  font-size: 16px;
}

/* ═══════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════ */
.main-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ═══════════════════════════════════════
   HERO + CARD SECTION
═══════════════════════════════════════ */
.hero-card-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

/* Hero Text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.08);
  color: #b8860b;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: slideUpStagger 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd700;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
.hero-title {
  font-size: 68px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--text);
  word-spacing: 0.1em;
  animation: slideUpStagger 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.hero-title-thin {
  font-weight: 500;
  font-size: 0.95em;
  color: var(--text-sec);
  letter-spacing: -0.3px;
}
.hero-title-normal {
  font-weight: 500;
  color: var(--text-sec);
}
.hero-title-prize {
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
  }
  50% {
    filter: brightness(1.15) drop-shadow(0 0 16px rgba(255, 215, 0, 0.5));
  }
}

.text-gradient {
  background: linear-gradient(135deg, #1b8a3d 0%, #27ae60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 400;
  animation: slideUpStagger 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}
.hero-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.step:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--text);
  transform: translateX(4px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green-gradient);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--green-glow);
}
.step-arrow {
  display: none;
}
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sec);
  font-weight: 500;
  padding: 9px 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.hero-cta-note::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.section-title {
  font-size: 30px;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -1px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--text-sec);
  font-size: 16px;
  margin-bottom: 40px;
}
.section-title-wrapper {
  margin-bottom: 40px;
}
.section-title-wrapper .section-title {
  margin-bottom: 8px;
}

.how-it-works {
  margin-bottom: 80px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-gradient);
  transform: scaleX(0);
  transition: transform var(--t-slow);
  transform-origin: left;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.how-card:hover::before {
  transform: scaleX(1);
}
.how-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  background: var(--green-light);
  transition: all var(--t);
}
.how-card:hover .how-icon-wrap {
  background: var(--green-gradient);
  transform: scale(1.1) rotate(-5deg);
}
.how-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.how-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   RULES SECTION
═══════════════════════════════════════ */
.rules-section {
  margin-bottom: 80px;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
  transition: all var(--t);
}
.rule-item:hover {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--text);
}
.rule-icon {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 0px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  min-width: 0;
}
.footer-logo {
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo strong {
  color: var(--green-mid);
}
.footer-email {
  color: var(--green-mid);
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
  transition: color var(--t);
}
.footer-email:hover {
  color: white;
  text-decoration: none;
}
.footer-text {
  font-size: 13px;
  line-height: 1.6;
}
.footer-right {
  text-align: right;
}
.footer-links {
  font-size: 13px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color var(--t);
}
.footer-links a:hover {
  color: white;
  text-decoration: none;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════ */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--text);
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  max-width: 340px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateX(calc(100% + 30px));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateX(0);
}
.toast.toast-success {
  background: #064e3b;
  border-left: 4px solid var(--green-mid);
}
.toast.toast-error {
  background: #7f1d1d;
  border-left: 4px solid var(--red);
}

/* ═══════════════════════════════════════
   SECTION TITLES — Accent decoration
═══════════════════════════════════════ */
.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--green-gradient);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ═══════════════════════════════════════
   HERO — Background blob decoration
═══════════════════════════════════════ */
.hero-card-section {
  position: relative;
}
.hero-card-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    ellipse,
    rgba(27, 138, 61, 0.07) 0%,
    transparent 65%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-card-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(26, 86, 219, 0.05) 0%,
    transparent 65%
  );
  bottom: -60px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-text,
.card-wrapper {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   HOW IT WORKS — Step number decoration
═══════════════════════════════════════ */
.how-card::after {
  content: attr(data-step);
  position: absolute;
  bottom: 6px;
  right: 14px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(27, 138, 61, 0.06);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--t-slow);
}
.how-card:hover::after {
  color: rgba(27, 138, 61, 0.1);
}
.how-icon-wrap {
  transition:
    transform var(--t),
    background var(--t);
}

/* ═══════════════════════════════════════
   RULES — Icon pill backgrounds
═══════════════════════════════════════ */
.rule-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  flex-shrink: 0;
  font-size: 20px;
  margin-top: 0;
  transition:
    background var(--t),
    transform var(--t);
}
.rule-item:hover .rule-icon {
  background: rgba(27, 138, 61, 0.2);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════
   TRUST BAR — Separator dots (desktop)
═══════════════════════════════════════ */
@media (min-width: 769px) {
  .trust-item {
    position: relative;
  }
  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(-16px);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: var(--border);
  }
}

/* ═══════════════════════════════════════
   PRE-FOOTER CTA BANNER
═══════════════════════════════════════ */
.cta-banner-section {
  background: var(--green-gradient);
  border-radius: 28px;
  padding: 56px 56px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.cta-banner-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  top: -160px;
  right: -60px;
  pointer-events: none;
}
.cta-banner-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -90px;
  left: 240px;
  pointer-events: none;
}
.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-banner-text {
  flex: 1;
}
.cta-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-banner-title {
  font-size: 38px;
  font-family: var(--font-display);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin: 0;
}
.cta-banner-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(245, 158, 11, 0.5);
}
.cta-banner-btn {
  background: white;
  color: var(--green-dark);
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  cursor: pointer;
}
.cta-banner-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
}
.cta-banner-btn:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════════
   FOOTER — Green gradient top accent
═══════════════════════════════════════ */
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-gradient);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 60px;
    letter-spacing: -1.5px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  /* Push cart + hamburger to the right when nav is hidden */
  .cart-btn {
    margin-left: auto;
  }
  .hero-title {
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .hero-eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .prize-value {
    font-size: 36px;
  }
  .countdown-block span {
    font-size: 22px;
  }
  .countdown-block {
    min-width: 52px;
    padding: 6px 10px;
  }
  .rules-section {
    padding: 32px 24px;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-right {
    text-align: left;
  }
  .footer-links {
    justify-content: flex-start;
  }

  /* Trust bar consolidation */
  .trust-bar-inner {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar {
    display: none;
  }
  .trust-item {
    white-space: nowrap;
  }

  /* Mobile: mostra a cartela PRIMEIRO, texto abaixo */
  .hero-card-section {
    gap: 24px;
  }
  .card-wrapper {
    order: -1;
  }
  .hero-text {
    order: 1;
  }

  /* CTA banner mobile */
  .cta-banner-section {
    padding: 40px 32px;
    border-radius: 20px;
  }
  .cta-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .cta-banner-title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .cta-banner-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }
  .main-content {
    padding: 32px 16px 60px;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-card {
    padding: 24px 18px;
  }
  .cart-label {
    display: none;
  }
  .prize-strip {
    padding: 14px 12px;
  }
  .prize-strip-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }
  .prize-label {
    display: none;
  }
  .prize-badge {
    display: none;
  }
  .prize-value {
    font-size: 24px;
    white-space: nowrap;
    line-height: 1;
  }
  .prize-amount {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .countdown-label {
    font-size: 9px;
    margin-bottom: 2px;
  }
  .countdown-timer {
    gap: 2px;
  }
  .countdown-block {
    min-width: 42px;
    padding: 4px 8px;
  }
  .countdown-block span {
    font-size: 16px;
  }
  .countdown-block small {
    font-size: 8px;
    margin-top: 2px;
  }
  .countdown-sep {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .hero-title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Rules section - reduce padding */
  .rules-section {
    padding: 32px 20px;
  }
  .rule-item {
    padding: 12px 14px;
  }

  /* CTA banner extra compact */
  .cta-banner-section {
    padding: 32px 24px;
    margin-bottom: 60px;
    border-radius: 16px;
  }
  .cta-banner-title {
    font-size: 22px;
  }
  .cta-banner-section::before {
    display: none;
  }

  /* Trust bar: apenas 3 itens (esconde email e +18) */
  .trust-item:nth-child(2),
  .trust-item:nth-child(5) {
    display: none;
  }
}

/* ═══════════════════════════════════════
   EXTRA SMALL DEVICES (< 380px)
═══════════════════════════════════════ */
@media (max-width: 380px) {
  .header-inner {
    padding: 10px 12px;
  }
  .main-content {
    padding: 24px 12px 60px;
  }

  .prize-value {
    font-size: 20px;
    white-space: nowrap;
  }
  .prize-strip-inner {
    gap: 6px;
  }
  .countdown-block {
    min-width: 34px;
    padding: 3px 5px;
  }
  .countdown-block span {
    font-size: 13px;
  }
  .countdown-block small {
    font-size: 7px;
  }
  .countdown-sep {
    font-size: 14px;
    margin: 0 1px;
  }
  .hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 26px;
    letter-spacing: -0.3px;
  }
  .section-sub {
    font-size: 14px;
  }

  .rules-section {
    padding: 24px 16px;
  }
  .rule-item {
    padding: 10px 12px;
  }

  .how-card {
    padding: 18px 14px;
  }
  .how-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .trust-bar-inner {
    gap: 8px;
  }
  .trust-item {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════
   HAMBURGER MENU (mobile)
═══════════════════════════════════════ */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: white;
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  animation: navSlide 0.2s ease;
}
@keyframes navSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav-link {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: all var(--t);
}
.mobile-nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-link:hover {
  color: var(--green);
  background: var(--green-light);
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
}

/* ═══════════════════════════════════════
   STICKY CHECKOUT BAR (mobile)
═══════════════════════════════════════ */
.sticky-checkout-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-checkout-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: white;
    border-top: 2px solid var(--green);
    padding: 10px 12px;
    gap: 10px;
    align-items: center;
    z-index: 150;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
  }
  .sticky-checkout-bar.visible {
    transform: translateY(0);
  }
  .sticky-bar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .sticky-bar-count {
    font-size: 11px;
    color: var(--text-sec);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .sticky-bar-total {
    font-size: 22px;
    font-weight: 900;
    color: var(--green);
    font-family: var(--font-display);
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .sticky-bar-btn {
    background: var(--green-gradient);
    color: white;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font);
    box-shadow: var(--shadow-green);
    white-space: nowrap;
    transition: all var(--t);
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-bar-btn:active {
    transform: scale(0.97);
  }

  /* Espaço extra no rodapé quando sticky bar está visível */
  body.has-sticky-bar .main-content {
    padding-bottom: 100px;
  }
  body.has-sticky-bar .footer {
    padding-bottom: 96px;
  }
}

/* Sticky bar — extra small override (outside nested scope) */
@media (max-width: 380px) {
  .sticky-bar-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
}
