/*
 * V31 — Reduced hero top spacing and lifted right illustration
 * Clean two-column content + contributor-team illustration.
 */
.hero.hero-v24{
    position:relative;
    isolation:isolate;
    padding:38px 0 42px !important;
    overflow:hidden;
    background:
        radial-gradient(circle at 86% 20%, rgba(22,150,127,.105), transparent 30%),
        linear-gradient(180deg,#fff 0%,#fff 78%,#fbfdfc 100%);
}

.hero.hero-v24 .hero-orb{
    z-index:-1;
    opacity:.72;
}

.hero.hero-v24 .hero-grid{
    display:grid !important;
    grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr) !important;
    align-items:center !important;
    gap:38px !important;
}

.hero.hero-v24 .hero-copy{
    position:relative;
    z-index:2;
    max-width:670px !important;
    margin:0 !important;
    padding:0 !important;
    text-align:left !important;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin:0 0 18px;
    padding:7px 12px;
    border:1px solid rgba(22,150,127,.18);
    border-radius:999px;
    background:#eaf7f4;
    color:#0f6f5f;
    font-size:12px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:.045em;
    text-transform:uppercase;
}

.hero-kicker > span{
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
    background:var(--green);
}

.hero.hero-v24 h1{
    max-width:660px !important;
    margin:0 0 20px !important;
    font-size:clamp(40px,4vw,50px) !important;
    line-height:1.1 !important;
    letter-spacing:-.038em !important;
    font-weight:600 !important;
    text-wrap:balance;
}

.hero.hero-v24 h1 .accent-word{
    display:block;
    color:var(--green) !important;
    -webkit-text-fill-color:var(--green) !important;
}

.hero.hero-v24 .hero-lead{
    max-width:650px !important;
    margin:0 !important;
    color:#5f6b7b;
    font-size:16.5px !important;
    line-height:1.72 !important;
}

.hero.hero-v24 .hero-lead strong{
    color:var(--ink);
    font-weight:600;
}

.hero.hero-v24 .hero-actions{
    display:flex !important;
    align-items:center !important;
    flex-wrap:wrap !important;
    gap:12px !important;
    margin:27px 0 0 !important;
}

.hero.hero-v24 .hero-actions .button{
    width:auto !important;
    min-height:50px !important;
    padding:0 21px !important;
    border-radius:11px !important;
    font-size:14px !important;
    font-weight:500 !important;
    text-decoration:none !important;
    white-space:nowrap;
}

.hero.hero-v24 .hero-actions .button-secondary{
    background:#fff !important;
    border:1px solid var(--line) !important;
    color:var(--ink) !important;
}


.hero-benefits{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:20px;
}

.hero-benefits article{
    display:flex;
    align-items:flex-start;
    gap:10px;
    min-width:0;
    padding:13px 12px;
    border:1px solid #e7ecef;
    border-radius:14px;
    background:rgba(255,255,255,.78);
}

.hero-benefit-icon{
    display:grid;
    place-items:center;
    width:27px;
    height:27px;
    flex:0 0 27px;
    border-radius:8px;
    background:var(--green-soft);
    color:#0f6f5f;
    font-size:9px;
    line-height:1;
    font-weight:600;
}

.hero-benefits h2{
    margin:1px 0 4px;
    color:var(--ink);
    font-size:12px;
    line-height:1.35;
    letter-spacing:-.015em;
    font-weight:600;
}

.hero-benefits p{
    margin:0;
    color:#788392;
    font-size:10.5px;
    line-height:1.5;
}

.hero-visual{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    min-width:0;
    transform:translateY(-34px);
}

.hero-image-wrap{
    position:relative;
    width:min(100%,540px);
    margin-left:auto;
}

.hero-image-wrap::before{
    content:"";
    position:absolute;
    z-index:-1;
    inset:14% 3% 5% 9%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(22,150,127,.12) 0%,rgba(22,150,127,.045) 50%,transparent 72%);
    filter:blur(10px);
}

.hero-image-wrap img{
    width:100% !important;
    height:auto !important;
    max-width:none !important;
    object-fit:contain;
    object-position:center;
    filter:drop-shadow(0 18px 24px rgba(17,24,39,.09));
}

.hero.hero-v24 .positioning-line{
    display:flex !important;
    margin-top:34px !important;
    padding-top:19px !important;
    border-top:1px solid var(--line) !important;
    font-size:13px;
}

.hero.hero-v24 .positioning-line span,
.hero.hero-v24 .positioning-line strong{
    font-size:13px !important;
}

.hero.hero-v24 .positioning-line strong{
    color:#344054;
    font-weight:500;
}

@media (max-width:1180px){
    .hero.hero-v24 .hero-grid{
        grid-template-columns:minmax(0,1.04fr) minmax(390px,.96fr) !important;
        gap:28px !important;
    }

    .hero.hero-v24 h1{
        font-size:clamp(39px,4.1vw,47px) !important;
    }

    .hero-benefits{
        grid-template-columns:1fr;
        max-width:560px;
    }

    .hero-benefits article{
        padding:11px 12px;
    }

    .hero-benefits p{
        font-size:10.5px;
    }
}

@media (max-width:1024px){
    .hero-visual{
        transform:translateY(-22px);
    }

    .hero.hero-v24{
        padding:34px 0 36px !important;
    }

    .hero.hero-v24 .hero-grid{
        grid-template-columns:minmax(0,1.05fr) minmax(330px,.95fr) !important;
        gap:22px !important;
    }

    .hero.hero-v24 h1{
        max-width:560px !important;
        font-size:38px !important;
    }

    .hero.hero-v24 .hero-lead{
        font-size:14.5px !important;
        line-height:1.65 !important;
    }

    .hero.hero-v24 .hero-actions{
        margin-top:21px !important;
    }

    .hero.hero-v24 .hero-actions .button{
        min-height:45px !important;
        padding:0 16px !important;
        font-size:12.5px !important;
    }

    .hero-benefits{
        margin-top:16px;
        gap:7px;
    }

    .hero-benefits article{
        padding:9px 10px;
    }

    .hero-image-wrap{
        width:min(100%,455px);
    }
}

@media (max-width:860px){
    .hero-visual{
        transform:none;
    }

    .hero.hero-v24{
        padding:34px 0 34px !important;
    }

    .hero.hero-v24 .hero-grid{
        grid-template-columns:1fr !important;
        gap:26px !important;
    }

    .hero.hero-v24 .hero-copy{
        max-width:720px !important;
    }

    .hero.hero-v24 h1{
        max-width:650px !important;
        font-size:clamp(35px,6vw,43px) !important;
    }

    .hero.hero-v24 .hero-lead{
        max-width:690px !important;
        font-size:15px !important;
    }

    .hero-benefits{
        grid-template-columns:repeat(3,minmax(0,1fr));
        max-width:none;
    }

    .hero-benefits article{
        padding:12px 11px;
    }

    .hero-visual{
        justify-content:center;
    }

    .hero-image-wrap{
        width:min(100%,560px);
        margin:0 auto;
    }
}

@media (max-width:767px){
    .hero.hero-v24 .hero-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        grid-template-areas:
            "visual"
            "copy" !important;
        align-items:start !important;
        gap:8px !important;
    }

    .hero.hero-v24{
        padding:16px 0 27px !important;
    }

    .hero.hero-v24 .hero-visual{
        grid-area:visual !important;
        order:-1 !important;
        transform:translateY(-10px) !important;
        justify-content:center !important;
        margin:0 0 -2px !important;
    }

    .hero.hero-v24 .hero-copy{
        grid-area:copy !important;
        order:2 !important;
        text-align:center !important;
    }

    .hero-kicker{
        margin-bottom:14px;
        padding:6px 10px;
        font-size:10px;
    }

    .hero.hero-v24 h1{
        max-width:100% !important;
        margin:0 auto 14px !important;
        font-size:31px !important;
        line-height:1.09 !important;
        letter-spacing:-.045em !important;
        text-align:center !important;
    }

    .hero.hero-v24 .hero-lead{
        max-width:100% !important;
        margin:0 auto !important;
        font-size:14px !important;
        line-height:1.62 !important;
        text-align:center !important;
    }

    .hero.hero-v24 .hero-actions{
        display:grid !important;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:9px !important;
        margin-top:18px !important;
        align-items:stretch !important;
    }

    .hero.hero-v24 .hero-actions .button{
        width:100% !important;
        min-height:44px !important;
        padding:0 10px !important;
        font-size:12px !important;
        white-space:nowrap !important;
    }

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

    .hero-image-wrap{
        width:min(100%,330px);
        margin:0 auto !important;
    }

    .hero.hero-v24 .positioning-line{
        display:none !important;
    }
}

@media (max-width:389px){
    .hero.hero-v24 h1{
        font-size:28px !important;
    }
}
