/* ═══════════════════════════════════════════════════════════
   FIFA World Cup 2026™ — Ticket Store Design System
   Colors: Navy #001838 · Gold #C89520 · Red #DA291C · White
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:       #001838;
  --navy-mid:   #002d5a;
  --navy-light: #0a3d7a;
  --gold:       #C89520;
  --gold-light: #f0c040;
  --gold-pale:  #fef9ec;
  --red:        #DA291C;
  --red-dark:   #b01f15;
  --white:      #ffffff;
  --off-white:  #f5f5f0;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --green:      #15803d;

  --gradient:      linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  --gradient-gold: linear-gradient(135deg, #b8841a 0%, #e0aa30 50%, #b8841a 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --shadow-md:   0 4px 16px rgba(0,0,0,.15);
  --shadow-card: 0 2px 12px rgba(0,24,56,.10);
  --shadow-lg:   0 8px 40px rgba(0,24,56,.20);
  --radius:      12px;
  --transition:  all .2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { line-height: 1.7; }

/* ── Container ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(200,149,32,.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,149,32,.5); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-red   { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-sm  { padding: 8px 18px; font-size: .85rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Announcement bar ───────────────────────────────────── */
.announcement-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-badge {
  width: 44px; height: 44px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.nav-logo-text strong { display: block; color: var(--white); font-size: 1rem; font-weight: 800; letter-spacing: -.01em; }
.nav-logo-text span   { color: var(--gold); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
  padding: 8px 12px; border-radius: 6px; transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links .nav-cta {
  background: var(--gradient-gold); color: var(--navy);
  font-weight: 700; padding: 9px 18px; margin-left: 4px;
}
.nav-links .nav-cta:hover { opacity: .9; }

.nav-mobile-btn {
  display: none; background: none; border: none;
  color: white; cursor: pointer; font-size: 1.4rem; padding: 8px;
}
.nav-mobile { display: none; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--gradient);
  position: relative; overflow: hidden;
  padding: 80px 0 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,149,32,.2); border: 1px solid var(--gold);
  color: var(--gold-light); border-radius: 50px;
  padding: 6px 14px; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }
.hero-features {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.hero-feat {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.85); font-size: .83rem; font-weight: 500;
}
.hero-feat::before {
  content: '✓';
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: var(--navy); flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right — ticket visual */
.hero-visual {
  display: flex; flex-direction: column; gap: 16px;
}
.hero-ticket {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.hero-ticket::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-gold);
}
.hero-ticket-match { font-size: .78rem; color: var(--gray-500); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hero-ticket-teams { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.hero-ticket-meta { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; }
.hero-ticket-venue { color: var(--gray-500); }
.hero-ticket-price { font-weight: 800; color: var(--red); font-size: 1rem; }
.hero-ticket-avail { font-size: .72rem; color: var(--green); font-weight: 600; }

.hero-urgency {
  background: rgba(218,41,28,.15); border: 1px solid rgba(218,41,28,.4);
  border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  color: #ff6b6b; font-size: .82rem; font-weight: 600;
}

/* ── Tournament strip ───────────────────────────────────── */
.tournament-strip {
  background: var(--navy-mid);
  padding: 16px 0;
}
.strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 24px; border-right: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0; text-align: center;
}
.strip-item:last-child { border-right: none; }
.strip-item .si-val { color: var(--gold); font-size: 1.3rem; font-weight: 900; }
.strip-item .si-lbl { color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }

/* ── Section headers ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold);
  border: 1px solid #e8c74e; border-radius: 50px;
  padding: 4px 14px; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.section-header h2 { color: var(--navy); }
.section-header p  { color: var(--gray-500); max-width: 540px; margin: 12px auto 0; }

/* ── Ticket cards ───────────────────────────────────────── */
.tickets-section { padding: 80px 0; background: var(--off-white); }
.tickets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.ticket-card {
  background: white; border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gray-200);
  overflow: hidden; transition: var(--transition);
  position: relative;
}
.ticket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ticket-card.featured { border-color: var(--gold); }
.ticket-card.featured .ticket-card-header { background: var(--gradient); }

.ticket-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: white;
  border-radius: 50px; padding: 3px 10px;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.ticket-card-badge.gold { background: var(--gradient-gold); color: var(--navy); }

.ticket-card-header {
  background: var(--off-white);
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.ticket-stage { font-size: .72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.ticket-name  { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.ticket-desc  { font-size: .8rem; color: var(--gray-500); }

.ticket-card-body { padding: 20px; }
.ticket-cats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.ticket-cat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; background: var(--gray-50); border-radius: 8px;
  border: 1px solid var(--gray-100);
}
.ticket-cat-name { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.ticket-cat-price { font-weight: 800; color: var(--navy); font-size: .9rem; }

.ticket-includes { margin-bottom: 18px; }
.ticket-include-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--gray-700); padding: 3px 0;
}
.ticket-include-item::before { content: '✓'; color: var(--green); font-weight: 800; font-size: .75rem; }

/* ── Venues section ─────────────────────────────────────── */
.venues-section { padding: 80px 0; }
.venues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.venue-card {
  background: white; border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  padding: 18px 16px; text-align: center;
  transition: var(--transition);
}
.venue-card:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }
.venue-flag  { font-size: 1.8rem; margin-bottom: 8px; }
.venue-city  { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.venue-name  { font-size: .75rem; color: var(--gray-400); margin-bottom: 6px; }
.venue-games { font-size: .72rem; font-weight: 600; color: var(--gold); }

/* ── How it works ───────────────────────────────────────── */
.how-section { padding: 80px 0; background: var(--navy); }
.how-section .section-header h2 { color: white; }
.how-section .section-tag { background: rgba(200,149,32,.15); border-color: var(--gold); color: var(--gold); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.how-card { text-align: center; }
.how-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--gradient-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: var(--navy);
}
.how-title { color: white; font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.how-desc  { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.6; }

/* ── Urgency section ────────────────────────────────────── */
.urgency-section {
  background: var(--red);
  padding: 48px 0;
  text-align: center;
}
.urgency-section h2 { color: white; margin-bottom: 8px; }
.urgency-section p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.countdown-wrap { display: flex; gap: 16px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.countdown-unit {
  background: rgba(0,0,0,.25);
  border-radius: 12px; padding: 16px 20px; min-width: 80px; text-align: center;
}
.countdown-val { font-size: 2rem; font-weight: 900; color: white; display: block; line-height: 1; }
.countdown-lbl { font-size: .7rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block; }

/* ── Social proof ───────────────────────────────────────── */
.proof-section { padding: 80px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: white; border-radius: 14px;
  padding: 22px; border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text  { font-size: .875rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white;
}
.review-name    { font-weight: 700; font-size: .85rem; color: var(--navy); }
.review-country { font-size: .75rem; color: var(--gray-400); }

/* ── Stats bar ──────────────────────────────────────────── */
.stats-bar { background: var(--gold-pale); border-top: 2px solid #e8c74e; border-bottom: 2px solid #e8c74e; padding: 28px 0; }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.stat-item { text-align: center; }
.stat-val { font-size: 1.8rem; font-weight: 900; color: var(--navy); display: block; }
.stat-lbl { font-size: .78rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--gray-50); }
.faq-list    { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item    { background: white; border-radius: 12px; border: 1.5px solid var(--gray-200); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; text-align: left;
  font-size: .9rem; font-weight: 700; color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .faq-icon { font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: .875rem; color: var(--gray-500); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Final CTA ──────────────────────────────────────────── */
.final-cta { background: var(--gradient); padding: 80px 0; text-align: center; }
.final-cta h2 { color: white; margin-bottom: 12px; }
.final-cta p  { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 1.05rem; }

/* ── Trust badges ───────────────────────────────────────── */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin: 32px 0 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: 8px 14px; color: rgba(255,255,255,.8); font-size: .78rem;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: #000e20; padding: 56px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name { color: white; font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.footer-brand-desc { color: rgba(255,255,255,.45); font-size: .82rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col a  { display: block; color: rgba(255,255,255,.45); font-size: .82rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .75rem; color: rgba(255,255,255,.3);
}

/* ── Live notification widget ───────────────────────────── */
.live-notif {
  position: fixed; bottom: 24px; left: 24px;
  background: white; border-radius: 12px;
  padding: 12px 16px; box-shadow: 0 8px 32px rgba(0,0,0,.15);
  display: flex; align-items: center; gap: 10px;
  max-width: 300px; z-index: 999;
  border-left: 4px solid var(--green);
  animation: slideInLeft .4s ease;
  font-size: .82rem;
}
@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
.live-notif-icon { font-size: 1.2rem; }
.live-notif-text strong { display: block; font-size: .83rem; color: var(--navy); }
.live-notif-text span   { color: var(--gray-400); font-size: .75rem; }

/* ── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2); z-index: 200;
}
.sticky-cta .btn { width: 100%; }

/* ── Checkout page ──────────────────────────────────────── */
.checkout-page { background: var(--off-white); padding: 40px 0 80px; min-height: 70vh; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.checkout-card {
  background: white; border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gray-200);
}
.checkout-section-title {
  font-size: .88rem; font-weight: 700; color: var(--navy);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.order-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 0; border-top: 2px solid var(--navy); margin-top: 8px; }
.order-total-price { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.order-summary-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.checkout-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.checkout-trust-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--gray-500); }

/* ── Form elements ──────────────────────────────────────── */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.form-hint  { font-size: .75rem; color: var(--gray-400); margin-top: 2px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-size: .9rem; color: var(--gray-900);
  transition: var(--transition); outline: none; background: white;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,24,56,.08); }
.promo-wrap { display: flex; gap: 8px; }
.promo-result { font-size: .78rem; margin-top: 4px; }
.promo-result.success { color: var(--green); }
.promo-result.fail    { color: var(--red); }

/* Card field */
.card-field-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card-number-wrap { position: relative; }
.card-number-wrap .card-brand { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; }
.card-network-icons { display: flex; gap: 8px; margin-bottom: 12px; align-items: center; }
.card-network-label { font-size: .78rem; color: var(--gray-400); }

/* ── 3DS Screens ────────────────────────────────────────── */
.co-step  { display: none; }
.co-step.active { display: block; }
.co-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 12px 16px; color: #dc2626; font-size: .875rem; margin-bottom: 14px; display: none; }
.processing-screen { text-align: center; padding: 48px 24px; }
.processing-spinner {
  width: 60px; height: 60px;
  border: 5px solid var(--gray-100); border-top-color: var(--navy);
  border-radius: 50%; animation: spin .9s linear infinite; margin: 0 auto 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.processing-sub   { font-size: .875rem; color: var(--gray-500); }

/* DS3 */
.ds3-card { background: white; border-radius: 0; overflow: hidden; border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-card); }
.ds3-header { background: linear-gradient(135deg, #001020 0%, #001838 100%); padding: 18px 22px; display: flex; align-items: center; gap: 12px; }
.ds3-header-logo { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ds3-header-text strong { color: white; display: block; font-size: .9rem; }
.ds3-header-text span   { color: rgba(255,255,255,.5); font-size: .72rem; }
.ds3-issuer-bar { background: #f8fafc; border-bottom: 1px solid var(--gray-200); padding: 10px 22px; display: flex; align-items: center; gap: 12px; }
.ds3-issuer-bar > span { font-size: .72rem; color: var(--gray-400); }
.ds3-card-networks { display: flex; gap: 8px; align-items: center; }
.ds3-body { padding: 24px 22px; }
.ds3-amount-row { display: flex; justify-content: space-between; align-items: center; background: #f1f5f9; border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; }
.ds3-merchant { font-size: .78rem; color: var(--gray-400); }
.ds3-amount   { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.ds3-otp-icon { width: 56px; height: 56px; margin: 0 auto 14px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.otp-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-align: center; }
.otp-sub   { font-size: .82rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.55; text-align: center; }
.otp-input-wrap { max-width: 240px; margin: 0 auto 16px; }
.otp-input {
  width: 100%; text-align: center; font-size: 1.9rem; font-weight: 800;
  letter-spacing: .25em; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: 10px; outline: none; font-family: 'Courier New', monospace;
  color: var(--navy); background: #f8fafc; transition: var(--transition);
}
.otp-input:focus { border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(0,24,56,.1); }
.ds3-verify-btn {
  width: 100%; background: var(--navy); color: white; border: none;
  border-radius: 10px; padding: 14px; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: background .2s; margin-bottom: 10px;
}
.ds3-verify-btn:hover    { background: var(--navy-light); }
.ds3-verify-btn:disabled { background: var(--gray-400); cursor: not-allowed; }
.ds3-security-line { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .7rem; color: var(--gray-400); margin-top: 10px; }
.ds3-footer { background: #f8fafc; border-top: 1px solid var(--gray-200); padding: 10px 22px; font-size: .7rem; color: var(--gray-400); }

/* Push screen */
.push-screen { text-align: center; }
.push-phone-anim { position: relative; width: 76px; height: 76px; margin: 0 auto 16px; }
.push-phone-anim .push-icon { width: 76px; height: 76px; background: #eff6ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.push-phone-anim::before, .push-phone-anim::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--navy); opacity: 0; animation: pushPing 2s ease-out infinite; }
.push-phone-anim::after { animation-delay: .7s; }
@keyframes pushPing { 0% { transform: scale(.9); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.push-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.push-sub   { font-size: .82rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.55; }
.push-steps { display: flex; flex-direction: column; gap: 9px; background: #f8fafc; border: 1px solid var(--gray-200); border-radius: 10px; padding: 14px 16px; margin-bottom: 18px; text-align: left; }
.push-step-item { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--gray-700); }
.push-step-num { width: 22px; height: 22px; min-width: 22px; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .66rem; font-weight: 800; }

/* ── Scroll animations ──────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero-inner    { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .nav-mobile.open { display: flex; flex-direction: column; padding: 10px 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); }
  .nav-mobile a { color: rgba(255,255,255,.8); padding: 12px 20px; font-size: .9rem; }
  .how-grid, .tickets-grid { grid-template-columns: 1fr; }
  .form-row, .card-field-row { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 0; }
}
