/* Hero showcase — kurumsal ana sayfa slider */
.hero-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    background: var(--gradient-hero);
}

.hero-showcase__stage {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    overflow: hidden;
}

.hero-showcase__track {
    position: relative;
    width: 100%;
    min-height: clamp(520px, 72vh, 680px);
}

.hero-showcase__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    z-index: 0;
}

.hero-showcase__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-showcase__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-showcase__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-showcase__media:not(:has(img)) {
    background: var(--gradient-hero);
}

.hero-showcase__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            100deg,
            rgba(8, 26, 46, 0.96) 0%,
            rgba(8, 26, 46, 0.88) 38%,
            rgba(15, 39, 68, 0.55) 58%,
            rgba(15, 39, 68, 0.2) 100%
        ),
        var(--gradient-metallic);
    pointer-events: none;
}

.hero-showcase__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 72vh, 680px);
    padding-top: 2.5rem;
    padding-bottom: 3.25rem;
}

.hero-showcase__content {
    width: 100%;
    max-width: 34rem;
    color: var(--white);
}

.hero-showcase__badge {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.hero-showcase__title {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.hero-showcase__description {
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 32rem;
}

.hero-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-showcase__btn {
    min-width: 9.5rem;
}

.hero-showcase .btn--primary.hero-showcase__btn {
    background: var(--white);
    color: var(--navy-900);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-showcase .btn--primary.hero-showcase__btn:hover {
    background: var(--metallic-light);
    color: var(--navy-900);
}

.hero-showcase .btn--secondary.hero-showcase__btn--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-showcase .btn--secondary.hero-showcase__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

.hero-showcase__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-showcase__arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-showcase__arrow--prev {
    left: 1rem;
}

.hero-showcase__arrow--next {
    right: 1rem;
}

.hero-showcase__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-showcase__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-showcase__dot.is-active {
    background: var(--white);
    transform: scale(1.15);
}

/* Güven alanı */
.hero-trust {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xs);
}

.hero-trust__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem 1.25rem;
    padding: 0.9rem 1.25rem;
}

.hero-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy-800);
    text-align: center;
    line-height: 1.35;
}

.hero-trust__item::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-500);
}

@media (min-width: 1024px) {
    .hero-showcase__content {
        max-width: 36rem;
    }

    .hero-showcase__media img {
        object-position: 72% center;
    }
}

@media (max-width: 1023px) {
    .hero-showcase__track,
    .hero-showcase__container {
        min-height: clamp(380px, 58vh, 500px);
        height: clamp(380px, 58vh, 500px);
    }

    .hero-showcase__container {
        box-sizing: border-box;
        align-items: center;
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .hero-showcase__overlay {
        background: linear-gradient(
            180deg,
            rgba(8, 26, 46, 0.55) 0%,
            rgba(8, 26, 46, 0.82) 45%,
            rgba(8, 26, 46, 0.92) 100%
        );
    }

    .hero-showcase__media img {
        object-position: center 42%;
    }

    .hero-showcase__badge {
        font-size: 0.6875rem;
        margin-bottom: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .hero-showcase__title {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
        line-height: 1.2;
        margin-bottom: 0.65rem;
    }

    .hero-showcase__description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-showcase__actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-showcase__btn,
    .hero-showcase__actions .btn {
        width: 100%;
        min-height: 46px;
        font-size: 0.875rem;
    }

    .hero-showcase__btn--wa {
        display: none !important;
    }

    .hero-showcase__arrow,
    .hero-showcase__dots {
        display: none !important;
    }

    .hero-trust {
        display: block;
    }

    .hero-trust__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem 0.75rem;
        padding: 0.85rem 1rem;
    }

    .hero-trust__item {
        font-size: 0.75rem;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-showcase__track,
    .hero-showcase__container {
        min-height: clamp(340px, 56vh, 420px);
        height: clamp(340px, 56vh, 420px);
    }

    .hero-trust__inner {
        padding: 0.75rem 0.85rem;
    }
}
