/* ==========================================================
   MAMGOC Website V2
   13-about.css
========================================================== */

.about-hero{
    padding:150px 0 110px;
    background:
        radial-gradient(circle at top right,rgba(37,99,235,.18),transparent 42%),
        linear-gradient(135deg,#0f172a,#16233A);
    color:#fff;
}

.about-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.about-hero h1{
    color:#fff;
    margin-bottom:24px;
}

.about-hero p{
    color:rgba(255,255,255,.82);
    font-size:1.15rem;
    line-height:1.9;
    max-width:760px;
}

.about-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:34px;
}

.about-proof-card{
    padding:34px;
    border-radius:28px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 30px 70px rgba(0,0,0,.24);
}

.about-proof-card h3{
    color:#fff;
    margin-bottom:20px;
}

.about-proof-list{
    display:grid;
    gap:16px;
}

.about-proof-list span{
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.86);
    font-weight:800;
}

.about-proof-list span::before{
    content:"✓";
    width:26px;
    height:26px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#F7C948;
    color:#16233A;
    font-weight:900;
}

.about-story,
.about-values,
.about-technology,
.about-coverage{
    padding:100px 0;
}

.about-story{
    background:#fff;
}

.about-story-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

.about-story-card{
    padding:36px;
    border-radius:var(--radius-lg);
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:var(--shadow-sm);
}

.about-story-card strong{
    display:block;
    color:#F7C948;
    font-size:2.4rem;
    line-height:1;
    margin-bottom:10px;
}

.about-story-card span{
    color:var(--primary);
    font-weight:900;
}

.about-story-copy p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:18px;
}

.about-values{
    background:linear-gradient(180deg,#f8fafc,#fff);
}

.about-value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
    margin-top:48px;
}

.about-value-card{
    padding:32px;
    border-radius:var(--radius-lg);
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.about-value-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.about-value-card h3{
    margin:20px 0 10px;
}

.about-value-card p{
    color:var(--muted);
    line-height:1.75;
    margin:0;
}

.about-technology{
    background:#111c31;
    color:#fff;
}

.about-technology h2,
.about-technology h3{
    color:#fff;
}

.about-tech-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-tech-copy p{
    color:rgba(255,255,255,.78);
    line-height:1.9;
}

.about-tech-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:28px;
}

.about-tech-list span{
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-weight:800;
}

.about-tech-panel{
    padding:34px;
    border-radius:28px;
    background:#fff;
    color:var(--primary);
}

.about-tech-panel h3{
    color:var(--primary);
}

.about-tech-metric{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid rgba(15,23,42,.08);
}

.about-tech-metric strong{
    color:#F7C948;
    font-size:1.5rem;
}

.about-coverage{
    background:#fff;
}

.about-coverage-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:42px;
}

.about-coverage-item{
    padding:20px;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    color:var(--primary);
    font-weight:900;
}

.about-final-cta{
    padding:90px 0;
    background:#f8fafc;
}

.about-final-box{
    padding:48px;
    border-radius:28px;
    background:linear-gradient(135deg,#0f172a,#16233A);
    color:#fff;
    box-shadow:var(--shadow-lg);
}

.about-final-box h2{
    color:#fff;
    margin-bottom:14px;
}

.about-final-box p{
    color:rgba(255,255,255,.78);
    max-width:760px;
    line-height:1.8;
}

.about-final-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:28px;
}

/* ==========================================================
   About hero image upgrade
========================================================== */

.about-hero-with-image .about-hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(420px,.95fr);
    gap:56px;
}

.about-hero-visual{
    position:relative;
    min-height:520px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.14);
    border-radius:28px;
    background:#0f172a;
    box-shadow:0 30px 70px rgba(0,0,0,.28);
}

.about-hero-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.02) 30%,
            rgba(15,23,42,.88) 100%
        );
    pointer-events:none;
}

.about-hero-visual img{
    display:block;
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
    object-position:center;
}

.about-hero-overlay{
    position:absolute;
    z-index:2;
    right:26px;
    bottom:26px;
    left:26px;
    padding:24px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px;
    background:rgba(15,23,42,.74);
    backdrop-filter:blur(14px);
}

.about-hero-overlay h3{
    margin-bottom:18px;
    color:#fff;
}

.about-hero-overlay .about-proof-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 18px;
}

.about-hero-overlay .about-proof-list span{
    align-items:flex-start;
    font-size:.9rem;
}

.about-hero-overlay .about-proof-list span::before{
    width:22px;
    height:22px;
    flex:0 0 22px;
    font-size:.76rem;
}

@media (max-width:1100px){

    .about-hero-with-image .about-hero-grid{
        grid-template-columns:1fr;
    }

    .about-hero-visual,
    .about-hero-visual img{
        min-height:460px;
    }

}

@media (max-width:640px){

    .about-hero{
        padding:110px 0 70px;
    }

    .about-hero-visual{
        min-height:390px;
        border-radius:20px;
    }

    .about-hero-visual img{
        min-height:390px;
    }

    .about-hero-overlay{
        right:14px;
        bottom:14px;
        left:14px;
        padding:18px;
    }

    .about-hero-overlay .about-proof-list{
        grid-template-columns:1fr;
    }

}
