/* ============================================================
   HERO — Ana Banner Section
   ============================================================ */

/* -------------------------------------------------------
   HERO WRAPPER
   ------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a1628;
}

/* -------------------------------------------------------
   ARKA PLAN — Gradient + Overlay
   ------------------------------------------------------- */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(11, 95, 190, 0.55) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
}

/* Dekoratif daireler */
.hero__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__decor-circle--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(11, 95, 190, 0.15) 0%, transparent 70%);
}

.hero__decor-circle--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(37, 197, 133, 0.10) 0%, transparent 70%);
}

/* -------------------------------------------------------
   HERO İÇERİK
   ------------------------------------------------------- */
.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 0 100px;
}

.hero__content {
    max-width: 700px;
}

/* -------------------------------------------------------
   BADGE
   ------------------------------------------------------- */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(37, 197, 133, 0.15);
    border: 1px solid rgba(37, 197, 133, 0.30);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    letter-spacing: 0.03em;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* -------------------------------------------------------
   BAŞLIK
   ------------------------------------------------------- */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--fw-extrabold);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

/* Altı çizgi efekti */
.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

/* -------------------------------------------------------
   AÇIKLAMA
   ------------------------------------------------------- */
.hero__desc {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 580px;
}

/* -------------------------------------------------------
   CTA BUTONLAR
   ------------------------------------------------------- */
.hero__cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* -------------------------------------------------------
   İSTATİSTİKLER
   ------------------------------------------------------- */
.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-white);
    line-height: 1;
}

.hero__stat-number span {
    color: var(--color-accent);
}

.hero__stat-label {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.55);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------
   SCROLL İNDİKATÖRÜ
   ------------------------------------------------------- */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.40);
    font-size: var(--fs-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-base);
}

.hero__scroll:hover {
    color: rgba(255, 255, 255, 0.70);
}

.hero__scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid currentColor;
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 6px;
    background: currentColor;
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* -------------------------------------------------------
   ANİMASYONLAR — data-animate ile JS tetikler
   ------------------------------------------------------- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity   0.6s ease,
        transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 768px) {
    .hero__inner {
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .hero__desc {
        font-size: var(--fs-base);
    }

    .hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        gap: var(--space-6);
    }

    .hero__stat-number {
        font-size: var(--fs-xl);
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__stat-divider {
        display: none;
    }

    .hero__stats {
        gap: var(--space-5);
    }
}