/* ---- HERO SECTION STYLES ---- */
:root {
    --color-bg: #0d0d0d;
    --color-surface: #141414;
    --color-border: #2a2a2a;
    --color-accent: #f5a800;
    --color-text: #f0f0f0;
    --color-muted: #888;
    --nav-height: 72px;
}

.hero {
    padding-top: 120px;
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(13, 13, 13, 0.95) 20%,
            rgba(13, 13, 13, 0.8) 45%,
            rgba(13, 13, 13, 0.4) 70%,
            rgba(13, 13, 13, 0.2) 100%);
    z-index: 0;
}

.hero__container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* --- Content --- */
.hero__badge {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.hero__badge-line {
    width: 40px;
    height: 2px;
    background: var(--color-accent, #f5a800);
    margin-bottom: 3px;
}

.hero__badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent, #f5a800);
    font-size: 14px;
}

.hero__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--color-accent, #f5a800);
    -webkit-text-stroke: 1px var(--color-accent, #f5a800);
}

.hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.hero__actions {
    display: flex;
    gap: 20px;
}

.hero__btn {
    padding: 16px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__btn--primary {
    background: var(--color-accent, #f5a800);
    color: #0d0d0d;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.hero__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero__btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- Stats --- */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.hero__stat-item {
    border-left: 2px solid rgba(245, 168, 0, 0.3);
    padding-left: 24px;
}

.hero__stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.hero__stat-label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-number {
        font-size: 2rem;
    }
}

/* Mobil — stats alta iner, tek kolon */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 100px 0 60px;
        align-items: flex-start;
    }

    .hero__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 0 20px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
        line-height: 1.05;
    }

    .hero__description {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero__btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    /* Stats yatay sıraya geçer */
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        border-top: 1px solid rgba(245, 168, 0, 0.2);
        padding-top: 24px;
    }

    .hero__stat-item {
        flex: 1 1 calc(33.333% - 1px);
        border-left: none;
        border-right: 1px solid rgba(245, 168, 0, 0.15);
        padding-left: 0;
        padding-right: 16px;
        padding-bottom: 0;
        text-align: center;
    }

    .hero__stat-item:last-child {
        border-right: none;
    }

    .hero__stat-number {
        font-size: 1.8rem;
    }

    .hero__stat-label {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* Küçük mobil */
@media (max-width: 400px) {
    .hero__container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__stat-label {
        font-size: 9px;
    }
}