﻿
.home-hero-section {
    position: relative;
    overflow: hidden;
    padding:  1rem 0;
    background: radial-gradient(circle at top left, rgba(28, 102, 255, 0.12), transparent 30%), radial-gradient(circle at bottom right, rgba(0, 203, 169, 0.10), transparent 28%), linear-gradient(135deg, #07111f 0%, #0d1b2f 55%, #0a1423 100%);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.home-hero-section *,
.home-hero-section *::before,
.home-hero-section *::after {
    box-sizing: border-box;
}

.home-hero-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    align-items: center;
    gap: 42px;
}

.home-hero-left {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #cce5ff;
    margin-bottom: 20px;
}

.home-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 680px;
}

.home-hero-desc {
    margin: 0;
    max-width: 640px;
    font-size: 1.04rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
}

.home-hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.home-hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    padding: 15px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}

    .home-hero-btn:hover {
        transform: translateY(-3px);
    }

.home-hero-btn-primary {
    color: #06101d;
    background: linear-gradient(135deg, #ffffff 0%, #dff6ff 100%);
    box-shadow: 0 18px 35px rgba(0,0,0,0.22);
}

    .home-hero-btn-primary:hover {
        box-shadow: 0 24px 42px rgba(0,0,0,0.28);
    }

.home-hero-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

    .home-hero-btn-secondary:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.3);
    }

.home-hero-right {
    position: relative;
}

.home-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 30px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}

.home-hero-track {
    display: flex;
    transition: transform .65s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.home-hero-slide {
    position: relative;
    min-width: 100%;
    height: 520px;
    overflow: hidden;
}

.home-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 1.6s ease;
}

.home-hero-slide:hover .home-hero-slide-img {
    transform: scale(1.08);
}

.home-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,12,24,0.08) 0%, rgba(4,12,24,0.26) 40%, rgba(4,12,24,0.85) 100%);
    z-index: 1;
}

.home-hero-slide-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background: rgba(6, 16, 29, 0.48);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    color: #fff;
    transform: translateY(0);
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.home-hero-slide:hover .home-hero-slide-content {
    transform: translateY(-6px);
    background: rgba(6, 16, 29, 0.60);
    border-color: rgba(255,255,255,0.18);
}

.home-hero-slide-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #d8efff;
}

.home-hero-slide-content h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 800;
}

.home-hero-slide-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.home-hero-controls {
    pointer-events: none;
}

.home-hero-nav {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    background: rgba(7, 17, 31, 0.58);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

    .home-hero-nav:hover {
        transform: translateY(-50%) scale(1.08);
        background: rgba(255,255,255,0.18);
        box-shadow: 0 10px 26px rgba(0,0,0,0.28);
    }

.home-hero-prev {
    left: 18px;
}

.home-hero-next {
    right: 18px;
}

.home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(7,17,31,0.34);
    backdrop-filter: blur(8px);
}

.home-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.35);
    transition: all .3s ease;
    padding: 0;
}

    .home-hero-dot.active {
        width: 28px;
        background: #ffffff;
    }

@media (max-width: 1199px) {
    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-hero-left {
        text-align: center;
    }

    .home-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-cta-wrap {
        justify-content: center;
    }

    .home-hero-slide {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .home-hero-section {
        padding: 64px 0;
    }

    .home-hero-container {
        width: min(100% - 20px, 100%);
        gap: 24px;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-desc {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .home-hero-cta-wrap {
        flex-direction: column;
    }

    .home-hero-btn {
        width: 100%;
        min-width: 100%;
    }

    .home-hero-slide {
        height: 400px;
    }

    .home-hero-slide-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px 16px;
        border-radius: 18px;
    }

        .home-hero-slide-content h3 {
            font-size: 1.15rem;
        }

        .home-hero-slide-content p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

    .home-hero-nav {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .home-hero-prev {
        left: 10px;
    }

    .home-hero-next {
        right: 10px;
    }

    .home-hero-dots {
        gap: 8px;
        bottom: 10px;
        padding: 7px 12px;
    }

    .home-hero-dot {
        width: 8px;
        height: 8px;
    }

        .home-hero-dot.active {
            width: 22px;
        }
}


