/* Sıla Hero */
.sila-hero {
    --sh-min-h: min(88vh, 820px);
    --sh-pad-y: clamp(72px, 12vh, 140px);
    --sh-pad-x: clamp(20px, 5vw, 48px);
    --sh-title-size: clamp(2rem, 5vw, 3.25rem);
    --sh-title-weight: 700;
    --sh-title-color: #ffffff;
    --sh-sub-size: clamp(1rem, 2.2vw, 1.35rem);
    --sh-sub-weight: 400;
    --sh-sub-color: #ffffff;
    --sh-font: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --sh-content-max: 920px;
    --sh-title-gap: 14px;
    --sh-actions-gap: 16px;
    --sh-actions-mt: 36px;
    --sh-btn-radius: 999px;
    --sh-btn-size: 1rem;
    --sh-btn-weight: 600;
    --sh-btn1-bg: #42a5f5;
    --sh-btn1-color: #ffffff;
    --sh-btn2-bg: #7c4dff;
    --sh-btn2-color: #ffffff;
    --sh-grad-top: rgba(8, 10, 18, 0.28);
    --sh-grad-mid: rgba(8, 10, 18, 0.38);
    --sh-grad-bottom: rgba(8, 10, 18, 0.62);

    position: relative;
    width: 100%;
    min-height: var(--sh-min-h);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: var(--sh-font);
    isolation: isolate;
}

.sila-hero *,
.sila-hero *::before,
.sila-hero *::after {
    box-sizing: border-box;
}

.sila-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sila-hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.sila-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        var(--sh-grad-top) 0%,
        var(--sh-grad-mid) 42%,
        var(--sh-grad-bottom) 100%
    );
}

.sila-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--sh-content-max);
    margin: 0 auto;
    padding: var(--sh-pad-y) var(--sh-pad-x);
    text-align: center;
}

.sila-hero__title {
    margin: 0 0 var(--sh-title-gap);
    font-family: inherit;
    font-size: var(--sh-title-size);
    font-weight: var(--sh-title-weight);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--sh-title-color);
    text-wrap: balance;
}

.sila-hero__subtitle {
    margin: 0;
    font-family: inherit;
    font-size: var(--sh-sub-size);
    font-weight: var(--sh-sub-weight);
    line-height: 1.45;
    color: var(--sh-sub-color);
    opacity: 0.96;
    text-wrap: balance;
}

.sila-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--sh-actions-gap);
    margin-top: var(--sh-actions-mt);
}

.sila-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: var(--sh-btn-radius);
    font-family: inherit;
    font-size: var(--sh-btn-size);
    font-weight: var(--sh-btn-weight);
    line-height: 1.2;
    text-decoration: none !important;
    border: 0;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.sila-hero__btn:hover,
.sila-hero__btn:focus {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.sila-hero__btn--1 {
    background: var(--sh-btn1-bg);
    color: var(--sh-btn1-color) !important;
}

.sila-hero__btn--2 {
    background: var(--sh-btn2-bg);
    color: var(--sh-btn2-color) !important;
}

@media (max-width: 767px) {
    .sila-hero {
        --sh-min-h: min(78vh, 680px);
        --sh-actions-mt: 28px;
    }

    .sila-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .sila-hero__btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sila-hero__btn {
        transition: none;
    }

    .sila-hero__btn:hover,
    .sila-hero__btn:focus {
        transform: none;
    }
}
