/* --- HERO BUSINESS: ROZOSTUPY A MODERNE BUTTONY --- */

.hero-section.hero-business {
    padding: 120px 0; /* Výrazné medzery hore aj dole */
}

.hero-actions.dual-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* NOVÝ ŠTÝL TLAČIDIEL */
.btn-modern {
    padding: 14px 45px;
    border-radius: 50px; /* Menej "pill" tvar, viac moderný tech look */
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Plné modré tlačidlo (Školy) */
.btn-blue {
    background: #035695;
    color: #fff;
    border: 2px solid #035695;
    box-shadow: 0 4px 15px rgba(3, 86, 149, 0.3);
}

.btn-blue:hover {
    background: #0466b0;
    border-color: #0466b0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 86, 149, 0.5);
}

/* Obrysové tlačidlo (Firmy) */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Úprava pre mobil a menšie tablety */
@media (max-width: 991px) {
    .hero-section.hero-business {
        padding: 40px 0;
    }
    .hero-actions.dual-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .hero-actions.dual-buttons .btn-modern {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
        box-sizing: border-box;
    }
}
@media (max-width: 480px) {
    .hero-section.hero-business { padding: 0px 0; }
    .hero-actions.dual-buttons .btn-modern { padding: 12px 20px; font-size: 13px; }
}