@media(max-width:991px){
    .hero-actions{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
        width:100%;
        max-width:none;
        margin-top:24px;
    }

    .hero-actions .hero-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        min-width:0;
        height:68px;
        padding:0 12px;
        gap:8px;
        border:1px solid rgba(255,255,255,.72);
        border-radius:18px;
        background:rgba(248,246,241,.90);
        color:#26333d;
        box-shadow:0 10px 26px rgba(15,23,42,.14);
        font-size:14px;
        font-weight:800;
        white-space:nowrap;
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
    }

    .hero-actions .hero-btn-primary{
        border-color:rgba(226,154,38,.72);
        background:linear-gradient(135deg,#f3ba55 0%,#d99a32 100%);
        color:#292015;
        box-shadow:0 10px 26px rgba(136,84,18,.22);
    }

    .hero-actions .hero-btn-secondary{
        background:rgba(248,246,241,.90);
        color:#26333d;
    }

    .hero-actions .hero-btn:active{
        transform:scale(.98);
    }

    .hero-actions .hero-btn svg{
        flex:0 0 auto;
        width:22px;
        height:22px;
    }

    .hero-actions .hero-btn span{
        min-width:0;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }

    .hero-summary{
        display:none!important;
    }
}

@media(max-width:560px){
    .hero-actions{
        gap:8px;
    }

    .hero-actions .hero-btn{
        height:62px;
        padding:0 10px;
        gap:6px;
        font-size:13px;
    }

    .hero-actions .hero-btn svg{
        width:20px;
        height:20px;
    }
}
