/*
 * Net Soft Solutions — Main Stylesheet
 * Custom Software Development Company, New Delhi, India
 * https://www.netsoft.in
 * -------------------------------------------------------
 * Extracted from inline CSS for improved Core Web Vitals,
 * LCP performance and crawl efficiency.
 */

:root {
    color-scheme: light;
    --navy: #0D2137;
    --blue: #1A56DB;
    --blue-h: #1446BE;
    --blue-lt: #EBF2FF;
    --blue-bd: #BFDBFE;
    --ink: #0F172A;
    --body: #475569;
    --muted: #94A3B8;
    --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;
}

::selection {
    background: var(--blue-lt);
    color: var(--ink);
}

::-moz-selection {
    background: var(--blue-lt);
    color: var(--ink);
}

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;
}

/* Prose links underlined — WCAG 1.4.1 */
.vision-body a,
p a,
.faq-a a,
.ft-desc a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.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);
}


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



/* Page Hero */
.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;
}
/* Shared CTA band */
.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;
}



/* ═══════════════════════════════════════════════
   FOOTER — flex row, explicit widths per column.
   Flexbox with flex-direction:column per column
   is bulletproof: heading always above its list.
═══════════════════════════════════════════════ */
footer {
    background: #070F1A;
    font-family: var(--hb);
}

/* Outer row — flex, top-aligned */
.ft-main {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* stretch cols to equal height — prevents social icon overflow */
    gap: 0;
    padding: 52px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Col 1 — brand: 32% of row */
.ft-brand {
    flex: 0 0 32%;
    max-width: 32%;
    padding-right: 48px;
    box-sizing: border-box;
}

/* Logo — natural aspect ratio, never stretched */
.ft-logo {
    line-height: 0;
}

    .ft-logo img {
        display: block;
        height: 34px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        object-position: left center;
        filter: brightness(0) invert(1);
    }

.ft-logo-fb {
    font-family: var(--hh);
    font-size: 1rem;
    color: #fff;
    display: none;
}

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

.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);
        }

/* Cols 2, 3, 4 — each a flex column, 22.67% wide */
.ft-col {
    flex: 0 0 22.67%;
    max-width: 22.67%;
    display: flex;
    flex-direction: column; /* heading always first, list below */
    align-items: flex-start;
    box-sizing: border-box;
    padding-right: 24px;
}

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

/* Column heading */
.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; /* no top margin — always at col top */
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 1;
}

/* Link list */
.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);
            }

/* Social block inside col 4 — gap between last link and Follow Us */
.ft-soc-wrap {
    margin-top: 28px; /* ← explicit gap between Privacy Policy and Follow Us */
    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: 32px;
        height: 32px;
        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;
        }

/* Footer bottom bar */
.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 360px;
    gap: 56px;
    align-items: center;
}

.hero-pillars-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpp {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 4px solid var(--blue);
}

    .hpp h3 {
        font-family: var(--hh);
        font-size: 1rem;
        font-weight: 400;
        color: #fff;
        margin-bottom: 7px;
    }

    .hpp p {
        font-size: .77rem;
        color: rgba(255,255,255,.48);
        line-height: 1.65;
    }
/* Vision body */
.vision-sec {
    padding: 90px 0;
    background: var(--white);
}

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

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

.vision-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.va {
    background: var(--navy);
    border-radius: 14px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}

    .va::after {
        content: '';
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(26,86,219,.2);
    }

    .va h3 {
        font-family: var(--hh);
        font-size: 1.05rem;
        font-weight: 400;
        color: #fff;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }

    .va p {
        font-size: .8rem;
        color: rgba(255,255,255,.48);
        line-height: 1.68;
        position: relative;
        z-index: 1;
    }
/* Mission pillars */
.pillars-sec {
    padding: 90px 0;
    background: var(--bg);
}

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

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

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

    .pc:hover {
        box-shadow: 0 8px 28px rgba(26,86,219,.1);
        transform: translateY(-3px);
    }

.pc-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

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

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

.pc p {
    font-size: .84rem;
    color: var(--body);
    line-height: 1.77;
}
/* Goals */
.goals-sec {
    padding: 90px 0;
    background: var(--white);
}

.goals-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 64px;
    align-items: start;
}

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

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

.goal-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.gi {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.gi-num {
    font-family: var(--hh);
    font-size: 1.35rem;
    color: var(--blue);
    flex-shrink: 0;
    min-width: 32px;
    line-height: 1.3;
}

.gi h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.gi p {
    font-size: .84rem;
    color: var(--body);
    line-height: 1.75;
}
/* Promise */
.promise-sec {
    padding: 90px 0;
    background: var(--bg);
}

.promise-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

    .promise-inner blockquote {
        font-family: var(--hh);
        font-size: clamp(1.25rem,2vw,1.8rem);
        font-style: italic;
        color: var(--ink);
        line-height: 1.48;
        margin: 26px 0 16px;
        letter-spacing: -.01em;
    }

    .promise-inner cite {
        font-size: .8rem;
        color: var(--muted);
        font-style: normal;
    }

.promise-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 44px;
}

.ps-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.ps-n {
    font-family: var(--hh);
    font-size: 2.1rem;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
}

.ps-l {
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
}

.ps-s {
    font-size: .71rem;
    color: var(--muted);
    margin-top: 3px;
}

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

    .hero-pillars-panel {
        display: none;
    }

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

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

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

    .goals-sticky {
        position: static;
    }

    .promise-stats {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

.val-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
}

    .val-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--blue);
    }

.val-num {
    font-family: var(--hh);
    font-size: 3rem;
    color: var(--line);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}

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

.val-card p {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.78;
}

@media(max-width:600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .promise-stats {
        grid-template-columns: 1fr 1fr;
    }
}
/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--line);
}

    .faq-item:first-child {
        border-top: 1px solid var(--line);
    }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--hb);
    font-size: .93rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    line-height: 1.5;
    transition: color .18s;
}

    .faq-q:hover {
        color: var(--blue);
    }

    .faq-q svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        color: var(--blue);
        transition: transform .28s var(--ease);
    }

.faq-item.open .faq-q {
    color: var(--blue);
}

    .faq-item.open .faq-q svg {
        transform: rotate(180deg);
    }

.faq-a {
    display: none;
    padding: 0 0 20px 0;
    font-size: .88rem;
    color: var(--body);
    line-height: 1.85;
}

.faq-item.open .faq-a {
    display: block;
}

@media(max-width:860px) {
    .faq-grid-2col {
        grid-template-columns: 1fr !important;
    }
}

.vision-hero-content {
    padding: 80px 0;
    background: var(--white);
}

    .vision-hero-content .w {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
    }

.vision-text h2 {
    font-family: var(--hh);
    font-size: clamp(1.7rem,3vw,2.6rem);
    color: var(--ink);
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 18px;
}

    .vision-text h2 em {
        font-style: italic;
        color: var(--blue);
    }

.vision-text p {
    font-size: .92rem;
    color: var(--body);
    line-height: 1.86;
    margin-bottom: 14px;
}

.vision-panel {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px 36px;
}

.vp-label {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 8px;
}

.vp-quote {
    font-family: var(--hh);
    font-size: 1.35rem;
    color: #fff;
    font-style: italic;
    line-height: 1.45;
    margin-bottom: 20px;
}

.vp-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.06);
    border-radius: 10px;
}

.vp-item-ico {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vp-item-t {
    font-size: .83rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.vp-item-d {
    font-size: .76rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SEO Optimisation Additions — March 2026
   ══════════════════════════════════════════════════════ */

/* hpp-h: hero panel h2 styled identically to the original h3
   (heading promoted to h2 for valid H1→H2→H3 hierarchy) */
.hpp-h {
    font-family: var(--hh);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 7px;
}

/* gi h3: goal items headings (was h4, corrected to h3) */
.gi h3 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

/* ── Skip navigation link ───────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}

    .skip-link:focus {
        position: fixed;
        top: 10px;
        left: 10px;
        width: auto;
        height: auto;
        padding: 12px 22px;
        background: #0D2137;
        color: #fff;
        font-family: 'Manrope', system-ui, sans-serif;
        font-size: .9rem;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
    }


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

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

/* ── High contrast / forced-colors mode (WCAG) ───────────────────── */
@media (forced-colors: active) {
    .btn-blue {
        border: 2px solid ButtonText;
    }
    .skip-link:focus {
        forced-color-adjust: none;
    }
}


/* ── Minimum touch target size (WCAG 2.5.5) ────────────────────── */
.ft-soc a {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
}

.btt-btn {
    min-width: 44px;
    min-height: 44px;
}

.wa-float {
    min-width: 52px;
    min-height: 52px;
    width: 52px;
    height: 52px;
}


/* ── Print styles ───────────────────────────────────────────────── */
@media print {
    .topbar, header, .wa-float, .btt-btn,
    .pg-hero-btns, .cta-band { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; }
    h1, h2, h3 { page-break-after: avoid; }
    .w { width: 100%; max-width: none; }
}


/* ── Normalise <address> font-style ────────────────────────────── */
address {
    font-style: normal;
}


/* ── Content-visibility: paint performance for off-screen sections ─ */
.vision-sec,
.values-sec,
.pillars-sec,
.goals-sec,
.promise-sec {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}


/* ── hpp h2: hero panel headings (promoted from h3 for heading hierarchy) */
.hpp h2 {
    font-family: var(--hh);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 7px;
}


/* ── gi h3: goals section headings ──────────────────────────────── */
.gi h3 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}


/* ── Accessibility: Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }
}

