/* Net Soft Solutions — about.css | https://www.netsoft.in */

/* Removed unused selectors:
    .ft-logo
    .ft-logo img
    .ft-logo-fb
    .ft-logo-fb em
*/

:root {
    --navy: #0D2137;
    --blue: #1A56DB;
    --blue-h: #1446BE;
    --blue-lt: #EBF2FF;
    --blue-bd: #BFDBFE;
    --ink: #0F172A;
    --body: #475569;
    --muted: #64748B;
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --bg2: #F1F5F9;
    --line: #E2E8F0;
    --amber: #F59E0B;
    --green: #10B981;
    --hh: 'DM Serif Display',Georgia,serif;
    --hb: 'Manrope',system-ui,sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
    --mw: 1160px;
    --r: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--body);
    font-family: var(--hb);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.w {
    width: 92%;
    max-width: var(--mw);
    margin-inline: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}



.sr {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease),transform .6s var(--ease);
}

    .sr.on {
        opacity: 1;
        transform: none;
    }

.sl {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity .55s var(--ease),transform .55s var(--ease);
}

    .sl.on {
        opacity: 1;
        transform: none;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

    .eyebrow::before {
        content: '';
        width: 16px;
        height: 2px;
        background: var(--blue);
        border-radius: 99px;
    }

.sh {
    font-family: var(--hh);
    font-size: clamp(1.85rem,3vw,2.75rem);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -.02em;
    color: var(--ink);
}

    .sh em {
        font-style: italic;
        color: var(--blue);
    }

.ss {
    font-size: .94rem;
    color: var(--body);
    line-height: 1.88;
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: var(--r);
    font-family: var(--hb);
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s var(--ease);
}

    .btn svg {
        transition: transform .2s;
    }

    .btn:hover svg {
        transform: translateX(3px);
    }

.btn-blue {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

    .btn-blue:hover {
        background: var(--blue-h);
        box-shadow: 0 5px 18px rgba(26,86,219,.28);
    }

.btn-ol {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

    .btn-ol:hover {
        border-color: var(--ink);
    }

.btn-wt {
    background: #fff;
    color: var(--ink);
}

    .btn-wt:hover {
        background: var(--bg);
    }

.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.8);
}

    .btn-ghost:hover {
        border-color: #fff;
        color: #fff;
    }

.btn-lg {
    padding: 13px 26px;
    font-size: .94rem;
}

.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    text-align: center;
    padding: 8px 16px;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .01em;
}

    .topbar strong {
        color: #fff;
    }

    .topbar a {
        color: #fff;
        font-weight: 700;
        border-bottom: 1px solid rgba(255,255,255,.4);
        margin-left: 10px;
    }

        .topbar a:hover {
            border-color: #fff;
        }

header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

    .logo img {
        height: 34px;
        width: auto;
    }

.logo-fb {
    font-family: var(--hh);
    font-size: 1.15rem;
    color: var(--ink);
    display: none;
}

    .logo-fb em {
        font-style: italic;
        color: var(--blue);
    }

.nl {
    display: flex;
    gap: 4px;
    list-style: none;
    position: relative;
}

    .nl > li {
        position: relative;
    }

        .nl > li > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: .82rem;
            font-weight: 500;
            color: var(--body);
            transition: color .18s,background .18s;
            white-space: nowrap;
        }

            .nl > li > a:hover, .nl > li.active > a {
                color: var(--ink);
                background: var(--bg);
            }

.chev {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .2s;
}

.nl > li:hover > a .chev {
    transform: rotate(180deg);
}

.dd {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 32px rgba(13,33,55,.12);
    min-width: 230px;
    padding: 8px 6px 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity .18s var(--ease),transform .18s var(--ease),visibility .18s;
    z-index: 600;
}

    .dd::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
    }

.nl > li:hover .dd, .nl > li:focus-within .dd {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dd a {
    display: block;
    padding: 9px 14px;
    border-radius: 7px;
    font-size: .81rem;
    font-weight: 500;
    color: var(--body);
    transition: background .15s,color .15s;
    white-space: nowrap;
}

    .dd a:hover {
        background: var(--blue-lt);
        color: var(--blue);
    }

.nav-r {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-ph {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
}

    .nav-ph:hover {
        color: var(--blue);
    }

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: .2s;
    }

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
    z-index: 900;
    transition: transform .2s;
}

    .wa-float:hover {
        transform: scale(1.1);
    }

    .wa-float svg {
        width: 26px;
        height: 26px;
        fill: #fff;
    }

.btt-btn {
    position: fixed;
    bottom: 84px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.2);
    z-index: 900;
    transition: background .2s;
}

    .btt-btn.show {
        display: flex;
    }

    .btt-btn:hover {
        background: var(--blue);
    }

.bc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .71rem;
    color: rgba(255,255,255,.38);
    margin-bottom: 12px;
}

    .bc a {
        color: rgba(255,255,255,.55);
    }

        .bc a:hover {
            color: rgba(255,255,255,.9);
        }

.bc-sep {
    color: rgba(255,255,255,.22);
}

.pg-hero {
    background: var(--navy);
    padding: 72px 0 86px;
    position: relative;
    overflow: hidden;
}

    .pg-hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -100px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(26,86,219,.1);
        pointer-events: none;
    }

    .pg-hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(26,86,219,.06);
        pointer-events: none;
    }

.pg-hero-inner {
    position: relative;
    z-index: 1;
}

.pg-hero-eyebrow {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.pg-hero h1 {
    font-family: var(--hh);
    font-size: clamp(2rem,3.6vw,3.3rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.025em;
}

    .pg-hero h1 em {
        font-style: italic;
        color: var(--blue-bd);
    }

.pg-hero-p {
    font-size: .97rem;
    color: rgba(255,255,255,.6);
    line-height: 1.88;
    margin-top: 18px;
    max-width: 620px;
}

.pg-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cta-band {
    background: var(--navy);
    padding: 72px 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-l h2 {
    font-family: var(--hh);
    font-size: clamp(1.7rem,2.6vw,2.3rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
}

    .cta-l h2 em {
        font-style: italic;
        color: var(--blue-bd);
    }

.cta-l p {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    margin-top: 10px;
    line-height: 1.78;
}

.cta-r {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.timeline {
    margin: 36px 0 40px;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(to bottom,var(--blue),var(--blue-lt));
        border-radius: 2px;
    }

.tl-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

    .tl-item:last-child {
        margin-bottom: 0;
    }

.tl-dot {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hb);
    font-size: .78rem;
    color: var(--blue-bd);
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--white);
}

.tl-body {
    padding-top: 8px;
}

.tl-year {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.tl-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.tl-text {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.68;
}

.services-section {
    background: var(--bg);
    padding: 88px 0;
}

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

.svc-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow .25s,border-color .25s,transform .25s;
}

    .svc-card:hover {
        box-shadow: 0 8px 36px rgba(13,33,55,.1);
        border-color: var(--blue-bd);
        transform: translateY(-3px);
    }

.svc-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.svc-title {
    font-size: .96rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.svc-desc {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.75;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 12px;
    transition: gap .18s;
}

.svc-card:hover .svc-link {
    gap: 8px;
}

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

.sector-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    transition: background .18s,border-color .18s;
}

    .sector-box:hover {
        background: var(--blue-lt);
        border-color: var(--blue-bd);
    }

.sector-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.culture-section {
    background: var(--bg);
    padding: 88px 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}

.culture-prose p {
    font-size: .92rem;
    color: var(--body);
    line-height: 1.88;
    margin-bottom: 18px;
}

    .culture-prose p strong {
        color: var(--ink);
    }

.team-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pillar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 22px;
    border-left: 3px solid var(--blue);
}

.pillar-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 5px;
}

.pillar-text {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.7;
}

footer {
    background: #070F1A;
    font-family: var(--hb);
}

.ft-main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 52px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-brand {
    flex: 0 0 32%;
    max-width: 32%;
    padding-right: 48px;
    box-sizing: border-box;
}

.ft-desc {
    margin-top: 18px;
    font-size: .79rem;
    color: rgba(255,255,255,.32);
    line-height: 1.88;
    max-width: 230px;
}

.ft-addr {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .ft-addr a, .ft-addr span {
        font-size: .77rem;
        color: rgba(255,255,255,.38);
        display: flex;
        align-items: flex-start;
        gap: 7px;
        transition: color .16s;
        font-style: normal;
        line-height: 1.5;
    }

        .ft-addr a:hover {
            color: rgba(255,255,255,.82);
        }

.ft-col {
    flex: 0 0 22.67%;
    max-width: 22.67%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    padding-right: 24px;
}

    .ft-col:last-child {
        padding-right: 0;
    }

.ft-col-head {
    display: block;
    width: 100%;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin: 0 0 0;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 1;
}

.ft-col ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

    .ft-col ul li {
        margin: 0;
        padding: 0;
    }

        .ft-col ul li a {
            font-size: .8rem;
            color: rgba(255,255,255,.46);
            transition: color .16s;
            display: block;
            line-height: 1.5;
        }

            .ft-col ul li a:hover {
                color: rgba(255,255,255,.92);
            }

.ft-soc-wrap {
    margin-top: 28px;
    width: 100%;
}

.ft-soc-head {
    display: block;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 14px;
    line-height: 1;
}

.ft-soc {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .ft-soc a {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 7px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        display: grid;
        place-items: center;
        color: rgba(255,255,255,.5);
        transition: all .18s;
        text-decoration: none;
        flex-shrink: 0;
    }

        .ft-soc a:hover {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
        }

        .ft-soc a svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
            display: block;
        }

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
}

.ft-copy {
    font-size: .71rem;
    color: rgba(255,255,255,.2);
    line-height: 1.6;
}

    .ft-copy a {
        color: rgba(255,255,255,.34);
        transition: color .16s;
    }

        .ft-copy a:hover {
            color: rgba(255,255,255,.68);
        }

@media(max-width:900px) {
    .nl, .nav-ph, .desk-cta {
        display: none;
    }

    .ham {
        display: flex;
    }

    .nl.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid var(--line);
        overflow-y: auto;
        padding: 12px 0;
        z-index: 400;
    }

        .nl.open > li > a {
            padding: 13px 5%;
            font-size: .92rem;
            border-radius: 0;
            border-bottom: 1px solid var(--bg2);
        }

        .nl.open .dd {
            position: static;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: none;
            box-shadow: none;
            border: none;
            border-radius: 0;
            background: var(--bg);
            padding: 4px 0 4px 24px;
            display: none;
        }

        .nl.open li.mob-open .dd {
            display: block;
        }

        .nl.open .dd a {
            padding: 10px 5%;
            border-radius: 0;
            font-size: .85rem;
        }

        .nl.open .chev {
            margin-left: auto;
        }

    .ft-main {
        flex-wrap: wrap;
    }

    .ft-brand {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
        padding-bottom: 26px;
        margin-bottom: 26px;
    }

    .ft-col {
        flex: 0 0 calc(33.33% - 14px);
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-r {
        align-items: flex-start;
    }
}

@media(max-width:580px) {
    .ft-col {
        flex: 0 0 100%;
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.pg-hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: center;
}

.hero-timeline {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 26px 22px;
}

.htl-label {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    margin-bottom: 18px;
}

.htl-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .htl-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

.htl-yr {
    font-family: var(--hh);
    font-size: 1.05rem;
    color: var(--blue-bd);
    min-width: 42px;
    flex-shrink: 0;
    line-height: 1.2;
}

.htl-body strong {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    margin-bottom: 3px;
}

.htl-body p {
    font-size: .72rem;
    color: rgba(255,255,255,.42);
    line-height: 1.55;
}

.story-sec {
    padding: 90px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.story-body p {
    font-size: .94rem;
    color: var(--body);
    line-height: 1.9;
    margin-bottom: 15px;
}

.story-stats {
    background: var(--navy);
    border-radius: 18px;
    padding: 32px;
    overflow: hidden;
    position: sticky;
    top: 88px;
}

    .story-stats::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(26,86,219,.18);
    }

.ss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}

.ss-tile {
    background: var(--navy);
    padding: 18px 20px;
}

.ss-n {
    font-family: var(--hh);
    font-size: 2.1rem;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
}

    .ss-n em {
        font-style: italic;
        color: var(--blue-bd);
        font-size: 1.15rem;
    }

.ss-l {
    font-size: .69rem;
    color: rgba(255,255,255,.38);
    margin-top: 5px;
}

.story-quote {
    font-size: .8rem;
    font-style: italic;
    color: rgba(255,255,255,.42);
    border-left: 3px solid var(--blue);
    padding-left: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

    .story-quote cite {
        display: block;
        font-style: normal;
        font-size: .7rem;
        color: rgba(255,255,255,.28);
        margin-top: 8px;
    }

.values-sec {
    padding: 90px 0;
    background: var(--bg);
}

.values-hd {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.vc {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s,transform .22s;
}

    .vc::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s var(--ease);
    }

    .vc:hover {
        box-shadow: 0 10px 30px rgba(26,86,219,.1);
        transform: translateY(-4px);
    }

        .vc:hover::after {
            transform: scaleX(1);
        }

.vc-num {
    font-family: var(--hh);
    font-size: 3rem;
    color: var(--blue-lt);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -.04em;
}

.vc h3 {
    font-size: .97rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 9px;
}

.vc p {
    font-size: .84rem;
    color: var(--body);
    line-height: 1.78;
}

.diff-sec {
    padding: 90px 0;
    background: var(--white);
}

.diff-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
}

.diff-sticky {
    position: sticky;
    top: 88px;
}

.diff-col {
    display: flex;
    flex-direction: column;
}

.di {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

    .di:last-child {
        border-bottom: none;
    }

.di-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .di-ico svg {
        width: 20px;
        height: 20px;
        color: var(--blue);
    }

.di h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
}

.di p {
    font-size: .84rem;
    color: var(--body);
    line-height: 1.77;
}

.sectors-sec {
    padding: 90px 0;
    background: var(--bg);
}

.sectors-hd {
    text-align: center;
    margin-bottom: 38px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

.sc {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    transition: border-color .2s,box-shadow .2s;
}

    .sc:hover {
        border-color: var(--blue-bd);
        box-shadow: 0 4px 16px rgba(26,86,219,.07);
    }

.sc-label {
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px;
}

.sc-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.sc-desc {
    font-size: .77rem;
    color: var(--body);
    line-height: 1.65;
}

.testi-sec {
    padding: 90px 0;
    background: var(--white);
}

.testi-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.tc {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
}

.tc-stars {
    color: var(--amber);
    font-size: .78rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.tc-text {
    font-family: var(--hh);
    font-style: italic;
    font-size: .94rem;
    color: var(--ink);
    line-height: 1.76;
    margin-bottom: 18px;
}

.tc-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hh);
    font-size: .95rem;
    color: var(--blue);
    flex-shrink: 0;
}

.tc-name {
    font-size: .79rem;
    font-weight: 700;
    color: var(--ink);
}

.tc-role {
    font-size: .68rem;
    color: var(--muted);
}

@media(max-width:960px) {
    .pg-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-timeline {
        display: none;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .val-grid {
        grid-template-columns: 1fr 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .diff-sticky {
        position: static;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

        .testi-grid .tc:last-child {
            display: none;
        }
}

@media(max-width:600px) {
    .val-grid, .sectors-grid, .testi-grid {
        grid-template-columns: 1fr;
    }

        .testi-grid .tc:last-child {
            display: block;
        }
}


/* ── Skip link ── */
.skip-link {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    font-size: .9rem;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    transform: translateY(-100%);
    transition: transform .2s;
}

    .skip-link:focus {
        transform: translateY(0);
        outline: 3px solid #fff;
        outline-offset: 2px;
    }

/* ── Focus styles for keyboard accessibility ── */
:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible,
a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── FAQ Section ── */
.faq-sec {
    padding: 90px 0;
    background: var(--bg);
}

.faq-hd {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

    .faq-item[open] {
        border-color: var(--blue-bd);
        box-shadow: 0 4px 18px rgba(26,86,219,.08);
    }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: .96rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    gap: 16px;
}

    .faq-q::-webkit-details-marker {
        display: none;
    }

    .faq-q::after {
        content: '+';
        font-size: 1.3rem;
        font-weight: 400;
        color: var(--blue);
        flex-shrink: 0;
        transition: transform .2s;
    }

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--body);
    line-height: 1.8;
}

/* ── sr-only utility ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Print styles ── */
@media print {
    .topbar, header, .wa-float, .btt-btn, .skip-link, .pg-hero-btns, nav {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .pg-hero {
        background: #fff !important;
        padding: 20px 0;
    }

    .pg-hero h1 {
        color: #000 !important;
    }

    .sr, .sl {
        opacity: 1 !important;
        transform: none !important;
    }

    footer {
        background: #f8f8f8 !important;
    }
}
