.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) minmax(240px, 330px);
    gap: 28px;
    align-items: center;
    min-height: 330px;
    padding: 44px 0 38px;
}

.eyebrow {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-logo {
    width: 100%;
    max-width: 260px;
    justify-self: center;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-logo:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px) rotate(-1deg);
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.hero-stats a {
    display: block;
    padding: 20px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    text-decoration: none;
}

.hero-stats a:hover {
    border-color: rgba(237, 28, 42, 0.35);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.hero-stats strong {
    display: block;
    color: var(--brand);
    font-size: 34px;
}

@media (max-width: 760px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 36px;
    }

    .hero-logo {
        max-width: 210px;
        justify-self: start;
    }
}
