/* ─── Hero ──────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 50% at 55% 20%, rgba(59,130,246,.10) 0%, transparent 65%), radial-gradient(ellipse 40% 35% at 85% 75%, rgba(34,211,238,.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(59,130,246,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(59,130,246,.10);
    border: 1px solid rgba(59,130,246,.25);
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--accent2);
    margin-bottom: 1.75rem;
    letter-spacing: .2px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

/* Title */
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    color: #D8E4F4;
    margin-bottom: 1.4rem;
}

    .hero-title em {
        font-style: normal;
        color: var(--accent2);
    }

/* Sub */
.hero-sub {
    font-size: 1.06rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.4rem;
    font-weight: 400;
    line-height: 1.78;
}

    .hero-sub strong {
        color: var(--text);
        font-weight: 500;
    }

/* CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats */

.stat {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #C8D4E8;
    line-height: 1;
}

.stat-accent {
    color: var(--accent2);
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 400;
}


@media (max-width: 640px) {
    .hero {
        padding: 6rem 1.25rem 4rem;
    }

    .hero-title {
        letter-spacing: -1.5px;
    }


    .stat-num {
        font-size: 1.7rem;
    }
}

/* Stats ortala */

@media (max-width: 640px) {

    .stat {
        align-items: center;
    }
}

/* ── Stats — ortalı ─────────────────────────────── */

@media (max-width: 640px) {
}





@media (max-width: 640px) {
}


@media (max-width: 520px) {
    .stat-num {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 600px) {
}

/* ── Stats bar — hero altında tam genişlik ──────── */
.hero-stats-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 2rem 2.5rem;
    background: var(--card2);
    border-bottom: 1px solid var(--border);
}

    .hero-stats-bar .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-stats-bar .stat-sep {
        width: 1px;
        height: 36px;
        background: var(--border);
        flex-shrink: 0;
    }

@media (max-width: 480px) {
    .hero-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem 1rem 2rem;
    }

        .hero-stats-bar .stat-sep {
            display: none;
        }

    .stat-num {
        font-size: 1.6rem !important;
    }
}
