.hero-info-section {
    position: relative;
    margin-top: -8px;
    padding: 0 0 36px;
    z-index: 6;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hero-info-card {
    min-width: 0;
}

.hero-info-card__inner {
    min-height: 128px;
    padding: 24px 22px;
    border: 1px solid #d9edf2;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.hero-info-card__value {
    display: block;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 800;
    word-break: break-word;
    text-align: center;
}

.hero-info-card__inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.10);
}

.hero-info-card__label {
    display: block;
    color: #0891b2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-info-card__value {
    display: block;
    color: #0f172a;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 800;
    word-break: break-word;
}

/* =========================
   HERO INFO CARDS - SIDEBAR STYLE
========================= */

.hero-info-card {
    position: relative;
    border: 1px solid rgba(217, 237, 242, 0.95);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 253, 255, 0.98) 100%);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.hero-info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #0f766e 0%, #0891b2 55%, #38bdf8 100%);
    z-index: 2;
}

.hero-info-card__inner {
    position: relative;
    z-index: 1;
    padding: 24px 22px 22px;
}

.hero-info-card__label {
    display: block;
    margin: 0 0 8px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.hero-info-card__value {
    display: block;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-info-card {
        border-radius: 20px;
    }

    .hero-info-card__inner {
        padding: 20px 18px 18px;
    }

    .hero-info-card__value {
        font-size: 19px;
    }
}

@media (max-width: 1200px) {
    .hero-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-info-section {
        padding-bottom: 26px;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-info-card__inner {
        min-height: 110px;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .hero-info-card__value {
        font-size: 18px;
    }
}