/* ============================================================
   Spin4Sweepstakes — Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --red:         #E63946;
  --red-dark:    #C1121F;
  --red-light:   #FF6B6B;
  --gold:        #FFB703;
  --gold-dark:   #E09900;
  --gold-light:  #FFE066;
  --teal:        #2A9D8F;
  --teal-dark:   #1D7A6E;
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-deep:   #1E3A8A;
  --blue-light:  #DBEAFE;
  --blue-pale:   #EFF6FF;
  --sky:         #0EA5E9;
  --sky-dark:    #0284C7;
  --orange:      #F4A261;
  --green:       #06D6A0;
  --navy:        #1E3A8A;
  --navy-mid:    #2563EB;

  /* UI */
  --bg:          #F8F9FA;
  --bg-card:     #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --border-dark: #CBD5E1;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  /* Shape */
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter',   system-ui, sans-serif;

  /* Motion */
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t: .25s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Type ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2rem,6vw,3.5rem); }
h2 { font-size: clamp(1.6rem,4vw,2.6rem); }
h3 { font-size: clamp(1.1rem,3vw,1.5rem); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: scale(.97) !important; }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; box-shadow: 0 4px 20px rgba(230,57,70,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,57,70,.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1A1A2E; box-shadow: 0 4px 20px rgba(255,183,3,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,183,3,.45); }
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-ghost {
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-full { width: 100%; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 10px 0;
  transition: box-shadow var(--t);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav.at-top {
  box-shadow: none;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; color: var(--navy);
}
.logo-wheel {
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(
    var(--gold)   0deg 60deg,  var(--red)   60deg 120deg,
    var(--teal)  120deg 180deg, var(--green) 180deg 240deg,
    var(--blue)  240deg 300deg, var(--orange) 300deg 360deg
  );
  border: 2px solid rgba(255,255,255,.6);
  animation: spin-slow 8s linear infinite; flex-shrink: 0;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-name { letter-spacing: -.02em; }
.logo-name span { color: var(--red); }
.footer .logo-name { color: #fff; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  color: var(--navy); font-weight: 600; font-size: .88rem;
  transition: color var(--t); position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform var(--t) var(--ease-out);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 2px solid var(--blue-light);
    flex-direction: column; gap: 24px;
    padding: 32px 0; transform: translateY(-120%);
    transition: transform var(--t) var(--ease-out);
    box-shadow: 0 8px 24px rgba(37,99,235,.12);
  }
  .nav-menu { background: #fff; }
  .nav-menu.open { transform: translateY(0); }
  .nav-cta { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 50%, #38BDF8 100%);
  display: flex; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 75% 25%, rgba(255,255,255,.12) 0%, transparent 100%),
    radial-gradient(ellipse 45% 40% at 20% 70%, rgba(255,183,3,.14) 0%, transparent 100%),
    radial-gradient(ellipse 35% 35% at 85% 80%, rgba(230,57,70,.12) 0%, transparent 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; position: relative; z-index: 1; padding: 60px 0;
}
.hero-form-col {
  display: flex; align-items: flex-start; justify-content: center;
}
.hero-form-col .form-wrap {
  margin: 0; width: 100%; max-width: 520px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,183,3,.12); border: 1px solid rgba(255,183,3,.3);
  color: var(--gold); font-size: .75rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-full);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: glow-dot 1.5s ease-in-out infinite; }
@keyframes glow-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,183,3,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(255,183,3,0); }
}
.hero-text h1 { color: #fff; margin-bottom: 16px; }
.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.hero-sub { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 36px; justify-content: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.09);
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-icon { font-size: 1.2rem; }
.trust-label { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* Hero wheel column */
.hero-visual {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
}
.wheel-wrap {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
}
.wheel-glow {
  position: absolute; inset: -28px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,3,.28) 0%, transparent 68%);
  animation: wheel-glow-pulse 3s ease-in-out infinite;
}
@keyframes wheel-glow-pulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}
.wheel-pointer-top {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 30px solid var(--gold); z-index: 5;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.35));
}
.wheel-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #E5E7EB 100%);
  border: 4px solid var(--gold); z-index: 5;
  box-shadow: 0 3px 12px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.wheel-rotate { animation: hero-spin 22s linear infinite; }
@keyframes hero-spin { to { transform: rotate(360deg); } }
.hero-stats {
  display: flex; gap: 28px; padding: 16px 28px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  color: #fff; line-height: 1;
}
.stat-label { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 500; margin-top: 3px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; text-align: center; }
  .hero-form-col { width: 100%; order: -1; }
  .hero-form-col .form-wrap { max-width: 100%; }
  .hero-trust { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 18px; padding: 14px 18px; }
  .stat-num { font-size: 1.3rem; }
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── How It Works ────────────────────────────────────────────── */
.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-card {
  text-align: center; padding: 36px 24px;
  border-radius: var(--radius-lg); border: 2px solid var(--border);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.step-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(230,57,70,.3);
}
.step-emoji { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { margin-bottom: 9px; font-size: 1.05rem; }
.step-card p  { color: var(--text-muted); font-size: .88rem; }
@media (max-width: 680px) { .steps-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ── Multi-step Form ─────────────────────────────────────────── */
.form-section { background: var(--bg); }
.form-wrap {
  max-width: 580px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.form-head {
  background: linear-gradient(135deg, #1E3A8A, #2563EB);
  padding: 26px 36px; text-align: center;
}
.form-head h3 { color: #fff; margin-bottom: 5px; }
.form-head p  { color: rgba(255,255,255,.6); font-size: .88rem; }
.form-progress { padding: 22px 36px 0; }
.progress-track {
  height: 6px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: var(--radius-full);
  transition: width .45s var(--ease-out);
  width: 12.5%;
}
.progress-text { font-size: .75rem; font-weight: 600; color: var(--text-muted); text-align: right; }
.form-body { padding: 32px 36px 36px; position: relative; min-height: 290px; }
.form-step {
  animation: stepIn .35s var(--ease-out);
}
.form-step.hidden { display: none; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-28px); }
}
.step-q { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
.step-hint { color: var(--text-muted); font-size: .88rem; margin-bottom: 22px; }

/* Fields */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .83rem; margin-bottom: 6px; color: var(--text); }
.field input, .field select {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color var(--t), box-shadow var(--t); outline: none;
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: #B0B8C1; }
.field input:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,.1); }
.field input.err { border-color: var(--red); }
.field-err { font-size: .75rem; color: var(--red); margin-top: 4px; display: none; }
.field.has-err .field-err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%); color: var(--text-muted); pointer-events: none; font-size: .85rem;
}

/* Yes/No radio cards */
.yn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.yn-card input { display: none; }
.yn-card label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--text-muted);
  transition: all var(--t); user-select: none;
}
.yn-card label:hover { border-color: var(--red); color: var(--red); }
.yn-card input:checked + label {
  border-color: var(--red); background: var(--red); color: #fff;
  box-shadow: 0 4px 14px rgba(230,57,70,.28);
}
.yn-icon { font-size: 1.15rem; }

/* Transition step */
.step-transition { text-align: center; padding: 12px 0 4px; }
.trans-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  margin: 0 auto 18px; box-shadow: 0 6px 22px rgba(255,183,3,.38);
  animation: pop-in .5s var(--ease-spring);
}
@keyframes pop-in { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.step-transition h3 { font-size: 1.35rem; margin-bottom: 9px; }
.step-transition p { color: var(--text-muted); font-size: .9rem; max-width: 300px; margin: 0 auto 22px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chip {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
}
.chip-icon { color: var(--green); font-size: .95rem; }

/* Form nav */
.form-nav { display: flex; gap: 12px; margin-top: 26px; }
.btn-back-form {
  padding: 12px 22px; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  background: var(--bg); border: 2px solid var(--border); color: var(--text-muted);
  transition: all var(--t);
}
.btn-back-form:hover { border-color: var(--border-dark); color: var(--text); }
.btn-fwd {
  flex: 1; padding: 13px 22px; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,.3);
  transition: all var(--t); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-fwd:hover { box-shadow: 0 6px 24px rgba(230,57,70,.5); transform: translateY(-1px); }

/* Success state */
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.success-icon {
  width: 76px; height: 76px; background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 18px;
  box-shadow: 0 6px 22px rgba(6,214,160,.32); animation: pop-in .5s var(--ease-spring);
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 9px; }
.form-success p { color: var(--text-muted); max-width: 280px; margin: 0 auto 24px; }

@media (max-width: 520px) {
  .form-head  { padding: 20px 22px; }
  .form-progress { padding: 16px 22px 0; }
  .form-body  { padding: 24px 22px; min-height: 260px; }
  .field-row  { grid-template-columns: 1fr; }
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.t-card {
  padding: 26px; border-radius: var(--radius-lg);
  border: 2px solid var(--border); position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.t-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-card::before {
  content: '\201C'; position: absolute; top: 10px; left: 18px;
  font-size: 3.5rem; font-family: Georgia, serif; color: var(--red); opacity: .12; line-height: 1;
}
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.t-text { color: var(--text); font-size: .92rem; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .88rem; }
.t-loc  { font-size: .75rem; color: var(--text-muted); }
@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (min-width: 500px) and (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: linear-gradient(160deg, var(--blue-pale) 0%, var(--blue-light) 100%); }
.faq-section .section-header .eyebrow { color: var(--blue); }
.faq-section .section-header h2 { color: var(--navy); }
.faq-section .section-header p   { color: var(--text-muted); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,.12); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--navy); transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--blue); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--t), background var(--t);
  font-size: .9rem; color: var(--blue);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 22px 18px; color: var(--text-muted); font-size: .88rem; line-height: 1.7;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); }
.cta-inner { text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-inner p  { color: rgba(255,255,255,.75); margin-bottom: 30px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-inner .btn-gold { font-size: 1.05rem; padding: 15px 36px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: linear-gradient(145deg, #1E3A8A 0%, #1D4ED8 100%); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-col h5 {
  color: #fff; font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,.45); font-size: .85rem; transition: color var(--t); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: .75rem; color: rgba(255,255,255,.3); line-height: 1.55; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.35); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Spinner Page ────────────────────────────────────────────── */
.spinner-page {
  min-height: 100vh;
  background: linear-gradient(145deg, #1E3A8A 0%, #2563EB 55%, #38BDF8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center; position: relative; overflow: hidden;
}
.spinner-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 35%, rgba(255,255,255,.1) 0%, transparent 100%),
    radial-gradient(ellipse 40% 40% at 80% 75%, rgba(255,183,3,.12) 0%, transparent 100%);
}
.sp-logo { margin-bottom: 48px; position: relative; z-index: 1; }
.sp-wheel { position: relative; display: inline-block; margin-bottom: 44px; }
.sp-glow {
  position: absolute; inset: -32px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,183,3,.3) 0%, transparent 65%);
  animation: wheel-glow-pulse 2s ease-in-out infinite;
}
.sp-wheel-rotate { animation: sp-spin 1.8s linear infinite; }
@keyframes sp-spin { to { transform: rotate(360deg); } }
.sp-heading { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem,4vw,2.2rem); color: #fff; margin-bottom: 10px; }
.sp-sub { color: rgba(255,255,255,.55); font-size: .95rem; margin-bottom: 34px; }
.sp-bar-wrap { width: 300px; max-width: 100%; height: 7px; background: rgba(255,255,255,.1); border-radius: var(--radius-full); overflow: hidden; margin: 0 auto 16px; }
.sp-bar { height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: var(--radius-full); width: 0; animation: sp-load 3.6s var(--ease-out) forwards; }
@keyframes sp-load { 0%{width:0%} 65%{width:72%} 85%{width:85%} 100%{width:100%} }
.sp-dots { display: flex; gap: 6px; justify-content: center; }
.sp-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); animation: dot-bounce 1.2s ease-in-out infinite; }
.sp-dot:nth-child(2){ animation-delay:.18s; }
.sp-dot:nth-child(3){ animation-delay:.36s; }
@keyframes dot-bounce {
  0%,80%,100%{ transform:scale(.7); opacity:.4; }
  40%{ transform:scale(1.2); opacity:1; }
}

/* ── Offers Page ─────────────────────────────────────────────── */
.offers-hero {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 55%, #38BDF8 100%);
  padding: 120px 0 64px; text-align: center; position: relative; overflow: hidden;
}
.offers-hero::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 60% 30%, rgba(255,255,255,.1) 0%, transparent 100%);
}
.offers-hero h1 { color: #fff; position: relative; }
.offers-hero p  { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-top: 12px; position: relative; }
.offers-section { background: var(--bg); }
.filter-bar { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 700; font-size: .83rem;
  border: 2px solid var(--border); background: #fff; color: var(--text-muted);
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--red); background: var(--red); color: #fff; }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.o-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.o-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.o-img {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.o-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.o-card:hover .o-img img { transform: scale(1.06); }
.o-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 11px; border-radius: var(--radius-full);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #fff;
}
.badge-red  { background: var(--red); }
.badge-teal { background: var(--teal); }
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-blue { background: var(--blue); }
.o-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.o-cat { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--red); margin-bottom: 7px; }
.o-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.o-desc { color: var(--text-muted); font-size: .84rem; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.o-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.o-prize { font-family: var(--font-head); font-weight: 900; font-size: 1.25rem; color: var(--red); }
.o-prize small { font-size: .65rem; font-weight: 600; color: var(--text-muted); display: block; }
.o-cta {
  padding: 8px 18px; background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; border-radius: var(--radius-full);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  box-shadow: 0 3px 10px rgba(230,57,70,.28); transition: all var(--t);
}
.o-cta:hover { box-shadow: 0 5px 18px rgba(230,57,70,.45); transform: translateY(-1px); }
@media (max-width: 880px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .offers-grid { grid-template-columns: 1fr; } }

/* ── Scroll Reveal ───────────────────────────────────────────── */
.animate-in { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.stagger.visible > *:nth-child(1){ transition-delay:0ms; }
.stagger.visible > *:nth-child(2){ transition-delay:75ms; }
.stagger.visible > *:nth-child(3){ transition-delay:150ms; }
.stagger.visible > *:nth-child(4){ transition-delay:225ms; }
.stagger.visible > *:nth-child(5){ transition-delay:300ms; }
.stagger.visible > *:nth-child(6){ transition-delay:375ms; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ── Utilities ───────────────────────────────────────────────── */
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 768px) {
  html, body { scrollbar-width: none; -ms-overflow-style: none; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
}
