.about-hero-section{
    --about-hero-bg-image:none;
    position:relative;
    isolation:isolate;
    min-height:620px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(110deg,#061b3a 0%,#092b57 52%,#0b3d70 100%);
    color:#fff;
}
.about-hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    background-image:var(--about-hero-bg-image);
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}
.about-hero-overlay{
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(90deg,rgba(3,18,43,.96) 0%,rgba(4,27,57,.90) 48%,rgba(4,27,57,.52) 100%);
}
.about-hero-container{
    position:relative;
    z-index:1;
    padding-top:92px;
    padding-bottom:92px;
}
.about-hero-content{width:100%;max-width:1180px;margin:0 auto;text-align:center;}
.about-hero-eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:22px;
    color:#72b7ff;
    font-size:13px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.about-hero-eyebrow-line{width:38px;height:2px;flex:0 0 auto;background:currentColor;border-radius:99px;}
.about-hero-title{
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    margin:0;
    color:#fff;
    font-size:clamp(2.45rem,5vw,4.65rem);
    font-weight:800;
    line-height:1.04;
    letter-spacing:-.035em;
}
.about-hero-description{
    max-width:900px;
    margin:26px 0 0;
    color:rgba(255,255,255,.84);
    font-size:18px;
    line-height:1.8;
}
.about-hero-actions{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:14px;margin-top:34px;}
.about-hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:13px 24px;
    border-radius:999px;
    font-size:15px;
    font-weight:700;
    line-height:1;
    text-decoration:none;
    transition:transform .25s ease,box-shadow .25s ease,background-color .25s ease,border-color .25s ease;
}
.about-hero-btn:hover{transform:translateY(-2px);}
.about-hero-btn-primary{border:1px solid #1683ff;background:#1683ff;color:#fff;box-shadow:0 14px 30px rgba(22,131,255,.25);}
.about-hero-btn-primary:hover{background:#0b73e6;color:#fff;box-shadow:0 18px 36px rgba(22,131,255,.34);}
.about-hero-btn-secondary{border:1px solid rgba(255,255,255,.55);background:rgba(255,255,255,.05);color:#fff;backdrop-filter:blur(8px);}
.about-hero-btn-secondary:hover{border-color:rgba(255,255,255,.9);background:rgba(255,255,255,.12);color:#fff;}
.about-hero-stats{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:24px;margin:48px auto 0;max-width:1000px;}
.about-hero-stat{min-width:125px;}
.about-hero-stat strong{display:block;color:#fff;font-size:28px;font-weight:800;line-height:1.1;}
.about-hero-stat span{display:block;margin-top:7px;color:rgba(255,255,255,.68);font-size:13px;font-weight:600;line-height:1.4;}
.about-hero-stat-divider{width:1px;height:42px;background:rgba(255,255,255,.22);}
@media(max-width:991.98px){
    .about-hero-section{min-height:560px;}
    .about-hero-overlay{background:linear-gradient(90deg,rgba(3,18,43,.94),rgba(4,27,57,.82));}
    .about-hero-container{padding-top:78px;padding-bottom:78px;}
}
@media(max-width:575.98px){
    .about-hero-content{width:100%;max-width:100%;text-align:center;}
    .about-hero-title{max-width:100%;}
    .about-hero-description{max-width:100%;margin-left:auto;margin-right:auto;}

    .about-hero-section{min-height:0;}
    .about-hero-container{padding-top:64px;padding-bottom:64px;}
    .about-hero-eyebrow{margin-bottom:18px;font-size:11px;letter-spacing:.11em;}
    .about-hero-title{font-size:clamp(2.2rem,11vw,3.25rem);line-height:1.08;letter-spacing:-.025em;}
    .about-hero-description{margin-top:20px;font-size:16px;line-height:1.7;}
    .about-hero-actions{align-items:stretch;flex-direction:column;margin-top:28px;}
    .about-hero-btn{width:100%;}
    .about-hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:36px;}
    .about-hero-stat{min-width:0;}
    .about-hero-stat strong{font-size:22px;}
    .about-hero-stat span{font-size:11px;}
    .about-hero-stat-divider{display:none;}
}
@media(prefers-reduced-motion:reduce){
    .about-hero-btn{transition:none;}
    .about-hero-btn:hover{transform:none;}
}
