/* Net Soft Solutions — software-development-companies-in-new-delhi.css | https://www.netsoft.in */

:root {
    --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;
}

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


/* ── Accessibility: visually hidden but available to screen readers / SEO ── */
.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;
}

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

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

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

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

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

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

.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: 74px 0 88px;
    position: relative;
    overflow: hidden;
}

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

    .pg-hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -40px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(16,185,129,.06);
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: center;
}

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

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

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

.hero-p {
    font-size: .97rem;
    color: rgba(255,255,255,.56);
    line-height: 1.9;
    margin-top: 18px;
    max-width: 560px;
}

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

.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    width: 200px;
    height: 400px;
    background: #1a1a2e;
    border-radius: 36px;
    border: 6px solid rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,.5),inset 0 0 0 1px rgba(255,255,255,.05);
}

    .phone::before {
        content: '';
        position: absolute;
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 6px;
        background: rgba(255,255,255,.12);
        border-radius: 99px;
        z-index: 2;
    }

.phone-screen {
    position: absolute;
    inset: 0;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.ps-status {
    height: 20px;
    background: rgba(26,86,219,.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

    .ps-status span {
        font-size: .45rem;
        color: rgba(255,255,255,.5);
    }

.ps-nav {
    background: rgba(13,33,55,.9);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.ps-nav-dot {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(26,86,219,.6);
}

.ps-nav-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ps-nav-line {
    height: 3px;
    border-radius: 99px;
    background: rgba(255,255,255,.15);
}

    .ps-nav-line:first-child {
        width: 55%;
    }

.ps-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255,255,255,.03);
}

.ps-hero-block {
    background: linear-gradient(135deg,rgba(26,86,219,.5),rgba(16,185,129,.3));
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ps-hero-block span {
        font-size: .5rem;
        color: rgba(255,255,255,.5);
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

.ps-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.ps-card {
    height: 50px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

    .ps-card:nth-child(1) {
        background: rgba(26,86,219,.2);
    }

    .ps-card:nth-child(2) {
        background: rgba(245,158,11,.15);
    }

    .ps-card:nth-child(3) {
        background: rgba(16,185,129,.15);
    }

    .ps-card:nth-child(4) {
        background: rgba(124,58,237,.15);
    }

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ps-list-item {
    height: 14px;
    border-radius: 4px;
    background: rgba(255,255,255,.08);
}

    .ps-list-item:nth-child(2) {
        width: 75%;
    }

    .ps-list-item:nth-child(3) {
        width: 85%;
    }

.ps-nav-bar {
    height: 36px;
    background: rgba(13,33,55,.95);
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
}

.ps-nav-ico {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,.1);
}

    .ps-nav-ico.active {
        background: rgba(26,86,219,.6);
    }

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

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

.tab-nav {
    display: flex;
    gap: 4px;
    background: var(--bg2);
    border-radius: 12px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 40px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 9px;
    font-family: var(--hb);
    font-size: .84rem;
    font-weight: 600;
    color: var(--muted);
    border: none;
    background: none;
    cursor: pointer;
    transition: all .2s var(--ease);
}

    .tab-btn.active {
        background: var(--white);
        color: var(--ink);
        box-shadow: 0 2px 8px rgba(0,0,0,.1);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: start;
    }

.tab-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 20px;
}

    .tab-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .83rem;
        color: var(--body);
    }

        .tab-features li::before {
            content: '✓';
            font-weight: 700;
            color: var(--green);
            flex-shrink: 0;
            margin-top: 1px;
        }

.tab-visual {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tv-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.tv-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
}

    .tv-spec:last-child {
        border-bottom: none;
    }

    .tv-spec span:first-child {
        color: var(--muted);
        font-weight: 500;
    }

    .tv-spec span:last-child {
        color: var(--ink);
        font-weight: 700;
    }

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

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

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    align-items: stretch;
}

.cat-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s,transform .22s,border-color .22s;
    display: flex;
    flex-direction: column;
}

    .cat-card:hover {
        box-shadow: 0 10px 28px rgba(26,86,219,.1);
        transform: translateY(-4px);
        border-color: var(--blue-bd);
    }

    .cat-card.tall {
        grid-row: auto;
    }

.cat-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .cat-ico svg {
        width: 22px;
        height: 22px;
    }

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

.cat-card p {
    font-size: .79rem;
    color: var(--body);
    line-height: 1.72;
    flex: 1;
}

.cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.cat-tag {
    font-size: .68rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-lt);
    padding: 4px 10px;
    border-radius: 99px;
}

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

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

.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: linear-gradient(180deg,var(--blue) 0%,var(--blue-bd) 100%);
    }

.tl-item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}

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

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

.tl-item:nth-child(odd) .tl-card:last-child {
    background: transparent;
    border-color: transparent;
}

.tl-item:nth-child(even) .tl-card:first-child {
    background: transparent;
    border-color: transparent;
}

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

.tl-card p {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.72;
}

.tl-node {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hh);
    font-size: .85rem;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(26,86,219,.35);
}

.tech-sec {
    padding: 60px 0;
    background: var(--bg2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tech-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.tech-cat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 20px;
}

.tc-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tech-tag {
    font-size: .73rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--bg2);
    border: 1px solid var(--line);
    padding: 5px 12px;
    border-radius: 6px;
}

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

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

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

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

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

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

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

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

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

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

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

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

    .faq-q:hover {
        background: var(--bg);
    }

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

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

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

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

.faq-item.open .faq-a {
    max-height: 300px;
}

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

.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: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    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);
    }

@media(max-width:960px) {
    .mobile-intro .w {
        grid-template-columns: 1fr;
    }

    .mobile-types {
        grid-template-columns: 1fr;
    }

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

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

    .phone-wrap {
        display: none;
    }

    .tab-panel.active {
        grid-template-columns: 1fr;
    }

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

    .timeline::before {
        left: 22px;
    }

    .tl-item {
        grid-template-columns: 56px 1fr;
    }

        .tl-item:nth-child(odd) .tl-card:last-child, .tl-item:nth-child(even) .tl-card:first-child {
            display: none;
        }

        .tl-item:nth-child(even) .tl-card:last-child {
            display: block;
            background: var(--bg);
            border-color: var(--line);
        }

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

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

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

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

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

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

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

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

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

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .tab-nav {
        flex-direction: column;
        width: 100%;
    }
}

.mobile-intro {
    padding: 80px 0;
    background: var(--white);
}

    .mobile-intro .w {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

.phone-mock {
    background: var(--navy);
    border-radius: 24px;
    padding: 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pm-screen {
    background: rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 16px;
}

.pm-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pm-dots {
    display: flex;
    gap: 5px;
}

.pm-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}

    .pm-dot:first-child {
        background: rgba(26,86,219,.8);
    }

.pm-item {
    height: 10px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    margin-bottom: 7px;
}

    .pm-item:last-child {
        width: 60%;
    }

.pm-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.pm-stat {
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.pm-stat-n {
    font-family: var(--hh);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: -.03em;
}

.pm-stat-l {
    font-size: .6rem;
    color: rgba(255,255,255,.35);
    margin-top: 2px;
}

.mobile-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.mt-box {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px;
}

    .mt-box h3 {
        font-size: .86rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .mt-box p {
        font-size: .79rem;
        color: var(--body);
        line-height: 1.72;
    }

.mt-ico {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* ═══ FOOTER (from about-net-soft-solutions) ═══════════════════════════ */

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

/* Footer responsive */
@media(max-width:900px) {
    .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);
    }
}

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

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


/* ══ Page-Specific Styles ══ */

:root {
    --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;
}

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


/* ── Accessibility: visually hidden but available to screen readers / SEO ── */
.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;
}

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

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

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

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

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

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.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(-14px);
    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.8rem,2.9vw,2.7rem);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: -.02em;
    color: var(--ink);
}

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

.ss {
    font-size: .93rem;
    color: var(--body);
    line-height: 1.87;
    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-lg {
    padding: 13px 26px;
    font-size: .93rem;
}
/* Topbar */
.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;
        }
/* Nav */
header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

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: 220px;
    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;
    }
/* Page hero band */
.pg-hero {
    background: var(--navy);
    padding: 68px 0 56px;
    position: relative;
    overflow: hidden;
}

    .pg-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 80% 50%,rgba(26,86,219,.18) 0%,transparent 70%);
    }

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

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 52px;
    align-items: center;
}

.pg-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .73rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

    .pg-bc a {
        color: rgba(255,255,255,.55);
        transition: color .18s;
    }

        .pg-bc a:hover {
            color: #fff;
        }

    .pg-bc span {
        color: rgba(255,255,255,.25);
    }

.pg-h1 {
    font-family: var(--hh);
    font-size: clamp(2rem,4vw,3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

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

.pg-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.hero-pills {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hero-pill {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 9px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: background .18s,border-color .18s;
}

    .hero-pill:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.22);
    }

.hero-pill-ico {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(26,86,219,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hero-pill-ico svg {
        width: 14px;
        height: 14px;
        stroke: var(--blue-bd);
    }

.hero-pill-txt {
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}

.hero-pill-sub {
    font-size: .63rem;
    color: rgba(255,255,255,.35);
    display: block;
    margin-top: 1px;
}
/* CTA band */
.cta-band {
    background: var(--blue);
    padding: 56px 0;
}

    .cta-band .w {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .cta-band h2 {
        font-family: var(--hh);
        font-size: clamp(1.5rem,2.8vw,2.2rem);
        color: #fff;
        font-weight: 400;
        line-height: 1.2;
    }

    .cta-band p {
        font-size: .9rem;
        color: rgba(255,255,255,.7);
        margin-top: 8px;
    }
/* FAQ */
.faq-sec {
    padding: 80px 0;
    background: var(--bg);
}

.faq-grid {
    max-width: 760px;
    margin: 36px auto 0;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--white);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--hb);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    gap: 12px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-lt);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform .25s,background .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--blue);
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 22px 18px;
    font-size: .87rem;
    color: var(--body);
    line-height: 1.8;
}
/* Footer */
footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: rgba(255,255,255,.55);
}

.ft-main {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-brand {
    flex: 0 0 280px;
    max-width: 280px;
    padding-right: 32px;
}

.ft-desc {
    font-size: .82rem;
    line-height: 1.8;
    margin-top: 12px;
    color: rgba(255,255,255,.4);
}

.ft-contact {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .ft-contact a {
        font-size: .8rem;
        color: rgba(255,255,255,.5);
        transition: color .18s;
    }

        .ft-contact a:hover {
            color: #fff;
        }

.ft-col {
    flex: 1;
    min-width: 140px;
}

.ft-h {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    margin-bottom: 14px;
}

.ft-links {
    list-style: none;
}

    .ft-links li {
        margin-bottom: 8px;
    }

    .ft-links a {
        font-size: .81rem;
        color: rgba(255,255,255,.45);
        transition: color .18s;
    }

        .ft-links a:hover {
            color: #fff;
        }

.ft-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

    .ft-social a {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.4);
        transition: background .18s,color .18s;
    }

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

    .ft-social svg {
        width: 14px;
        height: 14px;
    }

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

.ft-copy {
    font-size: .74rem;
    color: rgba(255,255,255,.25);
}

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

        .ft-copy a:hover {
            color: #fff;
        }
/* WhatsApp float */
.wa-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 800;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    transition: transform .2s;
}

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

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

.btt-btn {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s,transform .2s;
}

    .btt-btn.show {
        opacity: 1;
        pointer-events: auto;
    }

    .btt-btn:hover {
        transform: translateY(-2px);
    }
/* Stats band */
.stats-band {
    background: var(--navy);
    padding: 52px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.sb {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,.1);
}

    .sb:last-child {
        border-right: none;
    }

.sb-n {
    font-family: var(--hh);
    font-size: clamp(2.2rem,4.2vw,3.6rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
}

    .sb-n em {
        font-style: italic;
        color: var(--blue-bd);
    }

.sb-l {
    font-size: .77rem;
    color: rgba(255,255,255,.4);
    margin-top: 7px;
    line-height: 1.5;
}
/* Responsive */
@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;
        }

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

    .sb {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding: 20px;
    }

        .sb:nth-child(odd) {
            border-right: 1px solid rgba(255,255,255,.1);
        }

        .sb:last-child, .sb:nth-last-child(2) {
            border-bottom: none;
        }

    .cta-band .w {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media(max-width:700px) {
    .ft-main {
        flex-direction: column;
    }

    .ft-brand {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .ft-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

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


.erp-features {
    padding: 80px 0;
    background: var(--white);
}

.erp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
    margin-bottom: 64px;
}

    .erp-feature-row:last-child {
        margin-bottom: 0;
    }

    .erp-feature-row.flip .efr-img {
        order: 2;
    }

    .erp-feature-row.flip .efr-text {
        order: 1;
    }

.efr-img {
    background: var(--navy);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

    .efr-img::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(26,86,219,.12);
        pointer-events: none;
    }

.efr-img-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.efr-img-title {
    font-family: var(--hh);
    font-size: 1.45rem;
    color: #fff;
    font-style: italic;
    line-height: 1.32;
    margin: 14px 0 20px;
}

.efr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.efr-tag {
    padding: 5px 12px;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .7rem;
    color: rgba(255,255,255,.65);
}

.efr-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .efr-text h2 {
        font-family: var(--hh);
        font-size: clamp(1.6rem,2.6vw,2.2rem);
        color: var(--ink);
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: 14px;
    }

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

    .efr-text p {
        font-size: .91rem;
        color: var(--body);
        line-height: 1.85;
        margin-bottom: 12px;
    }

.efr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

    .efr-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .85rem;
        color: var(--body);
        line-height: 1.6;
    }

        .efr-list li::before {
            content: '→';
            color: var(--blue);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

.erp-modules {
    padding: 72px 0;
    background: var(--bg);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 36px;
}

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

    .module-box:hover {
        box-shadow: 0 6px 24px rgba(26,86,219,.1);
        transform: translateY(-2px);
    }

.module-ico {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

.module-box p {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.72;
}
/* Enhanced feature panel visuals */
.efr-img-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 10px;
}

.efr-img-title {
    font-family: var(--hh);
    font-size: 1.3rem;
    color: #fff;
    font-style: italic;
    line-height: 1.32;
    margin-bottom: 16px;
}
/* Metrics row */
.efr-metrics {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.efr-metric {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}

.efr-metric-alt {
    background: rgba(26,86,219,.3);
    border-color: rgba(26,86,219,.5);
}

.efr-metric-val {
    font-family: var(--hh);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
}

.efr-metric-lbl {
    font-size: .58rem;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .05em;
}
/* ERP 9-module grid */
.efr-modules-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 7px;
    margin-bottom: 16px;
}

.efr-mod {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 9px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

    .efr-mod span:first-child {
        font-size: 1.1rem;
    }

    .efr-mod span:last-child {
        font-size: .6rem;
        color: rgba(255,255,255,.55);
        text-transform: uppercase;
        letter-spacing: .04em;
        line-height: 1.3;
    }
/* Integrations */
.efr-integrations {
    margin-bottom: 14px;
}

.efr-int-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-bottom: 7px;
}

.efr-int-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.efr-chip {
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.13);
    font-size: .63rem;
    color: rgba(255,255,255,.55);
}
/* CRM Pipeline */
.efr-pipeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.efr-pipe-stage {
    display: grid;
    grid-template-columns: 90px 1fr 24px;
    align-items: center;
    gap: 8px;
}

.efr-pipe-label {
    font-size: .63rem;
    color: rgba(255,255,255,.5);
    text-align: right;
    white-space: nowrap;
}

.efr-pipe-bar {
    height: 7px;
    border-radius: 4px;
    background: rgba(26,86,219,.5);
}

.efr-pipe-won {
    background: #10B981;
}

.efr-pipe-count {
    font-size: .63rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
}
/* CRM feature mini-list */
.efr-feat-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.efr-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

.efr-feat-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue-bd);
    flex-shrink: 0;
}
/* Govt checklist */
.efr-checklist {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.efr-check-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 7px;
    padding: 9px 12px;
    font-size: .72rem;
    color: rgba(255,255,255,.65);
}

.efr-check-done {
    border-color: rgba(16,185,129,.2);
}

.efr-chk {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: rgba(16,185,129,.2);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .66rem;
    font-weight: 700;
    flex-shrink: 0;
}
/* Tags always at bottom */
.efr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.efr-tag {
    padding: 5px 11px;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .68rem;
    color: rgba(255,255,255,.6);
}
/* Overview section */
.overview-sec {
    padding: 80px 0;
    background: var(--bg);
}

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

.overview-left p {
    font-size: .93rem;
    color: var(--body);
    line-height: 1.9;
    margin-bottom: 14px;
}

.ov-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.ov-pt {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 18px;
}

.ov-pt-n {
    font-family: var(--hh);
    font-size: 1.7rem;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.03em;
}

.ov-pt-l {
    font-size: .72rem;
    color: var(--body);
    margin-top: 3px;
    line-height: 1.45;
}

.ov-pt.dk {
    background: var(--navy);
}

    .ov-pt.dk .ov-pt-n {
        color: var(--blue-bd);
    }

    .ov-pt.dk .ov-pt-l {
        color: rgba(255,255,255,.45);
    }
/* Why us section */
.why-sec {
    padding: 80px 0;
    background: var(--white);
}

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

.why-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
}

.why-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

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

.why-card p {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.75;
}
/* Process section */
.process-sec {
    padding: 80px 0;
    background: var(--bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    margin-top: 44px;
    position: relative;
}

    .process-steps::before {
        content: '';
        position: absolute;
        top: 22px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--line);
        z-index: 0;
    }

.ps {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.ps-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-family: var(--hh);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.ps h3 {
    font-size: .81rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.ps p {
    font-size: .73rem;
    color: var(--body);
    line-height: 1.55;
}

@media(max-width:900px) {
    .erp-feature-row {
        grid-template-columns: 1fr;
    }

        .erp-feature-row.flip .efr-img, .erp-feature-row.flip .efr-text {
            order: unset;
        }

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

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

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

        .process-steps::before {
            display: none;
        }
}

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .ov-points {
        grid-template-columns: 1fr 1fr;
    }
}
/* Industries section */
.industries-sec {
    padding: 80px 0;
    background: var(--white);
}

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

.ind-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    transition: box-shadow .2s,transform .2s;
}

    .ind-card:hover {
        box-shadow: 0 6px 28px rgba(26,86,219,.1);
        transform: translateY(-2px);
    }

.ind-ico {
    font-size: 2rem;
    margin-bottom: 12px;
}

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

.ind-card p {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.72;
}

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

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

/* =====================================================
   NEW SEO SECTIONS — Added 2026
   ===================================================== */

/* Case Studies */
.case-studies-sec {
    padding: 80px 0;
    background: var(--bg);
}

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

.cs-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s,transform .2s;
}

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

.cs-tag {
    display: inline-block;
    background: var(--blue-lt);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

.cs-card h3 {
    font-family: var(--hh);
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.35;
}

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

.cs-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

    .cs-meta span {
        font-size: .75rem;
        background: var(--bg2);
        color: var(--body);
        padding: 4px 10px;
        border-radius: 20px;
        border: 1px solid var(--line);
    }

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

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

/* Testimonials */
.testimonials-sec {
    padding: 80px 0;
    background: var(--navy);
}

    .testimonials-sec .eyebrow {
        color: rgba(255,255,255,.55);
    }

    .testimonials-sec .sh {
        color: var(--white);
    }

        .testimonials-sec .sh em {
            color: #93C5FD;
        }

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

.testi-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .2s;
}

    .testi-card:hover {
        background: rgba(255,255,255,.12);
    }

.testi-stars {
    color: #FCD34D;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: .87rem;
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.testi-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 14px;
}

    .testi-author strong {
        font-size: .82rem;
        color: var(--white);
        font-weight: 700;
    }

    .testi-author span {
        font-size: .75rem;
        color: rgba(255,255,255,.5);
    }

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

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

/* Technology Stack */
.techstack-sec {
    padding: 80px 0;
    background: var(--white);
}

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

.tech-cat {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px;
}

    .tech-cat h3 {
        font-size: .82rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .1em;
        color: var(--muted);
        margin-bottom: 14px;
    }

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .tech-tags span {
        font-size: .78rem;
        background: var(--white);
        border: 1px solid var(--blue-bd);
        color: var(--blue);
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
    }

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

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

/* Comparison Table */
.comparison-sec {
    padding: 80px 0;
    background: var(--bg);
}

.cmp-table-wrap {
    overflow-x: auto;
    margin-top: 8px;
}

.cmp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

    .cmp-table thead th {
        background: var(--navy);
        color: var(--white);
        padding: 14px 18px;
        text-align: left;
        font-size: .8rem;
        font-weight: 700;
        letter-spacing: .04em;
    }

    .cmp-table tbody tr {
        border-bottom: 1px solid var(--line);
    }

        .cmp-table tbody tr:last-child {
            border-bottom: none;
        }

    .cmp-table tbody td {
        padding: 13px 18px;
        color: var(--body);
        line-height: 1.55;
        vertical-align: top;
    }

        .cmp-table tbody td:first-child {
            font-weight: 600;
            color: var(--ink);
            background: var(--bg2);
            width: 22%;
        }

.cmp-good {
    color: #065F46;
    background: #ECFDF5 !important;
}

.cmp-bad {
    color: #991B1B;
    background: #FEF2F2 !important;
}

.cmp-mid {
    color: #92400E;
    background: #FFFBEB !important;
}

@media(max-width:700px) {
    .cmp-table {
        font-size: .76rem;
    }

        .cmp-table thead th, .cmp-table tbody td {
            padding: 10px 12px;
        }
}

/* Expertise / Team Section */
.expertise-sec {
    padding: 80px 0;
    background: var(--white);
}

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

.expert-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s;
}

    .expert-card:hover {
        box-shadow: 0 6px 28px rgba(26,86,219,.09);
    }

.expert-role {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
}

.expert-card h3 {
    font-family: var(--hh);
    font-size: 1.05rem;
    color: var(--ink);
}

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

.expert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 4px;
}

    .expert-skills span {
        font-size: .73rem;
        background: var(--blue-lt);
        color: var(--blue);
        padding: 4px 10px;
        border-radius: 20px;
        font-weight: 600;
    }

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

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

/* ── Table of Contents ── */
.toc-sec {
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
}

.toc-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.toc-heading {
    font-family: var(--hh);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--blue-lt);
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
}

.toc-item {
    margin: 0;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--body);
    font-size: .88rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: background .18s,border-color .18s,color .18s;
}

    .toc-link:hover {
        background: var(--white);
        border-color: var(--line);
        color: var(--blue);
    }

.toc-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-lt);
    border-radius: 5px;
    padding: 3px 8px;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: .04em;
}

.toc-text {
    flex: 1;
    line-height: 1.4;
}

.toc-arrow {
    font-size: .8rem;
    color: var(--muted);
    flex-shrink: 0;
    opacity: .7;
}

.toc-link:hover .toc-arrow {
    color: var(--blue);
    opacity: 1;
}

@media(max-width:720px) {
    .toc-list {
        grid-template-columns: 1fr;
    }
}

/* ── Top Companies / Comparison Section ── */
.top-companies-sec {
    padding: 80px 0;
    background: var(--white);
}

.topc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.topc-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s;
}

    .topc-card:hover {
        box-shadow: 0 6px 28px rgba(26,86,219,.07);
    }

.topc-card-highlight {
    background: var(--navy);
    border-color: var(--navy);
    grid-column: span 1;
}

.topc-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.topc-card h3 {
    font-family: var(--hh);
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.3;
}

.topc-card-highlight h3 {
    color: var(--white);
}

.topc-card p {
    font-size: .85rem;
    color: var(--body);
    line-height: 1.8;
    flex: 1;
}

.topc-card-highlight p {
    color: rgba(255,255,255,.78);
}

.topc-verdict {
    margin-top: 4px;
    font-size: .8rem;
    padding: 9px 14px;
    border-radius: 8px;
    line-height: 1.5;
}

.topc-neutral {
    background: var(--bg2);
    color: var(--body);
}

.topc-good {
    background: #ECFDF5;
    color: #065F46;
}

.topc-highlight-verdict {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.88);
}

.topc-verdict-label {
    font-weight: 700;
    margin-right: 4px;
}

.topc-summary {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
}

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

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

    .topc-card-highlight {
        grid-column: span 1;
    }
}

/* ── Tech Detail Cards (inside techstack section) ── */
.tech-detail-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.tech-detail-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .2s;
}

    .tech-detail-card:hover {
        box-shadow: 0 4px 20px rgba(26,86,219,.07);
    }

.tech-detail-ico {
    font-size: 1.5rem;
    line-height: 1;
}

.tech-detail-card h3 {
    font-family: var(--hh);
    font-size: .98rem;
    color: var(--ink);
    line-height: 1.35;
}

.tech-detail-card p {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.78;
    flex: 1;
}

@media(max-width:1000px) {
    .tech-detail-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* ── Custom Software Delhi NCR Section ── */
.custom-sw-sec {
    padding: 80px 0;
    background: var(--bg);
}

.custom-sw-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}

.custom-sw-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .custom-sw-left h2 {
        margin-top: 0;
    }

    .custom-sw-left p {
        font-size: .93rem;
        color: var(--body);
        line-height: 1.85;
    }

.custom-sw-links {
    margin-top: 8px;
}

.sw-cluster-link {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-lt);
    border: 1px solid var(--blue-bd);
    border-radius: 20px;
    padding: 6px 14px;
    text-decoration: none;
    transition: background .18s,color .18s;
}

    .sw-cluster-link:hover {
        background: var(--blue);
        color: var(--white);
    }

.custom-sw-right {
}

.csw-stat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.csw-stat {
    padding: 22px 20px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .csw-stat.dk {
        background: var(--navy);
    }

.csw-stat-val {
    font-family: var(--hh);
    font-size: 2rem;
    color: var(--ink);
    line-height: 1;
}

.csw-stat.dk .csw-stat-val {
    color: var(--white);
}

.csw-stat-lbl {
    font-size: .78rem;
    color: var(--body);
    line-height: 1.5;
}

.csw-stat.dk .csw-stat-lbl {
    color: rgba(255,255,255,.65);
}

.csw-stat-lbl strong {
    color: var(--ink);
}

.csw-stat.dk .csw-stat-lbl strong {
    color: rgba(255,255,255,.9);
}

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

    .custom-sw-right {
        order: -1;
    }
}

@media(max-width:520px) {
    .csw-stat-block {
        grid-template-columns: 1fr;
    }
}

/* ── Offshore Section ── */
.offshore-sec {
    padding: 80px 0;
    background: var(--white);
}

.offshore-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.offshore-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s;
}

    .offshore-card:hover {
        box-shadow: 0 6px 24px rgba(26,86,219,.07);
    }

.offshore-ico {
    font-size: 1.8rem;
    line-height: 1;
}

.offshore-card h3 {
    font-family: var(--hh);
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.35;
}

.offshore-card p {
    font-size: .84rem;
    color: var(--body);
    line-height: 1.8;
    flex: 1;
}

.offshore-cta {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.offshore-cta-left h3 {
    font-family: var(--hh);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.offshore-cta-left p {
    font-size: .88rem;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    max-width: 480px;
}

.offshore-cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

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

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

    .offshore-cta {
        flex-direction: column;
        padding: 28px 24px;
    }

    .offshore-cta-right {
        width: 100%;
    }

        .offshore-cta-right .btn {
            text-align: center;
        }
}

/* ── Address normalisation ──────────────────────────────────────────────────── */
address {
    font-style: normal;
}

/* ── Skip navigation link (WCAG 2.4.1) ──────────────────────────────────────── */
.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: var(--navy);
        color: #fff;
        font-family: var(--hb);
        font-size: .9rem;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(0,0,0,.35);
        outline: 3px solid var(--blue);
        outline-offset: 2px;
    }

/* ── 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 ──────────────────────────────────────── */
@media (forced-colors: active) {
    .btn-blue {
        border: 2px solid ButtonText;
    }
    .skip-link:focus {
        forced-color-adjust: none;
        background: ButtonFace;
        color: ButtonText;
        border: 2px solid ButtonText;
    }
}

/* ── Accessibility: prefers-reduced-motion (WCAG 2.3.3) ──────────────────────── */
@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;
    }
}

/* ── Print styles ─────────────────────────────────────────────────────────────── */
@media print {
    .topbar, header, .wa-float, .btt-btn,
    .cta-band, .hero-btns { 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; }
}

/* ── Content-visibility: paint performance for below-fold sections ────────────── */
.overview-sec,
.erp-features,
.why-sec,
.process-sec,
.erp-modules,
.industries-sec,
.top-companies-sec,
.faq-sec,
.case-studies-sec,
.testimonials-sec,
.techstack-sec,
.comparison-sec,
.expertise-sec,
.custom-sw-sec,
.offshore-sec {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
}


/* ── Focus-visible: keyboard navigation accessibility ── */
:focus-visible {
    outline: 3px solid #1A56DB;
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid #1A56DB;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Print styles ── */
@media print {
    .topbar, header, .wa-float, .btt-btn, .skip-link { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a { color: #000; text-decoration: underline; }
    h1, h2, h3 { page-break-after: avoid; }
    img { max-width: 100%; }
}

/* ── Prevent font size adjustment on mobile ── */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ── Prevent layout shift for images ── */
img {
    height: auto;
}