/* ============================================================
   GEST — HERO CONTENT BOXES
   CONTENT ONLY
   HEADER / NAVIGATION NOT TOUCHED
   ============================================================ */

.gest-hero-content-boxes{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:28px;
}

.gest-hero-content-box{
    position:relative;
    box-sizing:border-box;
    min-height:190px;
    padding:24px;
    background:rgba(255,248,244,.94);
    border:1px solid #eadbd4;
    border-radius:22px;
    box-shadow:0 8px 22px rgba(34,48,52,.045);
    overflow:hidden;
}

.gest-hero-content-box::after{
    content:"";
    position:absolute;
    width:95px;
    height:95px;
    right:-35px;
    top:-35px;
    border-radius:50%;
    background:#f4ded4;
    opacity:.75;
}

.gest-hero-number{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-bottom:18px;
    border-radius:13px;
    background:#fff0e9;
    color:#c96f57;
    font-size:13px;
    font-weight:700;
}

.gest-hero-content-box h3{
    position:relative;
    z-index:2;
    margin:0 0 12px;
    color:#173f45;
    font-size:17px;
    line-height:1.5;
}

.gest-hero-content-box p{
    position:relative;
    z-index:2;
    margin:0;
    color:#5d6b70;
    font-size:13px;
    line-height:1.75;
}

/* Workflow card below the three boxes */

.gest-hero-workflow-box{
    position:relative;
    margin-top:20px;
    padding:24px 26px;
    background:rgba(255,248,244,.94);
    border:1px solid #eadbd4;
    border-radius:22px;
    box-shadow:0 8px 22px rgba(34,48,52,.045);
}

.gest-hero-workflow-title{
    color:#173f45;
    font-size:15px;
    font-weight:700;
    margin-bottom:16px;
}

.gest-hero-workflow{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
}

.gest-hero-workflow span{
    padding:9px 13px;
    border-radius:12px;
    background:#fff0e9;
    border:1px solid #eadbd4;
    color:#173f45;
    font-size:13px;
}

.gest-hero-workflow b{
    color:#d77c63;
    font-weight:700;
}

.gest-hero-workflow-note{
    margin-top:15px;
    color:#667174;
    font-size:13px;
    line-height:1.7;
}

@media(max-width:900px){
    .gest-hero-content-boxes{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:600px){
    .gest-hero-content-boxes{
        grid-template-columns:1fr;
    }

    .gest-hero-content-box{
        min-height:auto;
    }

    .gest-hero-workflow{
        display:grid;
        grid-template-columns:1fr;
    }

    .gest-hero-workflow b{
        display:none;
    }
}
