/* ═══════════════════════════════════════════
   TICKETZONE — Global Stylesheet
   Shared across all pages
════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --pitch:   #0a3d1f;
  --grass:   #1a6b35;
  --lime:    #c8f135;
  --white:   #f5f7f0;
  --ink:     #0d0d0d;
  --muted:   #6b7260;
  --card-bg: #111a0f;
  --panel-bg:#0f180c;
  --danger:  #e63946;
  --gold:    #f4a228;
  --stripe:  #635bff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--ink); color: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,241,53,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-badge {
  background: var(--lime); color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 2px;
  padding: 0.2rem 0.7rem; border-radius: 3px;
}
.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 3px; color: var(--white);
}
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { font-size: 0.75rem; color: var(--muted); font-family: 'JetBrains Mono', monospace; white-space: nowrap; }
.nav-phone span { color: var(--lime); }
.nav-cta {
  background: var(--lime); color: var(--ink);
  padding: 0.5rem 1.3rem; border-radius: 4px;
  font-size: 0.82rem; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: 0.5px;
  transition: opacity 0.2s; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--lime); color: var(--ink);
  padding: 0.9rem 2.2rem; border-radius: 5px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,241,53,0.3); }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 0.9rem 1.8rem; border-radius: 5px;
  font-weight: 600; font-size: 0.88rem;
  border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-outline-lime {
  background: transparent; color: var(--lime);
  padding: 0.7rem 1.5rem; border-radius: 5px;
  font-weight: 600; font-size: 0.85rem;
  border: 1.5px solid rgba(200,241,53,0.4); cursor: pointer;
  transition: background 0.2s; display: inline-block;
}
.btn-outline-lime:hover { background: rgba(200,241,53,0.08); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1; letter-spacing: 1px; color: var(--white);
}
.section-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.7; max-width: 540px; margin-top: 0.5rem; }

/* ── DISCOUNT BANNER ── */
.disc-banner {
  background: linear-gradient(90deg, var(--pitch), #1d6b2a, var(--pitch));
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.disc-pill {
  background: var(--lime); color: var(--ink);
  font-size: 0.72rem; font-weight: 800;
  padding: 0.2rem 0.7rem; border-radius: 100px; letter-spacing: 1px;
}
.disc-banner strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: var(--lime); }
.disc-banner span { font-size: 0.82rem; color: rgba(245,247,240,0.65); }

/* ── MATCH CARDS ── */
.matches-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.25rem;
}
.match-card {
  background: var(--card-bg); border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 10px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; cursor: pointer;
}
.match-card:hover { transform: translateY(-3px); border-color: rgba(200,241,53,0.35); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.match-card.featured { border-color: rgba(200,241,53,0.25); background: linear-gradient(160deg, #131f0e, #0d1a0a); }
.match-card-top { padding: 1.1rem 1.25rem 0; display: flex; justify-content: space-between; align-items: center; }
.match-phase { font-family: 'JetBrains Mono', monospace; font-size: 0.63rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); }
.feat-badge { background: var(--gold); color: var(--ink); font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; padding: 0.18rem 0.55rem; border-radius: 100px; text-transform: uppercase; }
.scarcity-badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 100px; }
.scarcity-badge.critical { background: rgba(230,57,70,0.15); color: var(--danger); border: 1px solid rgba(230,57,70,0.3); }
.scarcity-badge.low      { background: rgba(244,162,40,0.12); color: var(--gold);   border: 1px solid rgba(244,162,40,0.3); }
.scarcity-badge::before  { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: scblink 1.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes scblink { 0%,100%{opacity:1}50%{opacity:0.3} }
.match-teams { padding: 0.9rem 1.25rem; display: flex; align-items: center; gap: 1rem; }
.team { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; flex: 1; }
.team-flag { font-size: 2.1rem; line-height: 1; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 2px; color: var(--white); }
.match-vs { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--muted); letter-spacing: 1px; flex-shrink: 0; }
.match-meta { padding: 0 1.25rem 0.85rem; font-size: 0.77rem; color: var(--muted); line-height: 1.8; }
.match-meta strong { color: rgba(245,247,240,0.7); }
.match-footer { padding: 0.9rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.match-price .orig { font-size: 0.7rem; color: var(--muted); text-decoration: line-through; display: block; }
.match-price .disc { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 1px; color: var(--lime); line-height: 1; }
.match-price .per  { font-size: 0.68rem; color: var(--muted); }
.match-book-btn { background: var(--lime); color: var(--ink); border: none; padding: 0.55rem 1.1rem; border-radius: 5px; font-weight: 700; font-size: 0.8rem; cursor: pointer; letter-spacing: 0.5px; transition: opacity 0.2s; white-space: nowrap; }
.match-book-btn:hover { opacity: 0.85; }
.phase-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.phase-tab { padding: 0.5rem 1.1rem; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.1); background: transparent; color: var(--muted); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.phase-tab.active, .phase-tab:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,241,53,0.08); }

/* ── BOOKING PANEL ── */
#booking-panel {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 300;
  width: 460px; max-width: 100vw;
  background: var(--panel-bg);
  border-left: 1.5px solid rgba(200,241,53,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
#booking-panel.open { transform: translateX(0); }
.panel-header { padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: flex-start; justify-content: space-between; position: sticky; top: 0; background: var(--panel-bg); z-index: 2; }
.panel-match-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 1px; line-height: 1.1; }
.panel-match-meta { font-size: 0.77rem; color: var(--muted); margin-top: 0.3rem; }
.panel-close { background: none; border: none; color: var(--muted); font-size: 1.6rem; cursor: pointer; line-height: 1; flex-shrink: 0; }
.panel-close:hover { color: var(--white); }
.panel-body { padding: 1.5rem 1.75rem; flex: 1; }
.steps-bar { display: flex; margin-bottom: 1.75rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
.step-ind { flex: 1; padding: 0.55rem 0.3rem; text-align: center; font-size: 0.62rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.02); border-right: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; font-family: 'JetBrains Mono', monospace; }
.step-ind:last-child { border-right: none; }
.step-ind.active { background: rgba(200,241,53,0.1); color: var(--lime); }
.step-ind.done   { background: rgba(200,241,53,0.05); color: rgba(200,241,53,0.45); }

/* Panel fields */
.pf-group { margin-bottom: 1.2rem; }
.pf-label { font-family: 'JetBrains Mono', monospace; font-size: 0.67rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.4rem; }
.pf-select, .pf-input { width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); color: var(--white); padding: 0.8rem 1rem; border-radius: 6px; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.pf-select:focus, .pf-input:focus { outline: none; border-color: var(--lime); }
.pf-select option { background: #1a1a1a; }
.pf-input::placeholder { color: var(--muted); }
.pf-input.err { border-color: var(--danger); }

/* Seat map */
.panel-seat-map { margin-bottom: 1.2rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 1rem; }
.psm-pitch { background: linear-gradient(180deg, #1a6b35, #0f4a22); border-radius: 3px; height: 38px; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; letter-spacing: 3px; color: rgba(255,255,255,0.35); margin-bottom: 0.7rem; }
.psm-rows { display: flex; flex-direction: column; gap: 3px; }
.psm-row  { display: flex; align-items: center; gap: 4px; }
.psm-rl   { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; color: var(--muted); width: 14px; text-align: right; flex-shrink: 0; }
.psm-seat { height: 11px; border-radius: 2px 2px 0 0; flex: 1; min-width: 0; }
.psm-seat.avail { background: var(--grass); cursor: pointer; }
.psm-seat.sel   { background: var(--lime); }
.psm-seat.taken { background: rgba(255,255,255,0.07); }
.psm-legend { display: flex; gap: 1rem; margin-top: 0.6rem; flex-wrap: wrap; }
.psm-li { display: flex; align-items: center; gap: 0.3rem; font-size: 0.66rem; color: var(--muted); }
.psm-ld { width: 10px; height: 10px; border-radius: 2px; }

/* Availability */
.avail-status { padding: 0.7rem 1rem; border-radius: 6px; margin-bottom: 1.2rem; font-size: 0.82rem; display: none; align-items: center; gap: 0.7rem; }
.avail-status.show { display: flex; }
.avail-status.syncing { background: rgba(244,162,40,0.07); border: 1px solid rgba(244,162,40,0.2); color: var(--gold); }
.avail-status.ready   { background: rgba(200,241,53,0.06); border: 1px solid rgba(200,241,53,0.2); color: var(--lime); }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.syncing .avail-dot { background: var(--gold); animation: scblink 1s ease-in-out infinite; }
.ready   .avail-dot { background: var(--lime); }

/* Price summary */
.price-summary { background: rgba(200,241,53,0.05); border: 1px solid rgba(200,241,53,0.15); border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: 1.2rem; display: none; }
.price-summary.show { display: block; }
.ps-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; padding: 0.18rem 0; color: var(--muted); }
.ps-row.total { border-top: 1px solid rgba(200,241,53,0.15); margin-top: 0.5rem; padding-top: 0.65rem; font-size: 0.95rem; color: var(--white); font-weight: 700; }
.ps-row.total .ps-val { color: var(--lime); font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 1px; }
.ps-savings { color: var(--gold); font-size: 0.72rem; text-align: center; margin-top: 0.5rem; }

/* Proceed */
.proceed-btn { width: 100%; padding: 1rem; background: var(--lime); color: var(--ink); border: none; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; letter-spacing: 0.5px; margin-bottom: 0.5rem; transition: opacity 0.2s, transform 0.15s; display: none; }
.proceed-btn.show { display: block; }
.proceed-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Panel step visibility */
.panel-step { display: none; }
.panel-step.show { display: block; }
.step-back { background: none; border: none; color: var(--muted); font-size: 0.82rem; cursor: pointer; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.4rem; font-family: 'Inter', sans-serif; padding: 0; }
.step-back:hover { color: var(--white); }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 0.3rem; }
.step-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }

/* Signup form */
.signup-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); color: var(--white); padding: 0.78rem 1rem; border-radius: 6px; font-size: 0.88rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--lime); }
.form-field input.err { border-color: var(--danger); }
.form-field input::placeholder { color: var(--muted); }
.form-field select option { background: #1a1a1a; }
.field-err { font-size: 0.72rem; color: var(--danger); min-height: 0.9rem; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.8rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.checkbox-row input[type=checkbox] { margin-top: 2px; accent-color: var(--lime); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.checkbox-row a { color: var(--lime); }

/* Order preview box */
.order-preview { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 0.85rem 1rem; font-size: 0.79rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; }
.order-preview strong { color: var(--white); }
.op-total { color: var(--lime); font-weight: 700; font-size: 0.95rem; }

/* Scarcity box */
.tickets-left-box { background: rgba(230,57,70,0.07); border: 1px solid rgba(230,57,70,0.2); border-radius: 6px; padding: 0.75rem 1rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); animation: scblink 1.2s ease-in-out infinite; flex-shrink: 0; }
.tl-text { font-size: 0.82rem; color: rgba(245,247,240,0.8); }
.tl-text strong { color: var(--danger); }
.tl-text small { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 0.1rem; }

/* Stripe */
.stripe-dev-note { background: rgba(99,91,255,0.07); border: 1px dashed rgba(99,91,255,0.35); border-radius: 6px; padding: 0.85rem 1rem; font-size: 0.77rem; color: #a5a1ff; line-height: 1.6; margin-bottom: 1.25rem; }
.stripe-dev-note input { margin-top: 0.5rem; width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(99,91,255,0.35); color: var(--white); padding: 0.55rem 0.75rem; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; }
.stripe-dev-note input:focus { outline: none; border-color: var(--stripe); }
#card-element { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 0.85rem 1rem; margin-bottom: 0.5rem; min-height: 44px; }
#card-errors  { color: var(--danger); font-size: 0.77rem; margin-bottom: 0.75rem; min-height: 1.1rem; }
.pay-btn { width: 100%; padding: 1rem; background: var(--lime); color: var(--ink); border: none; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; letter-spacing: 0.5px; margin-bottom: 0.75rem; transition: opacity 0.2s; }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pay-btn:not(:disabled):hover { opacity: 0.9; }
.stripe-badge { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.7rem; color: var(--muted); }
.stripe-logo  { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1rem; color: var(--stripe); letter-spacing: -0.5px; }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.trust-badge { display: flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; color: var(--muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 0.28rem 0.65rem; }
.trust-badge span { font-size: 0.85rem; }

/* FIFA step */
.fifa-step { display: none; }
.fifa-step.show { display: block; }
.fifa-banner { background: linear-gradient(135deg, rgba(0,82,164,0.15), rgba(218,41,28,0.1)); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: 1.5rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.fifa-banner-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.fifa-banner-text { font-size: 0.82rem; color: rgba(245,247,240,0.85); line-height: 1.6; }
.fifa-banner-text strong { color: var(--white); display: block; margin-bottom: 0.2rem; }
.submit-fifa-btn { width: 100%; padding: 1rem; background: var(--lime); color: var(--ink); border: none; border-radius: 6px; font-weight: 700; font-size: 1rem; cursor: pointer; letter-spacing: 0.5px; margin-top: 0.75rem; transition: opacity 0.2s; }
.submit-fifa-btn:hover { opacity: 0.9; }

/* Success */
.success-view { display: none; padding: 2rem 1.75rem; text-align: center; }
.success-view.show { display: block; }
.success-check { width: 72px; height: 72px; border-radius: 50%; background: rgba(200,241,53,0.1); border: 2px solid var(--lime); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1} }
.success-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 1px; margin-bottom: 0.4rem; }
.success-sub   { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.success-order { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 1rem; text-align: left; font-size: 0.81rem; color: var(--muted); line-height: 2; margin-bottom: 1.5rem; }
.success-order strong { color: var(--white); }
.success-ref { font-family: 'JetBrains Mono', monospace; color: var(--lime); font-size: 0.75rem; }
.next-steps-list { text-align: left; }
.next-step-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.75rem 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.next-step-num { background: rgba(200,241,53,0.1); color: var(--lime); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.next-step-item strong { color: var(--white); display: block; }

/* ── GUARANTEE BAR ── */
.guarantee { background: var(--pitch); padding: 2rem 2.5rem; display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.guar-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: rgba(245,247,240,0.6); }
.guar-icon { font-size: 1.3rem; }

/* ── INFO PAGES (transfer, refund, faq, terms, contact) ── */
.info-page { min-height: 100vh; padding: 100px 2.5rem 5rem; max-width: 800px; margin: 0 auto; }
.info-eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--lime); margin-bottom: 0.75rem; }
.info-page h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: 1px; line-height: 1; margin-bottom: 0.5rem; color: var(--white); }
.info-page h1 em { color: var(--lime); font-style: normal; }
.info-intro { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 3rem; max-width: 620px; }
.info-section { margin-bottom: 2.5rem; }
.info-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; color: var(--white); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.6rem; }
.info-section h2 .ico { font-size: 1.2rem; }
.info-section p, .info-section li { font-size: 0.88rem; color: var(--muted); line-height: 1.85; margin-bottom: 0.5rem; }
.info-section ul, .info-section ol { padding-left: 1.2rem; }
.info-section li { margin-bottom: 0.4rem; }
.info-section strong { color: var(--white); }
.info-highlight { background: rgba(200,241,53,0.05); border: 1px solid rgba(200,241,53,0.15); border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0; }
.info-highlight p { color: rgba(245,247,240,0.8); margin: 0; }
.info-warning { background: rgba(244,162,40,0.07); border: 1px solid rgba(244,162,40,0.25); border-radius: 8px; padding: 1rem 1.25rem; margin: 1rem 0; }
.info-warning p { color: rgba(244,162,40,0.9); margin: 0; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 2rem 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--lime); font-size: 0.83rem; font-weight: 600; margin-bottom: 2rem; cursor: pointer; border: none; background: none; font-family: 'Inter', sans-serif; }
.back-link:hover { opacity: 0.8; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 1.25rem; position: relative; padding-bottom: 1.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 18px; top: 38px; bottom: 0; width: 1px; background: rgba(200,241,53,0.15); }
.tl-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(200,241,53,0.1); border: 2px solid rgba(200,241,53,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--lime); flex-shrink: 0; }
.tl-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.5px; color: var(--white); margin-bottom: 0.3rem; margin-top: 0.3rem; }
.tl-content p  { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; padding: 1.1rem 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--lime); }
.faq-icon { font-size: 1.2rem; color: var(--lime); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.86rem; color: var(--muted); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1rem; }
.faq-a a { color: var(--lime); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-method { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 1.25rem; }
.contact-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 0.25rem; }
.contact-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.contact-card a  { color: var(--lime); font-size: 0.88rem; font-weight: 600; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-wrap label { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; display: block; }
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); color: var(--white); padding: 0.8rem 1rem; border-radius: 6px; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: border-color 0.2s; appearance: none; resize: vertical; }
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus { outline: none; border-color: var(--lime); }
.contact-form-wrap input::placeholder, .contact-form-wrap textarea::placeholder { color: var(--muted); }
.contact-form-wrap select option { background: #1a1a1a; }
.contact-submit { background: var(--lime); color: var(--ink); border: none; padding: 0.9rem 2rem; border-radius: 6px; font-weight: 700; font-size: 0.95rem; cursor: pointer; letter-spacing: 0.5px; transition: opacity 0.2s; }
.contact-submit:hover { opacity: 0.9; }
.contact-success { display: none; background: rgba(200,241,53,0.07); border: 1px solid rgba(200,241,53,0.2); border-radius: 6px; padding: 1rem; font-size: 0.85rem; color: var(--lime); }
.contact-success.show { display: block; }

/* Reseller disclosure */
.reseller-notice { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--lime); border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-top: 1rem; }

/* ── FOOTER ── */
footer { background: #070707; padding: 3rem 2.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { font-size: 0.79rem; color: var(--muted); margin-top: 0.6rem; max-width: 240px; line-height: 1.7; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 0.66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); margin-bottom: 0.85rem; }
.footer-col ul  { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.79rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 2rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; font-size: 0.71rem; color: var(--muted); }

/* Spinner */
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(13,13,13,0.25); border-top-color: var(--ink); border-radius: 50%; animation: spin 0.6s linear infinite; vertical-align: middle; margin-right: 0.3rem; }
@keyframes spin { to{transform:rotate(360deg)} }

/* ── RESPONSIVE ── */
/* ══════════════════════════════════════════
   RESPONSIVE — Tablet (≤900px)
══════════════════════════════════════════ */
@media(max-width:900px){
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* How-it-works two-column → single */
  section .hiw-grid,
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — Mobile (≤700px)
══════════════════════════════════════════ */
@media(max-width:700px){

  /* ── Nav ── */
  nav { padding: 0 1rem; height: 56px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-right { gap: .6rem; }
  .nav-cta { padding: .4rem .9rem; font-size: .78rem; }

  /* ── Hero ── */
  .hero { padding: 0 0 3.5rem; min-height: 92vh; }
  .hero-content { padding: 0 1.1rem; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-desc { font-size: .88rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; padding: .85rem 1rem; }
  .hero-stats { gap: 1.5rem; padding-top: 1.25rem; margin-bottom: 1.75rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-trust-strip { gap: .75rem; font-size: .72rem; }

  /* ── Discount banner ── */
  .disc-banner { padding: .65rem 1rem; gap: .5rem; font-size: .82rem; text-align: center; flex-direction: column; }

  /* ── Matches section ── */
  section#matches-section { padding: 3rem 1rem !important; }
  .matches-grid { grid-template-columns: 1fr; gap: .85rem; }
  .phase-tabs { gap: .35rem; }
  .phase-tab { padding: .4rem .75rem; font-size: .74rem; }

  /* ── Match card — ensure Book Now button always tappable ── */
  .match-card { cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .match-book-btn { padding: .5rem .9rem; font-size: .78rem; }
  .match-footer { flex-wrap: wrap; gap: .4rem; }

  /* ── Booking Panel ── */
  #booking-panel {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
    border-left: none;
    border-top: 1.5px solid rgba(200,241,53,.18);
    top: auto;
    height: 92vh;
    transform: translateY(100%);
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #booking-panel.open { transform: translateY(0); }

  .panel-header { padding: 1rem 1.1rem .75rem; }
  .panel-body   { padding: 1.1rem; }
  .panel-match-name { font-size: .9rem; }

  /* ── Steps bar ── */
  .steps-bar { font-size: .62rem; }
  .step-ind  { padding: .45rem .3rem; font-size: .62rem; letter-spacing: .5px; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pf-input, .pf-select { font-size: 16px; } /* prevents iOS zoom on focus */
  .pf-input { padding: .65rem .85rem; }
  .pf-select { padding: .65rem .85rem; }

  /* ── Bank fields — prevent overflow ── */
  .bank-field { flex-direction: column; align-items: flex-start; gap: .2rem; padding: .55rem .65rem; }
  .bank-value { text-align: left; font-size: .78rem; word-break: break-all; }
  .bank-label { font-size: .68rem; }
  .bank-info-box { padding: .9rem; }

  /* ── Pay tabs ── */
  .pay-method-tabs { gap: .35rem; }
  .pay-tab { padding: .55rem .5rem; font-size: .76rem; }

  /* ── Buttons in panel ── */
  .proceed-btn  { font-size: .9rem; padding: .85rem; }
  .pay-btn      { font-size: .88rem; padding: .85rem; }
  .submit-fifa-btn { font-size: .88rem; padding: .85rem; }

  /* ── Alt payment notice ── */
  .alt-payment-contacts { flex-direction: column; }
  .alt-contact-btn { width: 100%; justify-content: center; }

  /* ── Trust badges ── */
  .trust-badges { flex-wrap: wrap; gap: .4rem; }
  .trust-badge  { font-size: .72rem; padding: .3rem .6rem; }

  /* ── Sections ── */
  .info-page { padding: 80px 1.1rem 3.5rem; }
  .guarantee { gap: 1.25rem; padding: 1.5rem 1rem; flex-wrap: wrap; justify-content: center; }
  .guar-item { font-size: .78rem; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 3rem 1.1rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .25rem; text-align: center; }

  /* ── How-it-works inline grid ── */
  section [style*="grid-template-columns:1fr 1fr"],
  section [style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  section [style*="grid-template-columns:1fr 1fr"] > *,
  section [style*="grid-template-columns: 1fr 1fr"] > * {
    margin-bottom: 2rem;
  }

  /* ── Testimonials ── */
  section [style*="grid-template-columns:repeat(auto-fit"] {
    display: flex !important;
    flex-direction: column;
  }

  /* ── Trust strip ── */
  section [style*="grid-template-columns:repeat(auto-fit,minmax(220px"] {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem !important;
  }

  /* ── Overflow guard ── */
  img, video, iframe, table { max-width: 100%; }
  * { max-width: 100%; }
  .bank-info-box, .bank-fields { overflow: hidden; }
}

/* ── Wire / ACH Payment UI ── */
.pay-method-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.pay-tab {
  flex: 1;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.pay-tab.active {
  background: rgba(200,241,53,.1);
  border-color: var(--lime);
  color: var(--lime);
}
.pay-tab:hover:not(.active) {
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.pay-panel { margin-bottom: .5rem; }
.bank-info-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.bank-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--lime);
  margin-bottom: .35rem;
}
.bank-info-note {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.bank-fields { display: flex; flex-direction: column; gap: .5rem; }
.bank-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .5rem .65rem;
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.05);
}
.bank-field.highlight {
  background: rgba(200,241,53,.06);
  border-color: rgba(200,241,53,.2);
}
.bank-label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.bank-value {
  font-size: .83rem;
  color: var(--white);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}
.bank-field.highlight .bank-value { color: var(--lime); }
.pay-confirm-row { margin: .75rem 0; }
.wire-footer-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── Personalized Payment Notice ── */
.alt-payment-notice {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: .9rem 1rem;
  background: rgba(255, 200, 60, .06);
  border: 1px solid rgba(255, 200, 60, .2);
  border-radius: 10px;
}
.alt-payment-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.alt-payment-body {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--muted);
}
.alt-payment-body strong {
  color: #f5c842;
  font-size: .85rem;
}
.alt-payment-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .35rem;
}
.alt-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .7rem;
  background: rgba(255,200,60,.1);
  border: 1px solid rgba(255,200,60,.25);
  border-radius: 6px;
  color: #f5c842;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s;
}
.alt-contact-btn:hover {
  background: rgba(255,200,60,.2);
  color: #ffe170;
}

/* ── Mobile Hamburger & Menu ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0; right: 0;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  z-index: 190;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(200,241,53,.15);
  gap: 0;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  padding: .75rem .25rem;
  font-size: .95rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s;
  font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--lime); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-phone {
  color: var(--lime) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem !important;
}
.mobile-menu-cta {
  margin-top: .5rem;
  background: var(--lime) !important;
  color: var(--ink) !important;
  text-align: center;
  border-radius: 6px;
  font-weight: 700 !important;
  padding: .75rem !important;
  border-bottom: none !important;
}

@media(max-width:700px) {
  .nav-hamburger { display: flex; }
  .mobile-menu   { display: flex; }
}

/* ── Proof of Payment Upload Step ── */
.proof-banner {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  background: rgba(200,241,53,.05);
  border: 1px solid rgba(200,241,53,.15);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted);
}
.proof-banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.proof-banner-text strong { color: var(--white); display: block; margin-bottom: .2rem; font-size: .88rem; }

.proof-upload-area {
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: rgba(255,255,255,.02);
  margin-bottom: .5rem;
  position: relative;
}
.proof-upload-area:hover,
.proof-upload-area.drag-over {
  border-color: var(--lime);
  background: rgba(200,241,53,.05);
}
.proof-upload-area.has-file {
  border-color: rgba(200,241,53,.4);
  background: rgba(200,241,53,.04);
  padding: 1rem;
}
.proof-upload-icon  { font-size: 2rem; margin-bottom: .5rem; }
.proof-upload-label { font-size: .88rem; color: var(--white); font-weight: 600; margin-bottom: .25rem; }
.proof-upload-sub   { font-size: .75rem; color: var(--muted); }

.proof-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.proof-preview-img  { max-width: 100%; max-height: 160px; border-radius: 6px; object-fit: contain; border: 1px solid rgba(255,255,255,.1); }
.proof-file-name    { font-size: .78rem; color: var(--lime); font-family: 'JetBrains Mono', monospace; word-break: break-all; }
.proof-remove-btn {
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.3);
  color: var(--danger);
  font-size: .72rem;
  font-weight: 600;
  border-radius: 5px;
  padding: .25rem .65rem;
  cursor: pointer;
  transition: background .15s;
}
.proof-remove-btn:hover { background: rgba(230,57,70,.2); }

.proof-accepted {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .75rem 0;
  font-size: .72rem;
  color: var(--muted);
}
.proof-accepted span {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: #8a9a7a;
}
.proof-accepted span::before { content: ''; }

.proof-skip-note {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
}
.proof-skip-btn {
  background: none;
  border: none;
  color: var(--lime);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.proof-skip-btn:hover { opacity: .8; }

@media(max-width:700px){
  .proof-upload-area { padding: 1.5rem .75rem; }
  .proof-accepted { gap: .35rem; }
}
