.home-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #08111f 0%, #0f1b33 54%, #111827 100%);
    color: #fff;
    padding: 176px 0 96px;
}

.home-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.28;
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.home-hero-copy small {
    display: block;
    color: #7dd3fc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.home-hero-copy h1 {
    color: #fff;
    font-size: 68px;
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 8.5em;
}

.home-hero-copy h1 span {
    color: #7dd3fc;
}

.home-hero-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.85;
    max-width: 680px;
    margin-bottom: 0;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.home-hero-actions .main-btn {
    min-height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1f12fd 0%, #2448b7 100%);
    box-shadow: 0 12px 28px rgba(31, 18, 253, 0.24);
}

.home-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
}

.home-hero-link:hover {
    color: #7dd3fc;
}

.home-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.home-hero-tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
}

.home-hero-visual {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    backdrop-filter: blur(14px);
}

.home-hero-visual img {
    width: min(100%, 560px);
    opacity: 0.9;
}

.home-hero-metrics {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-hero-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(8, 17, 31, 0.76);
    padding: 16px;
}

.home-hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
}

.home-hero-metrics span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 991px) {
    .home-hero-section {
        padding: 132px 0 64px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        text-align: center;
    }

    .home-hero-copy h1,
    .home-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions,
    .home-hero-tags {
        justify-content: center;
    }

    .home-hero-copy h1 {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .home-hero-copy h1 {
        font-size: 34px;
    }

    .home-hero-visual {
        min-height: 380px;
        padding: 18px;
    }

    .home-hero-metrics {
        grid-template-columns: 1fr;
    }
}
