:root {
    --bg-deep: #0a0f1e;
    --bg-dark: #111827;
    --bg-card: #1a2235;
    --primary: #f97316;
    --primary-dark: #c2410c;
    --primary-glow: rgba(249, 115, 22, 0.3);
    --accent: #38bdf8;
    --accent-green: #34d399;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,h2,h3,h4 { font-family:'Bebas Neue', sans-serif; letter-spacing:2px; line-height:1.1; }

/* ── NAVBAR ── */
#navbar {
    position: fixed; top:0; width:100%; z-index:1000;
    background: rgba(10,15,30,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}
.nav-container {
    max-width:1200px; margin:0 auto; padding:1rem 2rem;
    display:flex; align-items:center; justify-content:space-between;
}
.logo { display:flex; align-items:center; gap:0.75rem; text-decoration:none; }
.logo img { height:40px; width:auto; }
.logo-text { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:3px; color:var(--white); }
.nav-links { list-style:none; display:flex; gap:2rem; }
.nav-links a { color:var(--text-muted); text-decoration:none; font-size:0.9rem; font-weight:500; transition:var(--transition); }
.nav-links a:hover, .nav-links a.active { color:var(--primary); }
.mobile-toggle { display:none; background:none; border:none; color:var(--white); font-size:1.3rem; cursor:pointer; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at 60% 40%, rgba(249,115,22,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(56,189,248,0.08) 0%, transparent 50%),
                var(--bg-deep);
    text-align: center; padding: 8rem 2rem 4rem;
}
.hero-content { max-width: 850px; }
.hero-logo { height: 90px; width: auto; margin-bottom: 2rem; filter: drop-shadow(0 0 20px var(--primary-glow)); }
.hero-badge {
    display: inline-block; background: rgba(249,115,22,0.15); border: 1px solid var(--primary);
    color: var(--primary); padding: 0.4rem 1.2rem; border-radius: 50px; font-size: 0.8rem;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(3.5rem, 9vw, 7rem); color: var(--white); margin-bottom: 0.5rem; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-muted); max-width: 650px; margin: 0 auto 2.5rem; }
.hero-result {
    background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.3);
    border-radius: 12px; padding: 1.2rem 2rem; margin: 2rem auto;
    max-width: 600px; font-size: 1rem; font-weight: 600; color: var(--white);
}

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.9rem 2.2rem; border-radius:50px; font-weight:700; font-size:0.95rem; text-decoration:none; transition:var(--transition); cursor:pointer; border:none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color:var(--white); box-shadow:0 0 25px var(--primary-glow); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 0 35px var(--primary-glow); }
.btn-secondary { background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { background:rgba(255,255,255,0.08); border-color:var(--primary); color:var(--primary); }
.hero-cta { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width:1200px; margin:0 auto; }
.section-title {
    font-size: clamp(2.2rem,5vw,3.8rem); text-align:center; margin-bottom:1rem;
    background: linear-gradient(135deg,var(--white),var(--primary));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.section-subtitle { text-align:center; color:var(--text-muted); font-size:1.1rem; max-width:700px; margin:0 auto 3rem; }

/* ── CARDS ── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; margin-top:3rem; }
.glass-card {
    background: var(--glass); border: 1px solid var(--glass-border); border-radius:16px;
    padding: 2rem; transition:var(--transition);
}
.glass-card:hover { border-color:var(--primary); transform:translateY(-4px); box-shadow:0 12px 40px rgba(249,115,22,0.15); }
.card-icon { font-size:2.5rem; color:var(--primary); margin-bottom:1.2rem; }
.card-title { font-size:1.4rem; color:var(--white); margin-bottom:0.8rem; }
.card-text { color:var(--text-muted); font-size:0.95rem; line-height:1.7; }

/* ── FEATURE LIST ── */
.feature-list { list-style:none; padding:0; }
.feature-list li { display:flex; align-items:flex-start; gap:0.8rem; padding:0.7rem 0; border-bottom:1px solid var(--glass-border); color:var(--text-muted); font-size:0.95rem; }
.feature-list li:last-child { border-bottom:none; }
.feature-list li i { color:var(--primary); margin-top:2px; flex-shrink:0; }

/* ── ODD BADGES ── */
.odd-grid { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; margin-top:2rem; }
.odd-badge {
    background: rgba(249,115,22,0.12); border:1px solid rgba(249,115,22,0.3);
    border-radius:50px; padding:0.6rem 1.4rem; font-size:0.85rem; font-weight:700;
    color:var(--primary); display:flex; align-items:center; gap:0.5rem;
}

/* ── STATS ── */
.stats-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:2rem; margin-top:3rem; text-align:center; }
.stat-num { font-family:'Bebas Neue',sans-serif; font-size:3.5rem; color:var(--primary); line-height:1; }
.stat-label { color:var(--text-muted); font-size:0.85rem; text-transform:uppercase; letter-spacing:1px; margin-top:0.3rem; }

/* ── CTA SECTION ── */
.cta-section {
    background: radial-gradient(ellipse at center, rgba(249,115,22,0.15) 0%, transparent 70%), var(--bg-dark);
    text-align:center; padding:6rem 2rem;
}
.cta-section h2 { font-size:clamp(2rem,5vw,3.5rem); color:var(--white); margin-bottom:1rem; }
.cta-section p { color:var(--text-muted); font-size:1.1rem; max-width:600px; margin:0 auto 2.5rem; }

/* ── FOOTER ── */
footer { background:#060a14; padding:4rem 2rem 2rem; border-top:1px solid var(--glass-border); }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:3rem; max-width:1200px; margin:0 auto 3rem; }
.footer-section h4 { font-family:'Bebas Neue',sans-serif; font-size:1rem; letter-spacing:2px; color:var(--primary); margin-bottom:1rem; }
.footer-section p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }
.footer-section a { display:block; color:var(--text-muted); text-decoration:none; font-size:0.9rem; margin-bottom:0.5rem; transition:var(--transition); }
.footer-section a:hover { color:var(--primary); }
.footer-bottom { max-width:1200px; margin:0 auto; border-top:1px solid var(--glass-border); padding-top:2rem; text-align:center; color:var(--text-muted); font-size:0.85rem; }
.footer-logo-img { height:60px; width:auto; margin-bottom:1rem; }

/* ── ANIMATIONS ── */
.fade-in { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:768px) {
    .nav-links { display:none; }
    .mobile-toggle { display:block; }
    .hero { padding-top:6rem; }
    .contact-grid { grid-template-columns:1fr; }
}
