/* =====================================================
   DIGITAL PRO — O NAS
   ===================================================== */

.about-hero{
    padding:96px 0 88px;
    color:#fff;
    background:
        radial-gradient(circle at 84% 18%,rgba(75,133,255,.22),transparent 28%),
        linear-gradient(135deg,#061027 0%,#0a1b3d 58%,#17417f 100%);
}

.about-hero__grid{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(320px,.55fr);
    gap:80px;
    align-items:end;
}

.about-hero h1{
    max-width:900px;
    margin:0;
    font-size:clamp(52px,5.3vw,84px);
    line-height:.96;
    letter-spacing:-.06em;
}

.about-hero__content>p:last-child{
    max-width:760px;
    margin:26px 0 0;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.75;
}

.about-hero__panel{
    display:grid;
    gap:1px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    background:rgba(255,255,255,.08);
}

.about-hero__panel div{
    padding:22px 24px;
    background:rgba(7,21,47,.72);
}

.about-hero__panel strong{
    display:block;
    margin-bottom:6px;
    font-size:15px;
}

.about-hero__panel span{
    color:rgba(255,255,255,.58);
    font-size:11px;
}

.about-intro__grid,
.about-automation__grid,
.about-values__grid{
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:80px;
    align-items:start;
}

.about-intro h2,
.about-automation h2,
.about-values h2,
.about-section-head h2,
.about-cta h2{
    margin:0;
    font-size:clamp(38px,4vw,62px);
    line-height:1;
    letter-spacing:-.05em;
}

.about-intro__text{
    display:grid;
    gap:18px;
}

.about-intro__text p,
.about-automation>div>p,
.about-section-head>p:last-child,
.about-cta__box p{
    margin:0;
    color:#66748a;
    font-size:15px;
    line-height:1.75;
}

.about-section-head{
    max-width:780px;
    margin-bottom:44px;
}

.about-section-head>p:last-child{
    margin-top:18px;
}

.about-sectors{
    background:#f6f8fc;
}

.about-sectors__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

.about-sector{
    min-height:240px;
    padding:24px;
    border:1px solid #e0e7f0;
    border-radius:14px;
    background:#fff;
}

.about-sector__number,
.about-process article>span{
    color:#2f73ff;
    font-size:10px;
    font-weight:800;
}

.about-sector h3,
.about-process h3,
.about-values__content h3{
    margin:28px 0 10px;
    font-size:20px;
    letter-spacing:-.03em;
}

.about-sector p,
.about-process p,
.about-values__content p,
.about-automation__list p{
    margin:0;
    color:#68758a;
    font-size:13px;
    line-height:1.65;
}

.about-automation__list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.about-automation__list article{
    padding:22px;
    border:1px solid #dfe7f1;
    border-radius:14px;
    background:#fff;
}

.about-automation__list strong{
    display:block;
    margin-bottom:8px;
    font-size:15px;
}

.about-process{
    background:#07152f;
    color:#fff;
}

.about-process .section-label{
    color:#7da9ff;
}

.about-process__grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:1px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.08);
}

.about-process article{
    min-height:220px;
    padding:24px;
    background:#0b1a38;
}

.about-process h3{
    color:#fff;
}

.about-process p{
    color:rgba(255,255,255,.58);
}

.about-values__content{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.about-values__content article{
    padding:22px 0;
    border-top:1px solid #dfe7f1;
}

.about-values__content h3{
    margin:0 0 8px;
}

.about-cta__box{
    display:grid;
    grid-template-columns:1fr auto;
    gap:44px;
    align-items:center;
    padding:46px 50px;
    border-radius:22px;
    color:#fff;
    background:
        radial-gradient(circle at 86% 18%,rgba(91,151,255,.25),transparent 25%),
        linear-gradient(135deg,#08152f,#16417f);
}

.about-cta__box p{
    max-width:760px;
    margin-top:16px;
    color:rgba(255,255,255,.68);
}

@media(max-width:1100px){
    .about-hero__grid,
    .about-intro__grid,
    .about-automation__grid,
    .about-values__grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .about-sectors__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .about-process__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:760px){
    .about-hero{
        padding:72px 0 64px;
    }

    .about-hero h1{
        font-size:clamp(44px,13vw,62px);
    }

    .about-sectors__grid,
    .about-automation__list,
    .about-process__grid,
    .about-values__content{
        grid-template-columns:1fr;
    }

    .about-sector,
    .about-process article{
        min-height:auto;
    }

    .about-cta__box{
        grid-template-columns:1fr;
        padding:34px 24px;
    }
}