/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    overflow: hidden;

    padding: 78px 0 72px;

    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(15, 169, 104, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--color-green-dark) 0%,
            #075c38 52%,
            #087f4b 100%
        );

    color: var(--color-white);
}


/* =========================
   DECORATIVE ELEMENT
========================= */

.hero-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -120px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    bottom: -170px;
    left: -80px;

    border: 1px solid rgba(217, 173, 69, 0.15);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================
   HERO CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);

    align-items: center;

    gap: 70px;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: var(--color-gold-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.hero-content h1 {
    max-width: 680px;

    color: var(--color-white);

    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.hero-content p {
    max-width: 610px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================
   HERO ACTIONS
========================= */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn.primary {
    background: var(--color-gold);
    color: #18301f;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.14);
}

.hero-btn.primary:hover {
    background: var(--color-gold-light);
}

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.06);

    color: var(--color-white);
}

.hero-btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.11);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: min(100%, 390px);

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.13),
            rgba(255, 255, 255, 0.05)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: var(--color-white);
}


/* =========================
   HERO CARD
========================= */

.hero-card-label {
    display: block;

    color: var(--color-gold-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.hero-card-number {
    margin-top: 22px;

    color: var(--color-white);

    font-size: clamp(48px, 7vw, 76px);
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.08em;
}

.hero-card-status {
    display: block;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hero-section {
        padding: 64px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

}


@media (max-width: 600px) {

    .hero-section {
        padding: 52px 0 56px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-card {
        padding: 26px;
    }

    .hero-card-number {
        font-size: 54px;
    }

}