﻿.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(76, 175, 80, 0.95);
    margin-bottom: 10px;
}

.hero-subtitle {
    max-width: 820px;
    margin: 18px auto 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    user-select: none;
}

    .btn-hero:active {
        transform: translateY(1px) scale(0.99);
    }

.btn-hero-ic {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.22);
}

.btn-hero-primary {
    color: #0b120c;
    background: rgba(76, 175, 80, 0.92);
    border-color: rgba(76, 175, 80, 0.35);
}

    .btn-hero-primary .btn-hero-ic {
        background: rgba(0,0,0,0.16);
        border-color: rgba(0,0,0,0.22);
        color: #0b120c;
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        background: rgba(76, 175, 80, 1);
        box-shadow: 0 18px 55px rgba(76,175,80,0.22), 0 18px 55px rgba(0,0,0,0.45);
    }

.btn-hero-ghost {
    color: rgba(255,255,255,0.92);
    background: rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.16);
}

    .btn-hero-ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.22);
        box-shadow: 0 18px 55px rgba(0,0,0,0.55);
    }

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.02rem;
        padding: 0 10px;
    }
}
