:root {
    --navy: #020617;
    --panel: #0f172a;
    --gold: #fbbf24;
    --blue: #0ea5e9;
    --white: #ffffff;
    --dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    background: var(--navy); 
    color: var(--white); 
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed; top: 0; width: 100%; height: 70px; z-index: 1000;
    background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; padding: 0 5%;
}

.logo { 
    font-family: 'Outfit'; font-weight: 900; font-size: 1.7rem; 
    letter-spacing: -1px; text-decoration: none;
    background: linear-gradient(90deg, #fff, var(--gold), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.header-tag { font-size: 0.7rem; font-weight: 800; color: var(--blue); letter-spacing: 2px; }

/* Hero */
.hero { padding: 120px 5% 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; min-height: 80vh; }
.hero-content h1 { font-family: 'Outfit'; font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: 0.9; font-weight: 900; margin-bottom: 20px; }
.hero-content h1 b { color: var(--gold); }
.hero-content p { font-size: 1.2rem; color: var(--dim); max-width: 500px; margin-bottom: 30px; }

.hero-stats { display: flex; gap: 15px; justify-content: flex-start; }
.stat-item { padding: 10px; border-left: 2px solid var(--gold); }
.stat-label { font-size: 0.7rem; color: var(--blue); font-weight: 800; }

/* Buttons */
.btn-banner {
    display: inline-block; background: var(--gold); color: #000; padding: 18px 45px; border-radius: 4px;
    font-weight: 900; text-decoration: none; text-transform: uppercase; font-size: 1rem;
    letter-spacing: 1px; transition: 0.3s ease; box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2); margin-bottom: 30px;
}
.btn-banner:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4); }

.hero-img img { width: 100%; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* Metrics */
.metrics { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr); }
.m-box { padding: 30px 0; text-align: center; border-right: 1px solid var(--border); }
.m-box span { display: block; font-size: 0.65rem; color: var(--blue); font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; }
.m-box h4 { font-family: 'Outfit'; font-size: 2.2rem; line-height: 1; }
.m-box:last-child { border-right: none; }

/* Rows */
.row { padding: 60px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.row.reverse { direction: rtl; }
.row.reverse .text-side { direction: ltr; }
.text-side h2 { font-family: 'Outfit'; font-size: 2.8rem; margin-bottom: 20px; color: var(--gold); line-height: 1.1; }
.text-side p { font-size: 1.1rem; color: var(--dim); margin-bottom: 20px; }
.img-side img { width: 100%; border-radius: 16px; border: 1px solid var(--border); }

/* Grid */
.grid-section { padding: 60px 5%; background: rgba(255,255,255,0.02); }
.grid-title { font-family:'Outfit'; font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g-card { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.g-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }
.g-card h3 { font-family: 'Outfit'; font-size: 1.3rem; margin-bottom: 10px; }
.g-card p { font-size: 0.85rem; color: var(--dim); }

/* Sticky Cat */
.sticky-cat {
    position: fixed; bottom: -120px; left: 0; width: 100%; height: 85px;
    background: rgba(2, 6, 23, 0.98); backdrop-filter: blur(20px); border-top: 3px solid var(--gold);
    z-index: 2000; display: flex; align-items: center; justify-content: space-between; padding: 0 5%;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}
.sticky-cat.visible { bottom: 0; }
.cat-label { font-size: 0.65rem; color: var(--blue); font-weight: 800; letter-spacing: 2px; }
.cat-text h5 { font-family: 'Outfit'; font-size: 1.4rem; color: #fff; }
.cat-btn { background: var(--gold); color: #000; padding: 15px 40px; font-weight: 900; text-decoration: none; border-radius: 4px; text-transform: uppercase; font-size: 0.9rem; }

/* Footer */
footer { padding: 60px 5% 120px; border-top: 1px solid var(--border); background: #000; }
.f-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-logo { font-family: 'Outfit'; font-weight: 900; font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.copyright { font-size: 0.8rem; color: var(--gold); }
.f-wrap h5 { color: var(--blue); font-size: 0.8rem; margin-bottom: 20px; letter-spacing: 2px; }
.f-wrap a { display: block; color: var(--dim); text-decoration: none; margin-bottom: 10px; font-size: 0.9rem; transition: 0.3s; }
.f-wrap a:hover { color: var(--gold); }

@media (max-width: 900px) {
    .hero, .row, .grid, .metrics { grid-template-columns: 1fr; }
    .hero { text-align: center; }
    .hero-stats { justify-content: center; }
    .row { gap: 30px; }
    .sticky-cat { flex-direction: column; height: auto; padding: 15px; }
    .cat-btn { width: 100%; text-align: center; margin-top: 10px; }
    .f-wrap { grid-template-columns: 1fr 1fr; }
}