/* --- 1. FONTLAR VA ASOSIY SOZLAMALAR --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00f260;
    --secondary: #0575E6;
    --dark-bg: #050511;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #e2e8f0; /* Oqish matn rangi */
    --text-dim: #cbd5e1;   /* Ochroq kulrang (text-muted o'rniga) */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- MUHIM TUZATISH: MATNLAR KO'RINISHI --- */
/* Bootstrapning to'q rangini majburan oqartiramiz */
.text-muted {
    color: var(--text-dim) !important;
    opacity: 0.9;
    font-weight: 400;
}

p, span, li {
    color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
}

/* --- 2. HERO SECTION (BOSH QISM) --- */
.hero-section {
    min-height: 100vh;
    /* Orqa fon rasmi va gradient */
    background: radial-gradient(circle at top right, rgba(5, 117, 230, 0.2), transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 242, 96, 0.1), transparent 40%),
                url('../../hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Navbar uchun joy */
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 17, 0.85); /* Fonni qoraytirish */
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 30%, #00f260 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Tugmalar */
.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.btn-glow {
    background: linear-gradient(90deg, #00f260, #0575E6);
    color: white !important;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 96, 0.4);
}
.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(5, 117, 230, 0.6);
}

/* --- 3. PROCESS CARD (3 QADAM) --- */
.process-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}
.process-card h4 { margin-top: 15px; margin-bottom: 10px; }
.process-card p { font-size: 0.95rem; opacity: 0.8; }

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px; right: 20px;
}

/* --- 4. FEATURE BOX (IMKONIYATLAR) --- */
.feature-box {
    background: rgba(20, 20, 35, 0.6);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Hover effekti */
.feature-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.feature-box h5 {
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

/* Matnni aniq ko'rsatish uchun maxsus */
.feature-box p.text-muted, 
.feature-box p {
    color: rgba(255, 255, 255, 0.8) !important; /* 80% Oq */
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00f260, #0575E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 5. ANIMATSIYA (SCROLL REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE UCHUN --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .process-card, .feature-box { margin-bottom: 15px; }
}