:root {
    --primary: #16b8a6;
    --primary-dark: #0a8f83;
    --primary-soft: #e8fbf8;
    --navy: #071d2f;
    --navy-2: #0b2a41;
    --navy-3: #123a55;
    --text: #172433;
    --muted: #687584;
    --line: #dfe7ec;
    --surface: #ffffff;
    --surface-2: #f5f8fa;
    --shadow: 0 24px 70px rgba(7, 29, 47, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(5, 24, 39, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: background .3s ease, box-shadow .3s ease;
}

    .site-header.scrolled {
        background: rgba(5, 24, 39, 0.96);
        box-shadow: 0 10px 30px rgba(3, 19, 31, .18);
    }

.nav-wrapper {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    position: relative;
    display: inline-grid;
    place-items: center;
}

    .brand-mark::before,
    .brand-mark::after,
    .brand-mark i {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 4px solid var(--primary);
    }

    .brand-mark::before {
        width: 24px;
        height: 24px;
        left: 2px;
        bottom: 3px;
        border-right-color: transparent;
    }

    .brand-mark::after {
        width: 20px;
        height: 20px;
        right: 2px;
        bottom: 3px;
        border-left-color: transparent;
    }

    .brand-mark i:first-child {
        width: 18px;
        height: 18px;
        left: 12px;
        top: 2px;
        border-bottom-color: transparent;
    }

    .brand-mark i:nth-child(2),
    .brand-mark i:nth-child(3) {
        display: none;
    }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .brand-text strong {
        font-family: "Manrope", sans-serif;
        font-size: 1.3rem;
        letter-spacing: -.03em;
    }

    .brand-text small {
        margin-top: 5px;
        color: rgba(255,255,255,.62);
        font-size: .64rem;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    color: rgba(255,255,255,.72);
    font-size: .91rem;
    font-weight: 500;
    transition: color .25s ease;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width .25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #fff;
    }

        .nav-link.active::after {
            width: 100%;
        }

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 19px;
    border-radius: 12px;
    background: var(--primary);
    color: #03201c;
    font-size: .88rem;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        background: #27cdb9;
    }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 11px;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        border-radius: 2px;
        background: #fff;
        transition: transform .25s ease, opacity .25s ease;
    }

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 90px;
    display: flex;
    align-items: center;
    color: #fff;
    background: radial-gradient(circle at 82% 18%, rgba(20, 184, 166, .14), transparent 28%), linear-gradient(135deg, #041521 0%, #08273b 58%, #0b3147 100%);
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 62px 62px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
    }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    right: -180px;
    top: 70px;
    background: rgba(22,184,166,.12);
}

.hero-glow-two {
    width: 340px;
    height: 340px;
    left: -190px;
    bottom: -90px;
    background: rgba(60,132,246,.09);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    color: #b9cbd6;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(22,184,166,.12);
}

.hero-content h1 {
    max-width: 720px;
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3rem, 5.8vw, 5.5rem);
    line-height: .99;
    letter-spacing: -.055em;
}

    .hero-content h1 span {
        color: var(--primary);
    }

.hero-content > p {
    max-width: 660px;
    margin-top: 28px;
    color: #aebfca;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

    .btn:hover {
        transform: translateY(-3px);
    }

.btn-primary {
    background: var(--primary);
    color: #03201c;
    box-shadow: 0 16px 34px rgba(22,184,166,.22);
}

    .btn-primary:hover {
        background: #2ad0bc;
        box-shadow: 0 20px 40px rgba(22,184,166,.28);
    }

.btn-secondary {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
    color: #fff;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,.1);
    }

.btn-white {
    background: #fff;
    color: var(--navy);
}

.full-width {
    width: 100%;
}

.hero-trust {
    margin-top: 48px;
    padding-top: 26px;
    display: flex;
    gap: 34px;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .hero-trust div {
        min-width: 118px;
    }

    .hero-trust strong,
    .hero-trust span {
        font-family: "Manrope", sans-serif;
        font-size: 1.35rem;
        color: #fff;
    }

    .hero-trust small {
        display: block;
        margin-top: 4px;
        color: #7890a0;
        font-size: .72rem;
    }

.hero-visual {
    position: relative;
}

.dashboard-shell {
    position: relative;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 45px 100px rgba(0,0,0,.32);
    backdrop-filter: blur(18px);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-topbar {
    min-height: 56px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.window-dots {
    display: flex;
    gap: 7px;
}

    .window-dots span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255,255,255,.24);
    }

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a8c0ce;
    font-size: .7rem;
}

    .live-pill i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #37d49a;
        box-shadow: 0 0 0 5px rgba(55,212,154,.12);
    }

.dashboard-body {
    position: relative;
    padding: 22px;
}

.server-panel {
    min-height: 425px;
    padding: 23px;
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(9,39,59,.96), rgba(8,28,44,.96));
    border: 1px solid rgba(255,255,255,.07);
}

.server-panel-heading,
.activity-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .server-panel-heading small,
    .activity-head small {
        color: #698394;
        font-size: .68rem;
    }

    .server-panel-heading h3 {
        margin-top: 5px;
        font-family: "Manrope", sans-serif;
        font-size: 1rem;
    }

.status-badge {
    padding: 6px 10px;
    border-radius: 999px;
    color: #6ee7b7;
    background: rgba(55,212,154,.09);
    border: 1px solid rgba(55,212,154,.2);
    font-size: .62rem;
}

.metric-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-card {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
}

    .metric-card span {
        color: #7890a0;
        font-size: .67rem;
    }

    .metric-card strong {
        display: block;
        margin: 9px 0 12px;
        font-size: 1.2rem;
    }

.progress {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

    .progress i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--primary), #63e6d7);
    }

.activity-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
}

.activity-head span {
    font-size: .75rem;
    font-weight: 700;
}

.chart-bars {
    height: 150px;
    margin-top: 24px;
    display: flex;
    align-items: end;
    gap: 9px;
}

    .chart-bars i {
        flex: 1;
        min-width: 8px;
        border-radius: 5px 5px 2px 2px;
        background: linear-gradient(to top, rgba(22,184,166,.2), var(--primary));
        animation: barPulse 2.8s ease-in-out infinite alternate;
    }

        .chart-bars i:nth-child(2n) {
            animation-delay: .25s;
        }

@keyframes barPulse {
    to {
        opacity: .62;
        transform: scaleY(.92);
        transform-origin: bottom;
    }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 165px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    background: rgba(8, 34, 52, .92);
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
    animation: floatCard 4.5s ease-in-out infinite;
}

.floating-security {
    right: -34px;
    top: 94px;
}

.floating-backup {
    left: -34px;
    bottom: 45px;
    animation-delay: -2s;
}

@keyframes floatCard {
    50% {
        transform: translateY(-9px);
    }
}

.icon-wrap {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(22,184,166,.12);
    color: var(--primary);
    font-weight: 800;
}

.floating-card small {
    display: block;
    color: #7890a0;
    font-size: .63rem;
}

.floating-card strong {
    display: block;
    margin-top: 2px;
    font-size: .76rem;
}

.scroll-indicator {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 28px;
    width: 28px;
    height: 44px;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    transform: translateX(-50%);
}

    .scroll-indicator span {
        width: 4px;
        height: 8px;
        margin-top: 9px;
        border-radius: 999px;
        background: var(--primary);
        animation: scrollDot 1.7s infinite;
    }

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--surface-2);
}

.about-grid,
.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 90px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

    .section-label::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--primary);
    }

.section-copy h2,
.section-heading h2,
.cta-band h2 {
    margin-top: 14px;
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 1.1;
    letter-spacing: -.045em;
}

.section-copy > p,
.section-heading > p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 1rem;
}

    .section-copy > p + p {
        margin-top: 14px;
    }

.feature-list {
    margin-top: 34px;
    display: grid;
    gap: 18px;
}

    .feature-list > div {
        display: flex;
        gap: 14px;
    }

        .feature-list > div > span {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            border-radius: 9px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-weight: 800;
        }

    .feature-list strong,
    .feature-list small {
        display: block;
    }

    .feature-list small {
        margin-top: 3px;
        color: var(--muted);
    }

.about-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.about-main-card {
    width: min(100%, 470px);
    aspect-ratio: 1 / .9;
    display: grid;
    place-items: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--navy), #0c3d58);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.network-visual {
    width: 300px;
    height: 300px;
    position: relative;
}

.network-core,
.network-node {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.network-core {
    width: 104px;
    height: 104px;
    left: 98px;
    top: 98px;
    background: var(--primary);
    color: #04231f;
    font-size: 2rem;
    box-shadow: 0 0 0 18px rgba(22,184,166,.08), 0 0 0 40px rgba(22,184,166,.04);
}

.network-node {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    font-size: .72rem;
}

.node-one {
    left: 14px;
    top: 24px;
}

.node-two {
    right: 10px;
    top: 38px;
}

.node-three {
    left: 24px;
    bottom: 18px;
}

.node-four {
    right: 18px;
    bottom: 8px;
}

.network-visual .line {
    position: absolute;
    z-index: 1;
    width: 110px;
    height: 1px;
    background: linear-gradient(90deg, rgba(22,184,166,.15), var(--primary));
    transform-origin: left center;
}

.line-one {
    left: 58px;
    top: 73px;
    transform: rotate(31deg);
}

.line-two {
    left: 152px;
    top: 112px;
    transform: rotate(-31deg);
}

.line-three {
    left: 66px;
    top: 215px;
    transform: rotate(-28deg);
}

.line-four {
    left: 155px;
    top: 188px;
    transform: rotate(32deg);
}

.experience-card {
    position: absolute;
    right: -5px;
    bottom: 26px;
    min-width: 188px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

    .experience-card strong,
    .experience-card span {
        display: block;
    }

    .experience-card strong {
        color: var(--primary-dark);
        font-family: "Manrope", sans-serif;
        font-size: 1.25rem;
    }

    .experience-card span {
        margin-top: 4px;
        color: var(--muted);
        font-size: .78rem;
    }

.services-section {
    background: #fff;
}

.section-heading {
    max-width: 760px;
}

    .section-heading.centered {
        margin-inline: auto;
        text-align: center;
    }

        .section-heading.centered .section-label {
            justify-content: center;
        }

.services-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(22,184,166,.5);
        box-shadow: 0 22px 50px rgba(7,29,47,.09);
    }

.service-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 1.35rem;
}

.service-card h3 {
    margin-top: 22px;
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    font-size: 1.2rem;
}

.service-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: .9rem;
}

.service-card ul {
    margin: 20px 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: #4c5b68;
    font-size: .83rem;
}

    .service-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .72em;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
    }

.service-card a {
    color: var(--primary-dark);
    font-size: .84rem;
    font-weight: 800;
}

    .service-card a span {
        display: inline-block;
        margin-left: 4px;
        transition: transform .2s ease;
    }

    .service-card a:hover span {
        transform: translateX(4px);
    }

.why-section {
    position: relative;
    background: linear-gradient(135deg, #041521, #082a40);
    color: #fff;
    overflow: hidden;
}

    .why-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 20%, rgba(22,184,166,.1), transparent 28%);
    }

.why-grid {
    position: relative;
    z-index: 1;
}

.why-section .section-copy h2 {
    color: #fff;
}

.why-section .section-copy > p {
    color: #9fb2bf;
}

.operations-card {
    max-width: 510px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(14px);
}

.operations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-label {
    color: #75909f;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.operations-header h3 {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
}

.pulse-ring {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(22,184,166,.25);
    background: rgba(22,184,166,.08);
}

    .pulse-ring i {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 8px rgba(22,184,166,.1);
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 14px rgba(22,184,166,0);
    }
}

.operations-list {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

    .operations-list div {
        padding: 17px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 13px;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.05);
    }

    .operations-list span {
        color: #9fb2bf;
        font-size: .82rem;
    }

    .operations-list strong {
        font-size: .86rem;
    }

.green-text {
    color: #5ee3b5;
}

.why-points {
    margin-top: 34px;
    display: grid;
    gap: 18px;
}

    .why-points > div {
        display: flex;
        gap: 16px;
    }

.why-number {
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: .77rem;
    font-weight: 800;
}

.why-points strong {
    display: block;
    font-size: .98rem;
}

.why-points p {
    margin-top: 3px;
    color: #8399a7;
    font-size: .82rem;
}

.process-grid {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    min-height: 235px;
    padding: 28px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

    .process-card::after {
        content: "";
        position: absolute;
        right: -45px;
        bottom: -45px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--primary-soft);
    }

    .process-card > span {
        position: relative;
        z-index: 1;
        color: var(--primary);
        font-family: "Manrope", sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .process-card h3 {
        position: relative;
        z-index: 1;
        margin-top: 38px;
        font-family: "Manrope", sans-serif;
        color: var(--navy);
    }

    .process-card p {
        position: relative;
        z-index: 1;
        margin-top: 10px;
        color: var(--muted);
        font-size: .86rem;
    }

.cta-band {
    padding: 72px 0;
    background: var(--primary);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.light-label {
    color: #073d37;
}

    .light-label::before {
        background: #073d37;
    }

.cta-band h2 {
    max-width: 760px;
    color: #04231f;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.contact-section {
    background: #fff;
}

.contact-details {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

    .contact-details > * {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        border-radius: 14px;
        background: var(--surface-2);
    }

        .contact-details > * > span {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

    .contact-details small,
    .contact-details strong {
        display: block;
    }

    .contact-details small {
        color: var(--muted);
        font-size: .7rem;
    }

    .contact-details strong {
        margin-top: 2px;
        color: var(--navy);
        font-size: .87rem;
    }

.contact-card {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface-2);
    box-shadow: 0 22px 65px rgba(7,29,47,.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: var(--navy);
        font-size: .78rem;
        font-weight: 700;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        border: 1px solid #d8e2e8;
        border-radius: 12px;
        background: #fff;
        color: var(--text);
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-group input,
    .form-group select {
        min-height: 49px;
        padding: 0 14px;
    }

    .form-group textarea {
        padding: 13px 14px;
        resize: vertical;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(22,184,166,.1);
        }

    .form-group.invalid input,
    .form-group.invalid textarea {
        border-color: #dc5a65;
    }

.field-error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    color: #c43e49;
    font-size: .68rem;
}

.form-message {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .8rem;
}

    .form-message.success {
        display: block;
        background: #e9f9f3;
        color: #167a5c;
    }

    .form-message.error {
        display: block;
        background: #fff0f1;
        color: #b63c48;
    }

.site-footer {
    padding-top: 75px;
    background: #041521;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 55px;
}

.brand-footer {
    display: inline-flex;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 20px;
    color: #78909f;
    font-size: .85rem;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

    .footer-links strong {
        margin-bottom: 8px;
        font-size: .85rem;
    }

    .footer-links a,
    .footer-links span {
        color: #78909f;
        font-size: .8rem;
        transition: color .2s ease;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #647c8b;
    font-size: .75rem;
}

    .footer-bottom a:hover {
        color: var(--primary);
    }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1050px) {
    .main-nav {
        gap: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        inset: 78px 18px auto;
        padding: 18px;
        display: grid;
        gap: 4px;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px;
        background: rgba(5,24,39,.98);
        box-shadow: 0 25px 60px rgba(0,0,0,.3);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity .25s ease, transform .25s ease;
    }

        .main-nav.open {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

    .nav-link {
        padding: 13px 12px;
        border-radius: 10px;
    }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(255,255,255,.055);
        }

        .nav-link::after {
            display: none;
        }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-section {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 65px;
    }

    .hero-content {
        text-align: center;
    }

        .hero-content > p,
        .hero-content h1 {
            margin-inline: auto;
        }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .dashboard-shell {
        max-width: 620px;
        margin-inline: auto;
        transform: none;
    }

    .why-visual {
        order: 2;
    }

    .why-section .section-copy {
        order: 1;
    }

    .about-visual {
        min-height: 430px;
    }

    .cta-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 82px 0;
    }

    .nav-wrapper {
        min-height: 72px;
    }

    .main-nav {
        inset-top: 72px;
    }

    .hero-section {
        padding: 116px 0 75px;
    }

    .hero-content h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-content > p {
        font-size: .94rem;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-trust {
        gap: 12px;
        justify-content: space-between;
    }

        .hero-trust div {
            min-width: 0;
            flex: 1;
        }

        .hero-trust strong,
        .hero-trust span {
            font-size: 1.08rem;
        }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .server-panel {
        min-height: auto;
        padding: 16px;
    }

    .chart-bars {
        height: 105px;
    }

    .floating-card {
        display: none;
    }

    .about-visual {
        min-height: 350px;
    }

    .about-main-card {
        width: 100%;
    }

    .network-visual {
        transform: scale(.82);
    }

    .experience-card {
        right: 8px;
        bottom: -5px;
    }

    .services-grid,
    .process-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        margin-top: 38px;
    }

    .service-card,
    .process-card,
    .contact-card {
        padding: 24px;
    }

    .process-card {
        min-height: 205px;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ===== Refined header, contact and footer ===== */
.header-accent {
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: .9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
}

    .header-phone > span:first-child {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        border-radius: 11px;
        background: rgba(255,255,255,.08);
        color: var(--primary);
    }

    .header-phone small,
    .header-phone strong {
        display: block;
        line-height: 1.1;
    }

    .header-phone small {
        color: rgba(255,255,255,.5);
        font-size: .58rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .header-phone strong {
        margin-top: 4px;
        font-size: .78rem;
    }

.nav-cta span {
    transition: transform .2s ease;
}

.nav-cta:hover span {
    transform: translateX(4px);
}

.mobile-nav-contact {
    display: none;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 78% 20%, rgba(22,184,166,.08), transparent 25%), linear-gradient(180deg, #fff, #f5f9fb);
}

.contact-simple-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 82px;
    align-items: center;
}

.contact-actions {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.contact-action-card {
    position: relative;
    padding: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 12px 34px rgba(7,29,47,.055);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    overflow: hidden;
}

    .contact-action-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        background: var(--primary);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .28s ease;
    }

    .contact-action-card:hover {
        transform: translateX(8px);
        border-color: rgba(22,184,166,.42);
        box-shadow: 0 18px 45px rgba(7,29,47,.09);
    }

        .contact-action-card:hover::before {
            transform: scaleY(1);
        }

.contact-action-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.contact-action-card small,
.contact-action-card strong,
.contact-action-card em {
    display: block;
}

.contact-action-card small {
    color: var(--muted);
    font-size: .67rem;
}

.contact-action-card strong {
    margin-top: 3px;
    color: var(--navy);
    font-size: .96rem;
}

.contact-action-card em {
    margin-top: 3px;
    color: #8a98a4;
    font-size: .7rem;
    font-style: normal;
}

.contact-action-card b {
    color: var(--primary-dark);
    transition: transform .2s ease;
}

.contact-action-card:hover b {
    transform: translateX(4px);
}

.location-panel {
    position: relative;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(145deg, #071d2f, #0b344d);
    color: #fff;
    box-shadow: 0 30px 80px rgba(7,29,47,.22);
    overflow: hidden;
}

    .location-panel::after {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        right: -110px;
        top: -110px;
        border-radius: 50%;
        border: 35px solid rgba(22,184,166,.08);
    }

.location-panel-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.location-pin {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--primary);
    color: #04231f;
    font-size: 1.25rem;
    font-weight: 800;
}

.location-panel-top small {
    color: #7895a7;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.location-panel-top h3 {
    margin-top: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
}

.location-address {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
}

    .location-address span {
        color: var(--primary);
        font-size: .67rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .11em;
    }

    .location-address p {
        margin-top: 9px;
        color: #c0d0da;
        font-size: .91rem;
        line-height: 1.75;
    }

.map-link {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    min-height: 49px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 13px;
    background: var(--primary);
    color: #03201c;
    font-size: .82rem;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease;
}

    .map-link:hover {
        transform: translateY(-3px);
        background: #2ad0bc;
    }

.availability-row {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ca2b1;
    font-size: .72rem;
}

    .availability-row i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #55dda9;
        box-shadow: 0 0 0 6px rgba(85,221,169,.09);
        animation: availabilityPulse 1.8s infinite;
    }

@keyframes availabilityPulse {
    50% {
        box-shadow: 0 0 0 12px rgba(85,221,169,0);
    }
}

.contact-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(22,184,166,.12);
    pointer-events: none;
    animation: slowSpin 22s linear infinite;
}

.contact-orbit-one {
    width: 320px;
    height: 320px;
    right: -150px;
    top: 20px;
}

.contact-orbit-two {
    width: 190px;
    height: 190px;
    left: -80px;
    bottom: 10px;
    animation-direction: reverse;
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

.site-footer {
    position: relative;
    padding-top: 82px;
    background: radial-gradient(circle at 12% 15%, rgba(22,184,166,.1), transparent 22%), #041521;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    top: -150px;
    border-radius: 50%;
    background: rgba(22,184,166,.08);
    filter: blur(8px);
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 85px;
}

.footer-intro h3 {
    max-width: 590px;
    margin-top: 26px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.footer-intro p {
    max-width: 560px;
    margin-top: 18px;
    color: #7894a4;
    font-size: .9rem;
}

.footer-navigation {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 40px;
}

.footer-links address {
    color: #78909f;
    font-size: .8rem;
    line-height: 1.7;
    font-style: normal;
}

.footer-contact-strip {
    position: relative;
    z-index: 1;
    margin-top: 52px;
    padding: 25px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
}

    .footer-contact-strip span,
    .footer-contact-strip strong {
        display: block;
    }

    .footer-contact-strip > div:first-child > span {
        color: #708a99;
        font-size: .72rem;
    }

    .footer-contact-strip > div:first-child > strong {
        margin-top: 3px;
        font-family: "Manrope", sans-serif;
        font-size: 1rem;
    }

.footer-contact-actions {
    display: flex;
    gap: 10px;
}

    .footer-contact-actions a {
        min-height: 43px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border-radius: 11px;
        background: rgba(255,255,255,.055);
        color: #fff;
        font-size: .78rem;
        font-weight: 700;
        transition: transform .22s ease, background .22s ease;
    }

        .footer-contact-actions a:first-child {
            background: var(--primary);
            color: #03201c;
        }

        .footer-contact-actions a:hover {
            transform: translateY(-2px);
        }

.footer-bottom > div {
    display: flex;
    gap: 22px;
}

@media (max-width: 1120px) {
    .header-phone {
        display: none;
    }

    .footer-top {
        gap: 55px;
    }
}

@media (max-width: 860px) {
    .header-actions {
        display: none;
    }

    .mobile-nav-contact {
        margin-top: 10px;
        padding-top: 14px;
        display: grid;
        gap: 8px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

        .mobile-nav-contact a {
            padding: 9px 12px;
            color: var(--primary);
            font-size: .8rem;
        }

    .contact-simple-grid,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-navigation {
        max-width: 620px;
    }
}

@media (max-width: 620px) {
    .contact-simple-grid {
        gap: 34px;
    }

    .location-panel {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-action-card {
        padding: 15px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contact-actions {
        width: 100%;
        flex-direction: column;
    }

        .footer-contact-actions a {
            width: 100%;
            justify-content: space-between;
        }

    .footer-bottom > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}


/* ===== Pricing section ===== */
.pricing-section {
    position: relative;
    background: radial-gradient(circle at 15% 15%, rgba(22,184,166,.07), transparent 22%), linear-gradient(180deg, #f7fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.pricing-glow-one {
    width: 320px;
    height: 320px;
    right: -175px;
    top: 40px;
    border: 1px solid rgba(22,184,166,.12);
}

.pricing-glow-two {
    width: 190px;
    height: 190px;
    left: -100px;
    bottom: 30px;
    background: rgba(22,184,166,.045);
}

.pricing-tabs {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: 100%;
    margin: 42px auto 0;
    padding: 6px;
    display: flex;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(7,29,47,.07);
}

.pricing-tab {
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #53616d;
    cursor: pointer;
    font-weight: 700;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

    .pricing-tab span {
        margin-left: 4px;
        color: var(--primary-dark);
    }

    .pricing-tab.active {
        background: linear-gradient(135deg, #087c72, #0c625e);
        color: #fff;
        box-shadow: 0 10px 24px rgba(8,124,114,.22);
    }

        .pricing-tab.active span {
            color: #b9fff4;
        }

    .pricing-tab:not(.active):hover {
        background: var(--primary-soft);
        transform: translateY(-1px);
    }

.pricing-panel {
    position: relative;
    z-index: 2;
    margin-top: 38px;
}

    .pricing-panel[hidden] {
        display: none;
    }

    .pricing-panel.active {
        animation: pricingPanelIn .45s ease both;
    }

@keyframes pricingPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-width: 0;
    padding: 25px 20px 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 42px rgba(7,29,47,.075);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

    .pricing-card::after {
        content: "";
        position: absolute;
        width: 105px;
        height: 105px;
        right: -65px;
        top: -65px;
        border-radius: 50%;
        background: var(--primary-soft);
        transition: transform .35s ease;
    }

    .pricing-card:hover {
        transform: translateY(-9px);
        border-color: rgba(22,184,166,.45);
        box-shadow: 0 26px 58px rgba(7,29,47,.12);
    }

        .pricing-card:hover::after {
            transform: scale(1.4);
        }

    .pricing-card.featured {
        border-color: rgba(22,184,166,.55);
        box-shadow: 0 22px 60px rgba(8,124,114,.16);
    }

.popular-badge {
    position: absolute;
    z-index: 3;
    right: 13px;
    top: 13px;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--primary);
    color: #03201c;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pricing-card-head {
    position: relative;
    z-index: 2;
    min-height: 126px;
}

.plan-tier {
    color: var(--primary-dark);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    font-size: 1.32rem;
    letter-spacing: -.03em;
}

.pricing-card-head p {
    margin-top: 9px;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.55;
}

.price-block {
    position: relative;
    z-index: 2;
    margin: 3px -20px 0;
    min-height: 116px;
    padding: 20px 20px 17px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0b8d8b, #079266 130%);
    color: #fff;
    clip-path: polygon(0 14%, 13% 0, 100% 0, 100% 100%, 0 100%);
}

    .price-block small {
        margin-right: 6px;
        align-self: flex-start;
        margin-top: 8px;
        font-size: .65rem;
        font-weight: 700;
    }

    .price-block strong {
        font-family: "Manrope", sans-serif;
        font-size: clamp(1.65rem, 2.2vw, 2.15rem);
        line-height: 1;
        letter-spacing: -.04em;
    }

    .price-block span {
        width: 100%;
        margin-top: 12px;
        font-size: .66rem;
        font-weight: 700;
        text-transform: uppercase;
    }

.pricing-features {
    margin: 23px 0 24px;
    display: grid;
    gap: 0;
    list-style: none;
}

    .pricing-features li {
        min-height: 47px;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-bottom: 1px solid #edf1f3;
        color: #697783;
        font-size: .72rem;
    }

        .pricing-features li:last-child {
            border-bottom: 0;
        }

    .pricing-features strong {
        max-width: 58%;
        color: var(--navy);
        font-size: .72rem;
        text-align: right;
    }

.pricing-cta {
    margin-top: auto;
    min-height: 47px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--navy);
    font-size: .76rem;
    font-weight: 800;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

    .pricing-card.featured .pricing-cta,
    .pricing-cta:hover {
        border-color: var(--primary);
        background: var(--primary);
        color: #03201c;
        transform: translateY(-2px);
    }

    .pricing-cta span {
        transition: transform .2s ease;
    }

    .pricing-cta:hover span {
        transform: translateX(4px);
    }

.pricing-note {
    max-width: 800px;
    margin: 24px auto 0;
    color: #7a8995;
    font-size: .72rem;
    text-align: center;
}

.custom-pricing-card {
    padding: 45px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(22,184,166,.24);
    border-radius: 24px;
    background: radial-gradient(circle at 90% 10%, rgba(22,184,166,.13), transparent 22%), linear-gradient(135deg, #061b2a, #0a3249);
    color: #fff;
    box-shadow: 0 28px 70px rgba(7,29,47,.18);
}

.custom-pricing-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: rgba(22,184,166,.13);
    color: var(--primary);
    font-size: 1.8rem;
}

.custom-pricing-card .section-label {
    color: var(--primary);
}

.custom-pricing-card h3 {
    margin-top: 10px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.custom-pricing-card p {
    max-width: 700px;
    margin-top: 12px;
    color: #9eb3c0;
    font-size: .88rem;
}

.custom-pricing-points {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .custom-pricing-points span {
        padding: 7px 10px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 999px;
        background: rgba(255,255,255,.045);
        color: #b7c7d0;
        font-size: .65rem;
    }

@media (max-width: 1160px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-pricing-card {
        grid-template-columns: auto 1fr;
    }

        .custom-pricing-card .btn {
            grid-column: 1 / -1;
            width: fit-content;
        }
}

@media (max-width: 620px) {
    .pricing-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .pricing-tab {
        width: 100%;
        padding-inline: 14px;
        font-size: .78rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px 22px 21px;
    }

    .price-block {
        margin-inline: -22px;
        padding-inline: 22px;
    }

    .pricing-card-head {
        min-height: auto;
        padding-bottom: 20px;
    }

    .custom-pricing-card {
        padding: 27px 23px;
        grid-template-columns: 1fr;
    }

    .custom-pricing-icon {
        width: 58px;
        height: 58px;
    }

    .custom-pricing-card .btn {
        width: 100%;
    }
}


/* ===== v4 responsive corrections and enhanced motion ===== */
.brand {
    min-width: 155px;
}

.brand-logo {
    width: 160px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-footer .brand-logo {
    width: 175px;
}

.brand-mark,
.brand-text {
    display: none !important;
}

.hero-content h1 {
    font-size: clamp(2.9rem, 5vw, 4.85rem);
    max-width: 760px;
}

.hero-grid {
    gap: clamp(42px, 5vw, 74px);
}

.hero-cloud-layer {
    position: absolute;
    z-index: 1;
    border-radius: 48% 52% 62% 38% / 45% 42% 58% 55%;
    pointer-events: none;
    will-change: transform;
    filter: blur(.2px);
}

.hero-cloud-one {
    width: 520px;
    height: 210px;
    right: -170px;
    top: 20%;
    background: radial-gradient(circle at 22% 58%, rgba(22,184,166,.12) 0 24%, transparent 25%), radial-gradient(circle at 48% 42%, rgba(22,184,166,.1) 0 31%, transparent 32%), radial-gradient(circle at 74% 60%, rgba(22,184,166,.08) 0 25%, transparent 26%);
    animation: cloudDriftOne 18s ease-in-out infinite alternate;
}

.hero-cloud-two {
    width: 390px;
    height: 170px;
    left: -145px;
    bottom: 12%;
    background: radial-gradient(circle at 25% 58%, rgba(52,128,241,.09) 0 24%, transparent 25%), radial-gradient(circle at 53% 40%, rgba(22,184,166,.08) 0 32%, transparent 33%), radial-gradient(circle at 77% 62%, rgba(22,184,166,.07) 0 24%, transparent 25%);
    animation: cloudDriftTwo 22s ease-in-out infinite alternate;
}

@keyframes cloudDriftOne {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-85px, 28px, 0) scale(1.16);
    }
}

@keyframes cloudDriftTwo {
    from {
        transform: translate3d(0, 0, 0) scale(.94);
    }

    to {
        transform: translate3d(100px, -28px, 0) scale(1.12);
    }
}

.hero-orbit-ring {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(22,184,166,.11);
    pointer-events: none;
    will-change: transform;
}

    .hero-orbit-ring::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 18px rgba(22,184,166,.75);
    }

.hero-orbit-ring-one {
    width: 470px;
    height: 470px;
    right: 4%;
    top: 18%;
    animation: orbitRotate 26s linear infinite;
}

    .hero-orbit-ring-one::before {
        left: 45px;
        top: 72px;
    }

.hero-orbit-ring-two {
    width: 270px;
    height: 270px;
    left: 6%;
    bottom: -120px;
    animation: orbitRotateReverse 19s linear infinite;
}

    .hero-orbit-ring-two::before {
        right: 35px;
        top: 38px;
    }

@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.hero-content,
.hero-visual {
    will-change: transform;
}

.hero-visual {
    animation: heroVisualEntry 1.05s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes heroVisualEntry {
    from {
        opacity: 0;
        transform: translate3d(70px, 20px, 0) scale(.92);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.dashboard-shell {
    transition: transform .22s ease-out, box-shadow .35s ease;
    transform-style: preserve-3d;
}

    .dashboard-shell:hover {
        box-shadow: 0 55px 120px rgba(0,0,0,.38);
    }

.metric-card,
.activity-card,
.floating-card {
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

    .metric-card:hover {
        transform: translateY(-5px);
        border-color: rgba(22,184,166,.22);
        background: rgba(255,255,255,.065);
    }

.why-visual-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-visual-centered .operations-card {
        width: min(100%, 510px);
        margin-inline: auto;
    }

.operations-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

    .operations-card:hover {
        box-shadow: 0 38px 95px rgba(0,0,0,.3);
    }

.operations-list div {
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

    .operations-list div:hover {
        transform: translateX(6px);
        background: rgba(255,255,255,.065);
        border-color: rgba(22,184,166,.16);
    }

.service-card,
.process-card,
.pricing-card,
.contact-action-card,
.location-panel {
    will-change: transform;
}

.reveal {
    opacity: 0;
    transform: translateY(38px) scale(.985);
    filter: blur(4px);
    transition: opacity .82s cubic-bezier(.2,.75,.25,1), transform .82s cubic-bezier(.2,.75,.25,1), filter .82s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

.services-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2) {
    transition-delay: .08s;
}

.services-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3) {
    transition-delay: .16s;
}

.services-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4),
.pricing-grid .reveal:nth-child(4) {
    transition-delay: .24s;
}

.services-grid .reveal:nth-child(5),
.pricing-grid .reveal:nth-child(5) {
    transition-delay: .32s;
}

.services-grid .reveal:nth-child(6) {
    transition-delay: .4s;
}

.section-heading h2,
.section-copy h2 {
    text-wrap: balance;
}

@media (max-width: 1120px) {
    .brand-logo {
        width: 145px;
    }

    .hero-content h1 {
        font-size: clamp(2.85rem, 5.6vw, 4.3rem);
    }
}

@media (max-width: 860px) {
    .brand {
        min-width: auto;
    }

    .brand-logo {
        width: 138px;
    }

    .hero-content h1 {
        max-width: 690px;
        font-size: clamp(2.75rem, 9vw, 4.25rem);
    }

    .why-visual-centered {
        width: 100%;
        justify-content: center;
    }

        .why-visual-centered .operations-card {
            margin: 0 auto;
        }

    .hero-orbit-ring-one {
        right: -190px;
    }

    .hero-cloud-one {
        right: -270px;
    }
}

@media (max-width: 620px) {
    .brand-logo {
        width: 132px;
    }

    .hero-content h1 {
        font-size: clamp(2.45rem, 12vw, 3.55rem);
        line-height: 1.03;
        letter-spacing: -.05em;
    }

    .hero-content > p {
        max-width: 520px;
    }

    .why-grid {
        justify-items: stretch;
    }

    .why-visual-centered {
        display: flex;
        width: 100%;
        padding-inline: 0;
    }

        .why-visual-centered .operations-card {
            width: 100%;
            max-width: 510px;
            margin-inline: auto;
        }

    .operations-card {
        padding: 24px;
    }

    .operations-list div {
        padding: 15px 16px;
    }

    .hero-cloud-one {
        width: 360px;
        height: 150px;
        right: -210px;
        top: 29%;
    }

    .hero-cloud-two {
        width: 300px;
        height: 135px;
        left: -190px;
    }

    .hero-orbit-ring-one {
        width: 320px;
        height: 320px;
        right: -220px;
        top: 30%;
    }

    .hero-orbit-ring-two {
        display: none;
    }

    .reveal {
        transform: translateY(28px);
        filter: blur(2px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cloud-layer,
    .hero-orbit-ring,
    .hero-visual {
        animation: none !important;
    }
}


/* ===== v5 focused motion and header refinements ===== */

/* Remove all blur-based transitions */
.reveal,
.reveal.visible {
    filter: none !important;
}

.reveal {
    transform: translateY(24px);
}

    .reveal.visible {
        transform: translateY(0);
    }

/* Cleaner, taller and more useful header */
.site-header {
    min-height: 84px;
}

.nav-wrapper {
    min-height: 84px;
}

.main-nav {
    gap: 24px;
}

.nav-link {
    font-size: .88rem;
}

.header-actions {
    margin-left: 4px;
}

.mobile-header-actions {
    display: none;
}

/* About network: only this graphic gets the strong scroll interaction */
.about-main-card {
    overflow: visible;
}

.network-visual {
    transform-origin: center;
    will-change: transform;
}

.network-core {
    will-change: transform, box-shadow;
    transition: box-shadow .2s linear;
}

.network-node,
.network-visual .line {
    will-change: transform, opacity;
}

.network-node {
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .network-node.network-active {
        background: rgba(22,184,166,.18);
        border-color: rgba(22,184,166,.55);
        box-shadow: 0 0 0 8px rgba(22,184,166,.07), 0 14px 32px rgba(0,0,0,.16);
    }

.network-visual .line {
    transform-origin: left center;
}

.about-main-card {
    position: relative;
}

    .about-main-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(circle at center, rgba(22,184,166,.08), transparent 38%), linear-gradient(145deg, rgba(255,255,255,.025), transparent);
        pointer-events: none;
    }

@media (max-width: 1120px) {
    .main-nav {
        gap: 18px;
    }

    .header-phone {
        display: none;
    }
}

@media (max-width: 860px) {
    .site-header {
        min-height: 92px;
    }

    .nav-wrapper {
        min-height: 92px;
        gap: 10px;
    }

    .brand-logo {
        width: 126px;
    }

    .mobile-header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-call {
        min-height: 40px;
        padding: 0 11px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1px solid rgba(255,255,255,.09);
        border-radius: 11px;
        background: rgba(255,255,255,.055);
        color: #fff;
        font-size: .68rem;
    }

        .mobile-call span {
            color: var(--primary);
        }

    .mobile-contact-btn {
        min-height: 40px;
        padding: 0 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        background: var(--primary);
        color: #03201c;
        font-size: .7rem;
        font-weight: 800;
        white-space: nowrap;
    }

    .menu-toggle {
        margin-left: 0;
        flex-shrink: 0;
    }

    .main-nav {
        inset: 92px 14px auto;
    }

    .mobile-nav-contact {
        display: none;
    }
}

@media (max-width: 620px) {
    .site-header,
    .nav-wrapper {
        min-height: 86px;
    }

    .brand-logo {
        width: 110px;
    }

    .mobile-call {
        width: 40px;
        padding: 0;
        justify-content: center;
    }

        .mobile-call strong {
            display: none;
        }

    .mobile-contact-btn {
        padding-inline: 11px;
        font-size: .66rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .main-nav {
        inset: 86px 12px auto;
    }

    .about-main-card {
        min-height: 350px;
    }

    .network-visual {
        transform: scale(.78);
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 98px;
    }

    .mobile-contact-btn {
        min-height: 38px;
        padding-inline: 9px;
    }

    .mobile-call,
    .menu-toggle {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }

    .nav-wrapper {
        gap: 7px;
    }
}


/* ===== v6 true pinned About scroll sequence ===== */
.about-scroll-section {
    position: relative;
    min-height: 190vh;
    padding: 0;
    background: var(--surface-2);
}

.about-scroll-stage {
    position: sticky;
    top: 84px;
    min-height: calc(100vh - 84px);
    padding: 72px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .about-scroll-stage .about-grid {
        width: min(calc(100% - 40px), var(--container));
        margin-inline: auto;
    }

.about-scroll-progress {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 3px;
    height: 150px;
    border-radius: 999px;
    background: rgba(7,29,47,.08);
    transform: translateY(-50%);
    overflow: hidden;
}

    .about-scroll-progress span {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        background: var(--primary);
        transform: scaleY(0);
        transform-origin: top;
        will-change: transform;
    }

.about-scroll-stage .section-copy {
    will-change: transform, opacity;
}

.about-scroll-stage .about-visual {
    will-change: transform;
}

/* Initial states for the pinned sequence */
.about-scroll-section:not(.about-motion-ready) .network-node {
    opacity: .2;
}

.about-scroll-section:not(.about-motion-ready) .network-visual .line {
    opacity: .08;
}

@media (max-width: 860px) {
    .about-scroll-section {
        min-height: 175vh;
    }

    .about-scroll-stage {
        top: 92px;
        min-height: calc(100vh - 92px);
        padding: 42px 0;
    }

        .about-scroll-stage .about-grid {
            width: min(calc(100% - 28px), var(--container));
            gap: 34px;
        }

    .about-scroll-progress {
        right: 8px;
        height: 110px;
    }
}

@media (max-width: 620px) {
    .about-scroll-section {
        min-height: 205vh;
    }

    .about-scroll-stage {
        top: 86px;
        min-height: calc(100vh - 86px);
        padding: 24px 0 30px;
        align-items: flex-start;
        overflow-y: auto;
    }

        .about-scroll-stage .about-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .about-scroll-stage .section-copy h2 {
            font-size: clamp(2rem, 10vw, 3rem);
        }

        .about-scroll-stage .section-copy > p {
            font-size: .86rem;
            line-height: 1.65;
        }

        .about-scroll-stage .feature-list {
            margin-top: 22px;
            gap: 12px;
        }

        .about-scroll-stage .about-visual {
            min-height: 285px;
        }

        .about-scroll-stage .about-main-card {
            max-height: 285px;
        }

    .about-scroll-progress {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-scroll-section {
        min-height: auto;
        padding: 82px 0;
    }

    .about-scroll-stage {
        position: static;
        min-height: auto;
        padding: 0;
    }
}


/* ===== v7 cloud/data-center network and JS-error safety ===== */

/*
 * Content remains visible even if JavaScript is disabled or fails.
 * JS adds .js-ready before applying reveal animation states.
 */
.reveal {
    opacity: 1;
    transform: none;
}

.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s cubic-bezier(.2,.75,.25,1), transform .72s cubic-bezier(.2,.75,.25,1);
}

    .js-ready .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.about-main-card {
    width: min(100%, 570px);
    aspect-ratio: auto;
    min-height: 500px;
    padding: 20px;
}

.network-datacenter {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 420px;
    transform: none;
    overflow: visible;
    isolation: isolate;
}

.network-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.network-link {
    fill: none;
    stroke: url(#networkLineGradient);
    stroke-width: 1.6;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    opacity: .8;
}

.network-link-secondary {
    stroke-width: 1;
    stroke-dasharray: 4 7;
    opacity: .34;
}

.datacenter-core {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 132px;
    height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 34px;
    background: linear-gradient(145deg, #20c7b9, #0e9f98);
    color: #032722;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 14px rgba(22,184,166,.07), 0 0 0 32px rgba(22,184,166,.035), 0 24px 55px rgba(0,0,0,.24);
    will-change: transform, box-shadow;
}

.core-cloud-symbol {
    font-size: 1.65rem;
    line-height: 1;
}

.datacenter-core strong {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: .9rem;
}

.datacenter-core small {
    margin-top: 2px;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .72;
}

.core-pulse {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border: 1px solid rgba(32,199,185,.45);
    border-radius: 37px;
    animation: coreNetworkPulse 2.8s ease-out infinite;
}

.core-pulse-two {
    animation-delay: 1.4s;
}

@keyframes coreNetworkPulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.72);
    }
}

.infrastructure-node {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    width: 78px;
    min-height: 58px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(104,205,201,.24);
    border-radius: 16px;
    background: rgba(16,57,79,.92);
    color: #fff;
    font-family: inherit;
    cursor: default;
    transform: translate(-50%, -50%) scale(.55);
    opacity: .12;
    box-shadow: 0 12px 25px rgba(0,0,0,.14);
    backdrop-filter: none;
    will-change: transform, opacity;
}

    .infrastructure-node span {
        color: #61e4d4;
        font-size: .69rem;
        font-weight: 800;
        letter-spacing: .04em;
    }

    .infrastructure-node small {
        margin-top: 2px;
        color: #93adba;
        font-size: .49rem;
        white-space: nowrap;
    }

    .infrastructure-node.network-active {
        border-color: rgba(45,218,201,.58);
        background: rgba(12,68,87,.98);
        box-shadow: 0 0 0 6px rgba(22,184,166,.05), 0 15px 32px rgba(0,0,0,.2);
    }

    .infrastructure-node::after {
        content: "";
        position: absolute;
        right: 7px;
        top: 7px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #42e0aa;
        box-shadow: 0 0 8px rgba(66,224,170,.8);
    }

.network-status-pill {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 2px;
    padding: 7px 11px;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(5,31,47,.88);
    color: #8fa9b7;
    font-size: .55rem;
    transform: translateX(-50%);
    opacity: 0;
    white-space: nowrap;
}

    .network-status-pill i {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #46dcaa;
        box-shadow: 0 0 0 5px rgba(70,220,170,.08);
    }

/* Override legacy four-node coordinates and lines. */
.node-one,
.node-two,
.node-three,
.node-four,
.network-visual > .line {
    position: initial;
}

@media (max-width: 860px) {
    .about-main-card {
        min-height: 430px;
    }

    .network-datacenter {
        width: min(100%, 480px);
        height: 380px;
    }

    .datacenter-core {
        width: 112px;
        height: 112px;
        border-radius: 29px;
    }

    .infrastructure-node {
        width: 69px;
        min-height: 52px;
    }
}

@media (max-width: 620px) {
    .about-scroll-stage {
        overflow: hidden;
    }

        .about-scroll-stage .about-visual {
            min-height: 330px;
        }

    .about-main-card {
        min-height: 330px;
        padding: 8px;
    }

    .network-datacenter {
        width: 100%;
        height: 310px;
        transform: none;
    }

    .datacenter-core {
        width: 92px;
        height: 92px;
        border-radius: 24px;
    }

    .core-cloud-symbol {
        font-size: 1.25rem;
    }

    .datacenter-core strong {
        font-size: .72rem;
    }

    .datacenter-core small {
        font-size: .45rem;
    }

    .infrastructure-node {
        width: 57px;
        min-height: 45px;
        padding: 5px 4px;
        border-radius: 12px;
    }

        .infrastructure-node span {
            font-size: .57rem;
        }

        .infrastructure-node small {
            display: none;
        }

    .network-status-pill {
        bottom: 1px;
        font-size: .48rem;
    }
}


/* ===== v8 Pakistan map scroll animation ===== */
.network-datacenter,
.network-links,
.datacenter-core,
.infrastructure-node,
.network-status-pill {
    display: none !important;
}

.about-main-card {
    width: min(100%, 610px);
    min-height: 520px;
    padding: 18px;
    overflow: hidden;
}

.pakistan-map-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.pakistan-map-svg {
    width: min(100%, 590px);
    height: 100%;
    overflow: visible;
}

.map-zoom-group {
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform;
}

.pakistan-outline {
    fill: url(#pakistanFill);
    stroke: url(#pakistanStroke);
    stroke-width: 3;
    filter: url(#mapGlow);
}

.province-line {
    fill: none;
    stroke: rgba(93, 211, 203, .14);
    stroke-width: 1.4;
    stroke-dasharray: 5 8;
}

.city-connection {
    fill: none;
    stroke: rgba(54, 218, 203, .72);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px rgba(30, 205, 192, .3));
}

.city-connection-secondary {
    stroke: rgba(61, 160, 201, .38);
    stroke-width: 1.2;
    stroke-dasharray: 4 7;
}

.city-node {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    will-change: opacity, transform;
}

    .city-node .city-pulse {
        fill: rgba(26, 202, 188, .08);
        stroke: rgba(42, 216, 201, .26);
        stroke-width: 1;
    }

    .city-node .city-dot {
        fill: #2be0cd;
        stroke: #082a3d;
        stroke-width: 4;
        filter: drop-shadow(0 0 8px rgba(43, 224, 205, .65));
    }

    .city-node text {
        fill: #f3ffff;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 800;
        paint-order: stroke;
        stroke: rgba(5, 28, 43, .9);
        stroke-width: 4px;
        stroke-linejoin: round;
    }

    .city-node .city-role {
        fill: #81a7b5;
        font-size: 9px;
        font-weight: 600;
        stroke-width: 3px;
    }

.map-core-badge {
    opacity: 0;
    will-change: opacity, transform;
}

    .map-core-badge circle {
        fill: #19b9ad;
        stroke: rgba(255,255,255,.18);
        stroke-width: 2;
        filter: drop-shadow(0 10px 18px rgba(0,0,0,.24));
    }

    .map-core-badge text {
        fill: #03231f;
        font-family: "Manrope", sans-serif;
        font-size: 10px;
        font-weight: 800;
    }

    .map-core-badge .core-small {
        font-family: "Inter", sans-serif;
        font-size: 6px;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

.map-coverage-status {
    position: absolute;
    left: 50%;
    bottom: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(5, 29, 44, .9);
    color: #9ab3c0;
    font-size: .62rem;
    opacity: 0;
    transform: translate(-50%, 15px);
    white-space: nowrap;
}

    .map-coverage-status i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4be0ae;
        box-shadow: 0 0 0 6px rgba(75,224,174,.08);
    }

@media (max-width: 860px) {
    .about-main-card {
        min-height: 430px;
    }

    .pakistan-map-visual {
        height: 400px;
    }
}

@media (max-width: 620px) {
    .about-main-card {
        min-height: 330px;
        padding: 6px;
    }

    .pakistan-map-visual {
        height: 310px;
    }

    .city-node text {
        font-size: 12px;
    }

    .city-node .city-role {
        display: none;
    }

    .map-coverage-status {
        bottom: 2px;
        font-size: .52rem;
    }
}

/* ===== v9 layout correction ===== */

/* Rebalance hero inside the viewport */
.hero-section {
    padding-inline: 0;
}

    .hero-section .container {
        width: min(calc(100% - 72px), 1540px);
    }

.hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    gap: clamp(46px, 5vw, 92px);
    justify-content: center;
}

.hero-content {
    max-width: 720px;
}

    .hero-content h1 {
        max-width: 700px;
        font-size: clamp(3rem, 4.65vw, 5rem);
    }

.hero-visual {
    width: 100%;
    max-width: 760px;
    justify-self: center;
}

.dashboard-shell {
    width: 100%;
    transform: none;
}

/* Keep pinned About content below the fixed header and within the viewport */
.about-scroll-stage {
    top: 84px;
    height: calc(100vh - 84px);
    min-height: 650px;
    padding: 34px 0 28px;
    align-items: center;
    overflow: hidden;
}

    .about-scroll-stage .about-grid {
        align-items: center;
        gap: clamp(48px, 6vw, 100px);
    }

    .about-scroll-stage .section-copy h2 {
        font-size: clamp(2.6rem, 4.4vw, 4.55rem);
        line-height: 1.04;
    }

    .about-scroll-stage .section-copy > p {
        margin-top: 17px;
        font-size: .94rem;
        line-height: 1.68;
    }

    .about-scroll-stage .feature-list {
        margin-top: 24px;
        gap: 12px;
    }

        .about-scroll-stage .feature-list small {
            font-size: .78rem;
        }

    .about-scroll-stage .about-visual {
        min-height: 500px;
    }

/* Fully contain the SVG and every city label */
.about-main-card {
    width: min(100%, 610px);
    min-height: 500px;
    padding: 14px;
    overflow: hidden !important;
    isolation: isolate;
}

.pakistan-map-visual {
    width: 100%;
    height: 472px;
    overflow: hidden !important;
    border-radius: 21px;
}

.pakistan-map-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden !important;
}

.map-zoom-group {
    transform-box: view-box;
    transform-origin: 225px 416px;
}

.city-node {
    pointer-events: none;
}

    /* Labels stay close to dots and never extend beyond the visible card */
    .city-node text {
        font-size: 12px;
        stroke-width: 3px;
    }

    .city-node .city-role {
        font-size: 8px;
    }

.city-peshawar text,
.city-islamabad text,
.city-lahore text {
    text-anchor: end;
    transform: translateX(-28px);
}

.city-karachi text,
.city-quetta text,
.city-multan text,
.city-faisalabad text {
    text-anchor: start;
}

.experience-card {
    right: 4px;
    bottom: 18px;
    z-index: 8;
}

@media (max-width: 1180px) {
    .hero-section .container {
        width: min(calc(100% - 44px), 1180px);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
        gap: 46px;
    }

    .hero-content h1 {
        font-size: clamp(2.9rem, 5.2vw, 4.4rem);
    }
}

@media (max-width: 920px) {
    .hero-section .container {
        width: min(calc(100% - 32px), 760px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .hero-content h1 {
        max-width: 720px;
        margin-inline: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-visual {
        max-width: 700px;
    }

    .about-scroll-stage {
        top: 92px;
        height: calc(100vh - 92px);
        min-height: 720px;
        padding: 28px 0;
    }

        .about-scroll-stage .about-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .about-scroll-stage .section-copy h2 {
            font-size: clamp(2.25rem, 5.5vw, 3.45rem);
        }

    .about-main-card {
        min-height: 410px;
    }

    .pakistan-map-visual {
        height: 390px;
    }
}

@media (max-width: 720px) {
    .about-scroll-section {
        min-height: 220vh;
    }

    .about-scroll-stage {
        position: sticky;
        top: 86px;
        height: calc(100vh - 86px);
        min-height: 650px;
        padding: 18px 0;
        overflow-y: auto;
    }

        .about-scroll-stage .about-grid {
            grid-template-columns: 1fr;
            align-items: start;
            gap: 20px;
        }

        .about-scroll-stage .section-copy h2 {
            font-size: clamp(2rem, 10vw, 3rem);
        }

        .about-scroll-stage .section-copy > p:nth-of-type(2),
        .about-scroll-stage .feature-list {
            display: none;
        }

        .about-scroll-stage .about-visual {
            min-height: 340px;
        }

    .about-main-card {
        min-height: 330px;
    }

    .pakistan-map-visual {
        height: 315px;
    }

    .experience-card {
        right: 10px;
        bottom: 5px;
        padding: 15px;
        min-width: 150px;
    }
}


/* ===== v10 clean regional network visual ===== */
.experience-card {
    display: none !important;
}

.about-main-card.coverage-card {
    width: min(100%, 610px);
    min-height: 500px;
    padding: 0;
    overflow: hidden;
    border-radius: 28px;
    background: radial-gradient(circle at 60% 38%, rgba(24,185,173,.13), transparent 30%), linear-gradient(145deg, #071f31, #0a334a);
}

.coverage-network {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    isolation: isolate;
}

.coverage-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(84,184,194,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(84,184,194,.18) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at center, #000 30%, transparent 88%);
}

.coverage-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.coverage-link {
    fill: none;
    stroke: url(#coverageGradient);
    stroke-width: 1.7;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

    .coverage-link.secondary {
        stroke-width: 1;
        stroke-dasharray: 5 9;
        opacity: .34;
    }

.coverage-ring {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(37,201,189,.12);
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(.4);
    opacity: 0;
}

.coverage-ring-one {
    width: 290px;
    height: 290px;
}

.coverage-ring-two {
    width: 470px;
    height: 470px;
}

.coverage-hub,
.coverage-node {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(.4);
    opacity: 0;
    will-change: transform,opacity,left,top;
}

.coverage-hub {
    width: 124px;
    height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    color: #032823;
    background: linear-gradient(145deg,#27d4c2,#10a69d);
    box-shadow: 0 0 0 12px rgba(27,205,191,.07),0 25px 55px rgba(0,0,0,.25);
}

    .coverage-hub .hub-icon {
        font-size: 1.55rem;
        line-height: 1;
    }

    .coverage-hub strong {
        margin-top: 5px;
        font-family: "Manrope",sans-serif;
        font-size: .82rem;
    }

    .coverage-hub small {
        margin-top: 2px;
        font-size: .58rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

.coverage-node {
    min-width: 102px;
    padding: 10px 12px 10px 27px;
    border: 1px solid rgba(98,214,207,.22);
    border-radius: 14px;
    background: rgba(9,45,65,.95);
    box-shadow: 0 13px 28px rgba(0,0,0,.18);
    color: #fff;
}

    .coverage-node i {
        position: absolute;
        left: 11px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #35d8b0;
        transform: translateY(-50%);
        box-shadow: 0 0 0 6px rgba(53,216,176,.08),0 0 15px rgba(53,216,176,.65);
    }

    .coverage-node strong, .coverage-node small {
        display: block;
        white-space: nowrap;
    }

    .coverage-node strong {
        font-size: .68rem;
    }

    .coverage-node small {
        margin-top: 2px;
        color: #7895a5;
        font-size: .52rem;
    }

    .coverage-node.active {
        border-color: rgba(40,217,199,.62);
        background: rgba(10,61,79,.98);
    }

.coverage-caption {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 18px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(4,27,42,.86);
    color: #8da8b5;
    font-size: .62rem;
    transform: translate(-50%,18px);
    opacity: 0;
    white-space: nowrap;
}

    .coverage-caption span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #42d9ad;
        box-shadow: 0 0 0 6px rgba(66,217,173,.08);
    }

@media (max-width:860px) {
    .about-main-card.coverage-card {
        min-height: 430px
    }

    .coverage-network {
        height: 430px
    }
}

@media (max-width:620px) {
    .about-main-card.coverage-card {
        min-height: 330px
    }

    .coverage-network {
        height: 330px
    }

    .coverage-hub {
        width: 88px;
        height: 88px;
        border-radius: 24px
    }

        .coverage-hub .hub-icon {
            font-size: 1.1rem
        }

        .coverage-hub strong {
            font-size: .62rem
        }

        .coverage-hub small {
            font-size: .43rem
        }

    .coverage-node {
        min-width: 0;
        width: 74px;
        padding: 8px 8px 8px 22px;
        border-radius: 11px
    }

        .coverage-node strong {
            font-size: .55rem
        }

        .coverage-node small {
            display: none
        }

        .coverage-node i {
            left: 8px;
            width: 6px;
            height: 6px
        }

    .coverage-caption {
        bottom: 10px;
        font-size: .5rem
    }
}


/* ===== v11 contact details and floating WhatsApp ===== */
.contact-action-whatsapp .whatsapp-icon {
    background: #e8fbf1;
    color: #128c4b;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.contact-action-whatsapp:hover {
    border-color: rgba(37, 211, 102, .55);
}

.contact-action-whatsapp::before {
    background: #25d366;
}

.floating-whatsapp {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
    min-height: 58px;
    padding: 8px 16px 8px 9px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #18b957);
    color: #062d18;
    box-shadow: 0 18px 45px rgba(7, 91, 43, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .floating-whatsapp:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 24px 55px rgba(7, 91, 43, .35);
    }

.whatsapp-logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
}

    .whatsapp-logo svg {
        width: 25px;
        height: 25px;
        fill: #159447;
    }

.whatsapp-copy small,
.whatsapp-copy strong {
    display: block;
    line-height: 1.1;
}

.whatsapp-copy small {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    opacity: .72;
}

.whatsapp-copy strong {
    margin-top: 4px;
    font-size: .78rem;
    white-space: nowrap;
}

@keyframes whatsappAttention {
    0%, 82%, 100% {
        transform: translateY(0);
    }

    88% {
        transform: translateY(-5px);
    }

    94% {
        transform: translateY(0);
    }
}

.floating-whatsapp {
    animation: whatsappAttention 5.5s ease-in-out infinite;
}

    .floating-whatsapp:hover {
        animation: none;
    }

@media (max-width: 620px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 6px;
        justify-content: center;
    }

    .whatsapp-logo {
        width: 42px;
        height: 42px;
    }

    .whatsapp-copy {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp {
        animation: none;
    }
}


/* ===== v12 refined header and footer ===== */
.site-header {
    min-height: 82px;
}

.nav-wrapper {
    min-height: 82px;
}

.brand-logo {
    width: 176px;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    gap: 25px;
}

.header-actions {
    margin-left: 8px;
}

.header-phone {
    padding: 7px 10px 7px 7px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

    .header-phone:hover {
        transform: translateY(-2px);
        border-color: rgba(22,184,166,.25);
        background: rgba(255,255,255,.065);
    }

.mobile-menu-contact {
    display: none;
}

/* Footer refinement */
.site-footer {
    padding-top: 68px;
}

.footer-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, .95fr);
    gap: 72px;
    align-items: start;
}

.footer-intro {
    max-width: 640px;
}

    .footer-intro .brand-logo {
        width: 190px;
    }

    .footer-intro h3 {
        max-width: 620px;
        margin-top: 24px;
        font-size: clamp(2rem, 3.25vw, 3.25rem);
    }

    .footer-intro p {
        max-width: 600px;
        font-size: .92rem;
    }

.footer-trust-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-trust-row span {
        padding: 8px 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 999px;
        background: rgba(255,255,255,.03);
        color: #8ca4b2;
        font-size: .68rem;
    }

    .footer-trust-row i {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: 0 0 0 5px rgba(22,184,166,.07);
    }

.footer-navigation {
    grid-template-columns: .8fr 1.2fr;
    gap: 54px;
}

.footer-links strong {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #dce8ee;
}

.footer-links a,
.footer-links span,
.footer-links address {
    color: #7f9aaa;
    font-size: .78rem;
}

.footer-links a {
    width: fit-content;
}

    .footer-links a:hover {
        transform: translateX(4px);
    }

.footer-contact-strip {
    margin-top: 46px;
    padding: 22px 24px;
    border-radius: 16px;
}

.footer-contact-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .footer-contact-actions a {
        min-width: 108px;
        justify-content: space-between;
    }

        .footer-contact-actions a:nth-child(2) {
            background: rgba(37,211,102,.12);
            color: #73e7a0;
        }

.footer-bottom {
    margin-top: 38px;
}

@media (max-width: 1100px) {
    .brand-logo {
        width: 156px;
    }

    .main-nav {
        gap: 18px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 860px) {
    .site-header,
    .nav-wrapper {
        min-height: 78px;
    }

    .brand-logo {
        width: 145px;
    }

    .mobile-header-actions {
        margin-left: auto;
    }

    .mobile-call {
        width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        justify-content: center;
    }

        .mobile-call strong {
            display: none;
        }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .main-nav {
        inset: 78px 12px auto;
        max-height: calc(100vh - 92px);
        padding: 14px;
        overflow-y: auto;
    }

    .mobile-menu-contact {
        margin-top: 10px;
        padding: 16px;
        display: grid;
        gap: 12px;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        background: rgba(255,255,255,.035);
    }

    .mobile-menu-label {
        color: #7894a4;
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .mobile-menu-primary {
        min-height: 45px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 11px;
        background: var(--primary);
        color: #03201c;
        font-size: .78rem;
        font-weight: 800;
    }

    .mobile-menu-details {
        display: grid;
        gap: 8px;
    }

        .mobile-menu-details > a {
            min-height: 48px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 10px;
            background: rgba(255,255,255,.035);
        }

            .mobile-menu-details > a > span {
                width: 30px;
                height: 30px;
                display: grid;
                place-items: center;
                border-radius: 9px;
                background: rgba(22,184,166,.1);
                color: var(--primary);
                font-size: .62rem;
                font-weight: 800;
            }

        .mobile-menu-details small,
        .mobile-menu-details strong {
            display: block;
        }

        .mobile-menu-details small {
            color: #6f8b9a;
            font-size: .58rem;
        }

        .mobile-menu-details strong {
            margin-top: 2px;
            color: #dbe7ec;
            font-size: .72rem;
        }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-navigation {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .site-header,
    .nav-wrapper {
        min-height: 74px;
    }

    .nav-wrapper {
        gap: 9px;
    }

    .brand-logo {
        width: 132px;
    }

    .main-nav {
        inset: 74px 10px auto;
    }

    .mobile-call,
    .menu-toggle {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }

    .site-footer {
        padding-top: 56px;
    }

    .footer-intro .brand-logo {
        width: 160px;
    }

    .footer-intro h3 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-contact-strip {
        padding: 19px;
    }

    .footer-contact-actions {
        width: 100%;
    }

        .footer-contact-actions a {
            width: 100%;
        }

    .footer-bottom {
        gap: 12px;
    }
}

@media (max-width: 430px) {
    .brand-logo {
        width: 116px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
    }
}


/* ===== v15 layout, static About network and WhatsApp quotations ===== */

/* Header: brand and actions share the same content edges; navigation remains centered. */
.site-header .nav-wrapper {
    min-height: 88px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
    align-items: center;
    gap: 24px;
}

.site-header .brand {
    justify-self: start;
    min-width: 0;
}

.site-header .brand-logo {
    width: 170px;
    max-height: 55px;
    object-fit: contain;
    object-position: left center;
}

.site-header .main-nav {
    position: static;
    margin: 0;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(17px, 1.55vw, 27px);
    white-space: nowrap;
}

.site-header .header-actions {
    justify-self: end;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.site-header .header-phone {
    min-width: 152px;
    justify-content: flex-start;
}

/* Hero is balanced on desktop. When columns would stack, show only the content. */
.hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(470px, 1.06fr);
    align-items: center;
    gap: clamp(48px, 5.3vw, 86px);
}

.hero-content {
    max-width: 720px;
}

.hero-visual {
    min-width: 0;
}

/* About is a normal section—no sticky/pinned scrolling. */
.about-section {
    position: relative;
    min-height: auto;
    padding: 110px 0;
    overflow: hidden;
}

.about-grid-refined {
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    gap: clamp(55px, 6vw, 96px);
}

.coverage-card-static {
    width: 100%;
    max-width: 620px;
    min-height: 570px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.coverage-card-header {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 4px 5px 17px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .coverage-card-header span,
    .coverage-card-header strong {
        display: block;
    }

    .coverage-card-header span {
        color: #7292a4;
        font-size: .66rem;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

    .coverage-card-header strong {
        margin-top: 4px;
        color: #fff;
        font-family: "Manrope", sans-serif;
        font-size: .97rem;
    }

.coverage-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(30,210,165,.08);
    color: #85d7bc;
    font-size: .65rem;
    white-space: nowrap;
}

    .coverage-live i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #39d6a4;
        box-shadow: 0 0 0 5px rgba(57,214,164,.08);
    }

.coverage-network {
    flex: 1;
    min-height: 455px;
    margin-top: 8px;
    transform: none !important;
}

.coverage-node,
.coverage-hub,
.coverage-caption {
    opacity: 1 !important;
}

.coverage-node {
    transform: translate(-50%, -50%) scale(1) !important;
}

.coverage-hub {
    transform: translate(-50%, -50%) scale(1) !important;
}

.coverage-caption {
    transform: translateX(-50%) !important;
}

.coverage-legend {
    position: relative;
    z-index: 5;
    padding-top: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #809cac;
    font-size: .6rem;
}

    .coverage-legend span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .coverage-legend i {
        width: 7px;
        height: 7px;
        border-radius: 50%;
    }

.legend-core {
    background: #18c7b8;
}

.legend-data {
    background: #48dfb0;
}

.legend-edge {
    background: #3f9dc6;
}

/* VDS uses detail cards, while pricing remains intentionally quotation-only. */
.vds-intro {
    margin-bottom: 26px;
    padding: 25px 27px;
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 32px;
    align-items: end;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

    .vds-intro h3 {
        margin-top: 10px;
        font-family: "Manrope", sans-serif;
        color: var(--navy);
        font-size: clamp(1.55rem, 2.5vw, 2.25rem);
        line-height: 1.14;
    }

    .vds-intro p {
        color: var(--muted);
        font-size: .84rem;
    }

.vds-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vds-card {
    position: relative;
    padding: 28px 25px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7,29,47,.07);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

    .vds-card:hover {
        transform: translateY(-7px);
        border-color: rgba(22,184,166,.45);
        box-shadow: 0 24px 55px rgba(7,29,47,.12);
    }

    .vds-card.featured {
        border-color: rgba(22,184,166,.55);
    }

    .vds-card h3 {
        margin-top: 8px;
        font-family: "Manrope", sans-serif;
        color: var(--navy);
        font-size: 1.35rem;
    }

    .vds-card > p {
        min-height: 70px;
        margin-top: 10px;
        color: var(--muted);
        font-size: .8rem;
    }

    .vds-card .pricing-features {
        flex: 1;
    }

.whatsapp-quote {
    cursor: pointer;
}

/* Tablet/small laptop: nav becomes menu and hero chart is removed rather than stacked. */
@media (max-width: 1120px) {
    .site-header .nav-wrapper {
        grid-template-columns: 1fr auto auto;
        gap: 12px;
    }

    .site-header .main-nav {
        position: fixed;
        inset: 88px 18px auto;
        display: grid;
        gap: 4px;
        justify-self: stretch;
        white-space: normal;
    }

    .site-header .header-actions {
        display: none;
    }

    .site-header .mobile-header-actions,
    .site-header .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 820px;
        margin-inline: auto;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-content {
        max-width: 780px;
    }

    .hero-section {
        min-height: auto;
        padding-bottom: 95px;
    }

    .about-grid-refined {
        grid-template-columns: 1fr;
        max-width: 820px;
    }

    .about-visual {
        width: 100%;
    }

    .coverage-card-static {
        margin-inline: auto;
    }
}

@media (max-width: 860px) {
    .site-header .nav-wrapper {
        min-height: 82px;
    }

    .site-header .main-nav {
        inset-top: 82px;
    }

    .site-header .brand-logo {
        width: 145px;
    }

    .hero-content {
        text-align: left;
    }

        .hero-content h1,
        .hero-content > p {
            margin-inline: 0;
        }

    .hero-actions,
    .hero-trust {
        justify-content: flex-start;
    }

    .vds-intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vds-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .site-header .brand-logo {
        width: 122px;
    }

    .about-section {
        padding: 78px 0;
    }

    .coverage-card-static {
        min-height: 455px;
        padding: 15px;
    }

    .coverage-card-header {
        align-items: flex-start;
    }

        .coverage-card-header strong {
            font-size: .82rem;
        }

    .coverage-network {
        min-height: 350px;
        transform: scale(.83) !important;
        transform-origin: center center;
        margin: -24px -38px;
    }

    .coverage-legend {
        gap: 9px;
        font-size: .52rem;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ===== v16 header/menu, About network and WhatsApp quote refinements ===== */

/* Desktop header now contains logo, centered navigation and Contact Us only. */
.site-header .nav-wrapper {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
}

.site-header .header-actions {
    min-width: 0;
}

    .site-header .header-actions .nav-cta {
        display: inline-flex;
    }

/* WhatsApp icon inside every quotation CTA. */
.quote-button-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quote-whatsapp-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
}

    .quote-whatsapp-icon svg {
        width: 13px;
        height: 13px;
        fill: currentColor;
    }

.pricing-cta.whatsapp-quote {
    gap: 10px;
}

/* About network: keep all content safely inside the card. */
.coverage-card-static {
    max-width: 640px;
    min-height: 590px;
}

.coverage-network {
    width: 100%;
    min-height: 450px;
    margin: 0;
    overflow: hidden;
}

.coverage-node {
    max-width: 112px;
}

.coverage-hub {
    width: 116px;
    height: 116px;
    border-radius: 30px;
}

.coverage-legend {
    position: relative;
    z-index: 8;
    background: linear-gradient(180deg, rgba(7,29,47,0), rgba(7,29,47,.75) 28%);
}

/* Complete hamburger behavior begins at the same breakpoint that switches layout. */
@media (max-width: 1120px) {
    .site-header .nav-wrapper {
        min-height: 82px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px;
    }

    .site-header .brand {
        justify-self: start;
    }

    .site-header .header-actions {
        display: none !important;
    }

    .site-header .mobile-header-actions {
        display: flex !important;
        align-items: center;
        justify-self: end;
        margin: 0;
    }

    .site-header .menu-toggle {
        display: block !important;
        justify-self: end;
        margin: 0;
        position: relative;
        z-index: 1002;
    }

    .site-header .main-nav {
        position: fixed !important;
        top: 82px !important;
        left: 14px !important;
        right: 14px !important;
        bottom: auto !important;
        z-index: 1001;
        max-height: calc(100dvh - 96px);
        padding: 14px;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 4px !important;
        overflow-y: auto;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px;
        background: rgba(5,24,39,.985);
        box-shadow: 0 24px 65px rgba(0,0,0,.38);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

        .site-header .main-nav.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .site-header .main-nav .nav-link {
            width: 100%;
            padding: 12px 13px;
            border-radius: 10px;
            color: #b9c9d2;
            font-size: .9rem;
        }

            .site-header .main-nav .nav-link:hover,
            .site-header .main-nav .nav-link.active {
                color: #fff;
                background: rgba(255,255,255,.055);
            }

            .site-header .main-nav .nav-link::after {
                display: none;
            }

    .mobile-menu-contact {
        display: grid !important;
    }

    .about-grid-refined {
        max-width: 860px;
    }

    .coverage-card-static {
        width: min(100%, 640px);
        margin-inline: auto;
    }
}

@media (max-width: 620px) {
    .site-header .nav-wrapper {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) 40px 40px;
        gap: 8px;
    }

    .site-header .brand-logo {
        width: 124px;
    }

    .site-header .main-nav {
        top: 74px !important;
        left: 8px !important;
        right: 8px !important;
        max-height: calc(100dvh - 84px);
    }

    .coverage-card-static {
        min-height: 510px;
        padding: 15px;
        border-radius: 26px;
    }

    .coverage-card-header {
        padding-bottom: 13px;
    }

        .coverage-card-header span {
            font-size: .58rem;
        }

        .coverage-card-header strong {
            font-size: .82rem;
        }

    .coverage-live {
        padding: 6px 8px;
        font-size: .58rem;
    }

    .coverage-network {
        min-height: 390px;
        margin: 0 !important;
        transform: none !important;
    }

    .coverage-node {
        width: 68px;
        min-width: 0;
        max-width: 68px;
        padding: 7px 6px 7px 20px;
        border-radius: 10px;
    }

        .coverage-node i {
            left: 7px;
            width: 6px;
            height: 6px;
        }

        .coverage-node strong {
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: .51rem;
        }

        .coverage-node small {
            display: none;
        }

    .coverage-hub {
        width: 84px;
        height: 84px;
        border-radius: 22px;
    }

        .coverage-hub .hub-icon {
            font-size: 1rem;
        }

        .coverage-hub strong {
            font-size: .58rem;
        }

        .coverage-hub small {
            font-size: .4rem;
        }

    .coverage-legend {
        padding-top: 11px;
        gap: 8px;
        font-size: .49rem;
    }

        .coverage-legend i {
            width: 6px;
            height: 6px;
        }

    .pricing-cta.whatsapp-quote {
        min-height: 50px;
    }
}

@media (max-width: 390px) {
    .site-header .brand-logo {
        width: 108px;
    }

    .coverage-card-static {
        min-height: 485px;
        padding-inline: 10px;
    }

    .coverage-network {
        min-height: 370px;
    }

    .coverage-node {
        width: 62px;
        max-width: 62px;
    }
}


/* ===== v17 compact mobile header and cleaner About network card ===== */

/* The mobile header now contains only the logo and hamburger button. */
.site-header .mobile-header-actions,
.site-header .mobile-call {
    display: none !important;
}

/* Make the network card read as three clearly separated zones. */
.coverage-card-static {
    min-height: 0;
    padding: 24px 24px 20px;
    display: grid;
    grid-template-rows: auto minmax(390px, 1fr) auto;
    gap: 16px;
}

.coverage-card-header {
    margin: 0;
    padding: 0 4px 16px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

    .coverage-card-header > div:first-child {
        min-width: 0;
    }

    .coverage-card-header strong {
        line-height: 1.35;
    }

.coverage-live {
    flex: 0 0 auto;
    margin-top: 1px;
}

.coverage-network {
    min-height: 390px;
    margin: 0 !important;
    border-radius: 18px;
    overflow: hidden;
}

/* Remove the dark axis/shadow under the Karachi hub. */
.coverage-hub {
    box-shadow: 0 0 0 9px rgba(27,205,191,.055), 0 14px 28px rgba(0,0,0,.16) !important;
}

.coverage-legend {
    margin: 0;
    padding: 15px 4px 0;
    border-top: 1px solid rgba(255,255,255,.09);
    background: transparent !important;
    justify-content: center;
    gap: 12px 18px;
    line-height: 1.4;
}

/* Tablet/mobile hamburger alignment after removing the separate call button. */
@media (max-width: 1120px) {
    .site-header .nav-wrapper {
        grid-template-columns: minmax(0, 1fr) auto !important;
    }

    .site-header .menu-toggle {
        grid-column: 2;
    }

    .coverage-card-static {
        grid-template-rows: auto minmax(410px, 1fr) auto;
    }
}

@media (max-width: 620px) {
    .site-header .nav-wrapper {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) 40px !important;
        gap: 10px;
    }

    .coverage-card-static {
        min-height: 0 !important;
        padding: 17px 15px 15px;
        grid-template-rows: auto 350px auto;
        gap: 13px;
        border-radius: 26px;
    }

    .coverage-card-header {
        padding: 0 2px 13px;
        gap: 10px;
    }

        .coverage-card-header span {
            font-size: .55rem;
            letter-spacing: .1em;
        }

        .coverage-card-header strong {
            max-width: 220px;
            font-size: .79rem;
        }

    .coverage-live {
        padding: 6px 8px;
        font-size: .56rem;
    }

    .coverage-network {
        min-height: 350px !important;
        height: 350px !important;
        border-radius: 15px;
    }

    .coverage-hub {
        width: 78px !important;
        height: 78px !important;
        border-radius: 21px !important;
        box-shadow: 0 0 0 7px rgba(27,205,191,.05), 0 10px 20px rgba(0,0,0,.13) !important;
    }

    .coverage-node {
        width: 66px !important;
        max-width: 66px !important;
        padding: 7px 5px 7px 19px !important;
    }

    .coverage-legend {
        padding: 12px 2px 0 !important;
        gap: 8px 12px !important;
        font-size: .47rem !important;
    }
}

@media (max-width: 390px) {
    .coverage-card-static {
        grid-template-rows: auto 330px auto;
        padding-inline: 11px;
    }

    .coverage-network {
        min-height: 330px !important;
        height: 330px !important;
    }

    .coverage-card-header strong {
        max-width: 180px;
    }
}


/* ===== v18 About network redesign ===== */
.coverage-card-v18 {
    width: min(100%, 590px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(83, 192, 199, .2);
    border-radius: 30px;
    background: radial-gradient(circle at 68% 46%, rgba(18, 179, 171, .09), transparent 31%), linear-gradient(145deg, #08283b 0%, #0a344a 100%);
    color: #fff;
    box-shadow: 0 28px 70px rgba(7, 29, 47, .17);
}

.coverage-v18-header {
    min-height: 92px;
    padding: 24px 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    background: rgba(3, 24, 38, .22);
}

    .coverage-v18-header span {
        display: block;
        color: #64aac0;
        font-size: .66rem;
        font-weight: 700;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .coverage-v18-header h3 {
        margin: 6px 0 0;
        font-family: "Manrope", sans-serif;
        font-size: 1.15rem;
        line-height: 1.2;
    }

.coverage-v18-status {
    flex: 0 0 auto;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(61, 222, 174, .15);
    border-radius: 999px;
    background: rgba(23, 187, 151, .1);
    color: #65e7bd;
    font-size: .7rem;
}

    .coverage-v18-status i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #44dda9;
        box-shadow: 0 0 0 6px rgba(68, 221, 169, .09);
    }

.coverage-v18-desktop {
    position: relative;
    height: 450px;
    margin: 14px 22px 4px;
    overflow: hidden;
    border-radius: 22px;
}

.coverage-v18-grid {
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(rgba(83, 180, 190, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 180, 190, .08) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at 50% 56%, #000 25%, transparent 78%);
}

.coverage-v18-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.coverage-link {
    stroke: url(#coverageGradient);
    stroke-width: 2;
    stroke-linecap: round;
    opacity: .78;
}

.coverage-link-secondary {
    stroke-width: 1.2;
    opacity: .36;
}

.coverage-v18-node,
.coverage-v18-hub {
    position: absolute;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.coverage-v18-node {
    min-width: 116px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(39, 207, 197, .31);
    border-radius: 14px;
    background: rgba(7, 47, 65, .92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

    .coverage-v18-node > i {
        width: 8px;
        height: 8px;
        flex: 0 0 auto;
        border-radius: 50%;
        background: #40ddb5;
        box-shadow: 0 0 0 6px rgba(64, 221, 181, .08);
    }

    .coverage-v18-node strong,
    .coverage-v18-node small {
        display: block;
        white-space: nowrap;
    }

    .coverage-v18-node strong {
        font-size: .72rem;
        line-height: 1.1;
    }

    .coverage-v18-node small {
        margin-top: 4px;
        color: #7999a9;
        font-size: .55rem;
    }

.coverage-v18-hub {
    width: 138px;
    height: 122px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 255, 231, .3);
    border-radius: 28px;
    background: linear-gradient(145deg, #2bd3c3, #13b6ae);
    color: #032723;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.coverage-v18-cloud {
    font-size: 1.1rem;
    line-height: 1;
}

.coverage-v18-hub strong {
    margin-top: 8px;
    font-family: "Manrope", sans-serif;
    font-size: .91rem;
}

.coverage-v18-hub small {
    margin-top: 5px;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.coverage-v18-mobile {
    display: none;
}

.coverage-v18-footer {
    min-height: 64px;
    padding: 16px 24px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    background: rgba(3, 24, 38, .2);
}

    .coverage-v18-footer span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #86a2b0;
        font-size: .63rem;
        white-space: nowrap;
    }

    .coverage-v18-footer i,
    .coverage-v18-mobile-grid article > i {
        width: 7px;
        height: 7px;
        flex: 0 0 auto;
        border-radius: 50%;
    }

    .coverage-v18-footer .core,
    .coverage-v18-mobile-grid .core {
        background: #1dcfc1;
    }

    .coverage-v18-footer .data,
    .coverage-v18-mobile-grid .data {
        background: #52e2b8;
    }

    .coverage-v18-footer .edge,
    .coverage-v18-mobile-grid .edge,
    .coverage-v18-mobile-grid .regional {
        background: #43a8cf;
    }

@media (max-width: 1050px) {
    .coverage-card-v18 {
        width: min(100%, 640px);
    }
}

@media (max-width: 720px) {
    .about-visual {
        min-height: auto !important;
    }

    .coverage-card-v18 {
        width: 100%;
        border-radius: 22px;
        box-shadow: 0 18px 46px rgba(7, 29, 47, .13);
    }

    .coverage-v18-header {
        min-height: auto;
        padding: 20px 18px 17px;
        align-items: flex-start;
    }

        .coverage-v18-header span {
            font-size: .57rem;
        }

        .coverage-v18-header h3 {
            font-size: 1rem;
        }

    .coverage-v18-status {
        padding: 7px 10px;
        font-size: .61rem;
    }

    .coverage-v18-desktop {
        display: none;
    }

    .coverage-v18-mobile {
        padding: 18px;
        display: block;
    }

    .coverage-v18-mobile-core {
        padding: 15px;
        display: grid;
        grid-template-columns: 42px 1fr auto;
        gap: 12px;
        align-items: center;
        border: 1px solid rgba(80, 227, 209, .25);
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(37, 207, 193, .17), rgba(12, 75, 91, .44));
    }

        .coverage-v18-mobile-core > span {
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border-radius: 13px;
            background: #25cabc;
            color: #032723;
            font-size: 1rem;
        }

        .coverage-v18-mobile-core strong,
        .coverage-v18-mobile-core small {
            display: block;
        }

        .coverage-v18-mobile-core strong {
            font-size: .83rem;
        }

        .coverage-v18-mobile-core small {
            margin-top: 3px;
            color: #84a7b5;
            font-size: .62rem;
        }

        .coverage-v18-mobile-core > i {
            padding: 5px 8px;
            border-radius: 999px;
            background: rgba(64, 221, 181, .11);
            color: #62e5ba;
            font-size: .55rem;
            font-style: normal;
            font-weight: 800;
            text-transform: uppercase;
        }

    .coverage-v18-mobile-grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

        .coverage-v18-mobile-grid article {
            min-width: 0;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 9px;
            border: 1px solid rgba(255, 255, 255, .075);
            border-radius: 13px;
            background: rgba(255, 255, 255, .035);
        }

        .coverage-v18-mobile-grid strong,
        .coverage-v18-mobile-grid small {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .coverage-v18-mobile-grid strong {
            font-size: .69rem;
        }

        .coverage-v18-mobile-grid small {
            margin-top: 3px;
            color: #7897a7;
            font-size: .53rem;
        }

    .coverage-v18-footer {
        min-height: auto;
        padding: 13px 14px 15px;
        gap: 8px 13px;
    }

        .coverage-v18-footer span {
            font-size: .54rem;
        }
}

@media (max-width: 390px) {
    .coverage-v18-mobile-grid {
        grid-template-columns: 1fr;
    }

    .coverage-v18-footer span:last-child {
        width: 100%;
        justify-content: center;
    }
}
