@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --accent: #f5a623;
  --accent2: #e8941a;
  --gold: #f5a623;
  --red: #ff3c3c;
  --green: #4caf50;
  --text: #ffffff;
  --muted: #888888;
  --border: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.04);
  --radius: 12px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0.5rem 1.1rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.3px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #000;
  padding: 0.5rem 1.3rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--accent);
  transition: all 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); display: block; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; width: 100%;
    background: rgba(10,10,10,0.98); flex-direction: column; padding: 1rem 0; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 2rem; font-size: 0.9rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ===== SECTION BASE ===== */
.section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 1px; background: var(--accent); opacity: 0.4;
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 1px; }
h3 { font-size: 1.3rem; font-family: var(--font-body); font-weight: 700; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 0.2rem 0.7rem;
  border-radius: 20px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-blue { background: rgba(245,166,35,0.12); color: var(--accent); border: 1px solid rgba(245,166,35,0.3); }
.badge-gold { background: rgba(245,166,35,0.12); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }
.badge-green { background: rgba(76,175,80,0.12); color: var(--green); border: 1px solid rgba(76,175,80,0.25); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent; text-decoration: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-purple { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-purple:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }

/* ===== CARD ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }

/* ===== STATS ROW ===== */
.stats-row { display: flex; flex-wrap: wrap; gap: 2rem; padding: 2rem 0; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 2.5rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo { font-family: var(--font-head); font-size: 2rem; color: var(--accent); margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; color: var(--text); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: var(--muted);
}
.payment-icons { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.payment-icons img { height: 22px; opacity: 0.55; filter: grayscale(0.4); transition: opacity 0.2s; }
.payment-icons img:hover { opacity: 1; filter: none; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== GLOW EFFECTS ===== */
.glow { text-shadow: 0 0 40px rgba(245,166,35,0.4); }
.glow-box { box-shadow: 0 0 40px rgba(245,166,35,0.08); }

/* ===== PAGE HEADER ===== */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at top, rgba(245,166,35,0.06) 0%, transparent 60%);
  text-align: center;
}
.page-hero p { color: var(--muted); margin-top: 0.75rem; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.page-hero-index{
  padding: 4rem 1rem 2rem;
  background: radial-gradient(ellipse at top, rgba(245,166,35,0.06) 0%, transparent 60%);
  text-align: center;
}

.page-hero-index p { color: var(--muted); margin-top: 0.75rem; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }