/* ==========================================
   STObonus — Hero — Premium European Style
   ========================================== */

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 64px);
    padding-bottom: 80px;
    overflow: hidden;
    background: var(--bg-dark);
    color: #fff;
}

/* Subtle gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(var(--accent-rgb), .12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(var(--accent-rgb), .06) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative grid lines for premium tech feel */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 70%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    position: relative;
}

.hero__badge {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
}

.hero__title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__title span {
    background: linear-gradient(135deg, #6EB0FF 0%, #93C5FD 50%, #BAD7FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero__actions .btn--primary {
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), .4);
}

.hero__actions .btn--outline {
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}

.hero__actions .btn--outline:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.hero__features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero__feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    transition: all var(--speed) var(--ease);
}

.hero__feature:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .12);
    transform: translateX(6px);
}

.hero__feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(var(--accent-rgb), .15);
    color: #93C5FD;
}

.hero__feature-icon svg {
    width: 22px;
    height: 22px;
}

.hero__feature h3 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.hero__feature p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-h) + 40px);
        padding-bottom: 56px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
    }
}