    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --navy: #0A2D6E;
        --blue: #1E5BAE;
        --teal: #0AAECC;
        --green: #2EAD6E;
        --green-dk: #1B7A4A;

        --blue-pale: #E8F2FB;
        --teal-pale: #E0F7FC;
        --green-pale: #E4F7EE;

        --off: #F6F9FC;
        --white: #FFFFFF;
        --td: #0C1824;
        --tm: #344A60;
        --ts: #6A7E92;

        --bdr: rgba(10, 45, 110, 0.10);
        --bdr2: rgba(10, 45, 110, 0.20);
        --fd: 'DM Sans', sans-serif;
        --fb: 'DM Sans', sans-serif;
        --ease: 0.26s cubic-bezier(.4, 0, .2, 1);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--fb);
        color: var(--td);
        background: var(--white);
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        text-decoration: none;
    }

    /* Nav */
    .nav-outer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--bdr);
        transition: box-shadow var(--ease);
    }

    .nav-inner {
        max-width: 1220px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.5rem;
        height: 68px;
        gap: 1rem;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* 
    .nav-logo svg {
        height: 38px;
        width: auto;
    } */

    .nav-wordmark {
        font-family: var(--fd);
        font-weight: 700;
        font-size: 24px;
        color: var(--navy);
        letter-spacing: -.3px;
        white-space: nowrap;
    }

    .nav-wordmark span {
        color: var(--green);
        font-size: 24px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        flex: 1;
        justify-content: center;
    }

    .nav-links>li {
        position: relative;
    }

    .nav-links>li>a {
        font-family: var(--fb);
        font-size: 14px;
        font-weight: 500;
        color: var(--tm);
        padding: 6px 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: var(--ease);
    }

    .nav-links>li>a:hover,
    .nav-links>li>a.active {
        color: var(--blue);
        background: var(--blue-pale);
    }

    /* .nav-links>li>a svg.chevron {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        flex-shrink: 0;
        transition: transform var(--ease);
    } */

    /* .nav-drop {
        position: absolute;
        top: calc(100% + 6px);
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border: 1px solid var(--bdr2);
        border-radius: 10px;
        box-shadow: 0 8px 28px rgba(10, 45, 110, 0.12);
        min-width: 230px;
        opacity: 0;
        visibility: hidden;
        transition: var(--ease);
        z-index: 300;
        padding: 8px 0;
    }

    .nav-links>li:hover .nav-drop {
        opacity: 1;
        visibility: visible;
    }

    .nav-links>li:hover>a svg.chevron {
        transform: rotate(180deg);
    }

    .nav-drop a {
        display: block;
        padding: 9px 18px;
        font-size: 13.5px;
        color: var(--tm);
        font-family: var(--fb);
        font-weight: 400;
        transition: var(--ease);
    }

    .nav-drop a:hover {
        background: var(--blue-pale);
        color: var(--blue);
    } */

    .nav-cta {
        background: var(--navy);
        color: white;
        padding: 9px 20px;
        border-radius: 6px;
        font-size: 13.5px;
        font-weight: 500;
        font-family: var(--fb);
        white-space: nowrap;
        flex-shrink: 0;
        transition: var(--ease);
    }

    .nav-cta:hover {
        background: var(--blue);
    }

    .ham {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        flex-shrink: 0;
    }

    .ham span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        margin: 5px 0;
        border-radius: 2px;
        transition: var(--ease);
    }

    .ham.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .ham.open span:nth-child(2) {
        opacity: 0;
    }

    .ham.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Menu */
    .mob-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--teal-pale);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

        display: flex;
        flex-direction: column;
        gap: 8px;

        padding: 0 20px;
        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition: all .35s ease;
        z-index: 999;
    }

    .mob-menu.open {
        max-height: 400px;
        padding: 20px;
        opacity: 1;
        visibility: visible;
    }

    .mob-menu a {
        text-decoration: none;
        color: #12263a;
        font-weight: 600;
        padding: 8px;
        border-radius: 14px;
        transition: all .25s ease;
    }

    .mob-menu a:hover {
        /* transform: translateX(6px); */
    }

    .ham.close-icon {
        font-size: 2.5rem;
        line-height: 1;
        font-weight: 400;
    }

    .ham.close-icon span {
        display: none;
    }

    /* .mob-section-title {
        font-family: var(--fd);
        font-size: 11px;
        font-weight: 700;
        color: var(--ts);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 0 6px;
    }

    .mob-link {
        display: block;
        font-size: 15px;
        color: var(--td);
        padding: 10px 0;
        border-bottom: 1px solid var(--bdr);
        font-weight: 500;
        font-family: var(--fb);
    }

    .mob-link:hover {
        color: var(--blue);
    }

    .mob-sub {
        padding-left: 14px;
    }

    .mob-sub .mob-link {
        font-size: 14px;
        color: var(--tm);
        font-weight: 400;
    }

    .mob-cta {
        margin-top: 1.5rem;
        background: var(--navy);
        color: white;
        padding: 13px;
        border-radius: 8px;
        text-align: center;
        font-family: var(--fd);
        font-size: 15px;
        font-weight: 600;
    } */

    /* Page Routing (show/hide sections) */
    .page {
        display: none;
    }

    .page.active {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 80px 24px 40px;
        background: var(--white);
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-geo {
        position: absolute;
        top: 0;
        right: 0;
        width: 52%;
        height: 100%;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-leaf {
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(46, 173, 110, .07) 0%, transparent 65%);
        z-index: 0;
    }

    .hero-inner {
        max-width: 1220px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid rgba(10, 174, 204, .3);
        background: var(--teal-pale);
        padding: 5px 14px;
        border-radius: 100px;
        margin-bottom: 1.5rem;
        font-size: 11.5px;
        font-weight: 500;
        color: #077A94;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--teal);
        display: block;
    }

    .hero h1 {
        font-family: arial;
        font-size: clamp(34px, 5vw, 58px);
        font-weight: 800;
        color: var(--navy);
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 1.4rem;
    }

    .h-blue {
        color: var(--blue);
    }

    .h-green {
        color: var(--green);
    }

    /* .h-teal {
        -webkit-text-stroke: 2px var(--teal);
        color: transparent;
    } */

    .hero-desc {
        font-size: 16.5px;
        line-height: 1.72;
        color: var(--tm);
        max-width: 480px;
        margin-bottom: 2.5rem;
        font-weight: 300;
    }

    .hero-acts {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--navy);
        color: white;
        padding: 13px 28px;
        border-radius: 6px;
        font-family: var(--fb);
        font-size: 14.5px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: none;
        cursor: pointer;
        transition: var(--ease);
    }

    .btn-primary:hover {
        background: var(--blue);
        transform: translateY(-1px);
    }

    .btn-outline {
        background: transparent;
        color: var(--navy);
        padding: 13px 28px;
        border-radius: 6px;
        font-family: var(--fb);
        font-size: 14.5px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        border: 1.5px solid var(--bdr2);
        transition: var(--ease);
    }

    .btn-outline:hover {
        background: var(--blue-pale);
        border-color: var(--blue);
        color: var(--blue);
    }

    /* .hero-stats {
        display: flex;
        gap: 2.5rem;
        margin-top: 2.8rem;
        padding-top: 2rem;
        border-top: 1px solid var(--bdr);
        flex-wrap: wrap;
    }

    .stat-num {
        font-family: var(--fd);
        font-size: 28px;
        font-weight: 800;
        color: var(--navy);
        letter-spacing: -.5px;
        line-height: 1;
    }

    .stat-num .u {
        font-size: 17px;
        color: var(--green);
    }

    .stat-lbl {
        font-size: 11.5px;
        color: var(--ts);
        margin-top: 4px;
        text-transform: uppercase;
        letter-spacing: .5px;
    } */

    /* .hero-visual {
        margin-top: -0px;
    } */

    /* .hcard {
        background: white;
        border: 1px solid var(--bdr);
        border-radius: 12px;
        padding: 1.25rem 1.4rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(10, 45, 110, .06);
    }

    .hcard-stripe {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
    }

    .s-blue {
        background: linear-gradient(180deg, var(--blue), var(--teal));
    }

    .s-green {
        background: linear-gradient(180deg, var(--green), var(--teal));
    }

    .hcard-tag {
        font-size: 10.5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .7px;
        margin-bottom: 5px;
    }

    .t-blue {
        color: var(--blue);
    }

    .t-green {
        color: var(--green-dk);
    }

    .hcard-title {
        font-family: var(--fd);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 10px;
    }

    .bar-wrap {
        margin-bottom: 8px;
    }

    .bar-lbl {
        display: flex;
        justify-content: space-between;
        font-size: 11px;
        color: var(--ts);
        margin-bottom: 3px;
    }

    .bar-track {
        height: 5px;
        background: var(--off);
        border-radius: 3px;
    }

    .bar-fill {
        height: 100%;
        border-radius: 3px;
    }

    .bf-blue {
        background: linear-gradient(90deg, var(--blue), var(--teal));
    }

    .bf-green {
        background: linear-gradient(90deg, var(--green), var(--teal));
    }

    .metric-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .metric-box {
        background: var(--off);
        padding: 10px 12px;
        border-radius: 8px;
    }

    .metric-val {
        font-family: var(--fd);
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
    }

    .metric-lbl {
        font-size: 10px;
        color: var(--ts);
        text-transform: uppercase;
        letter-spacing: .4px;
        margin-top: 2px;
    }

    .pill-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }

    .pill {
        font-size: 11px;
        font-weight: 500;
        padding: 3px 10px;
        border-radius: 100px;
    }

    .p-blue {
        background: var(--blue-pale);
        color: var(--blue);
        border: 1px solid rgba(30, 91, 174, .2);
    }

    .p-green {
        background: var(--green-pale);
        color: var(--green-dk);
        border: 1px solid rgba(46, 173, 110, .2);
    }

    .p-teal {
        background: var(--teal-pale);
        color: #077A94;
        border: 1px solid rgba(10, 174, 204, .2);
    }

    .float-badge {
        position: absolute;
        top: -11px;
        right: 1.2rem;
        background: var(--green-dk);
        color: white;
        font-size: 10px;
        font-weight: 600;
        padding: 4px 11px;
        border-radius: 100px;
        letter-spacing: .4px;
        animation: pulseG 3s ease infinite;
    }

    @keyframes pulseG {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .82;
            transform: scale(1.04);
        }
    } */

    /* Section Commons */
    .sec {
        padding: 40px 24px;
    }

    .inner {
        max-width: 1220px;
        margin: 0 auto;
    }

    .sec-lbl {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .sec-lbl::before {
        content: '';
        height: 2px;
        width: 22px;
        border-radius: 1px;
        background: currentColor;
        display: block;
    }

    .sl-blue {
        color: var(--blue);
    }

    .sl-teal {
        color: #077A94;
    }

    .sl-green {
        color: var(--green-dk);
    }

    .sec-title {
        font-family: var(--fd);
        font-size: clamp(24px, 3.5vw, 42px);
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .sec-sub {
        font-size: 15.5px;
        color: var(--ts);
        line-height: 1.72;
        max-width: 540px;
        font-weight: 300;
    }

    /* Services (Home Page) */
    .svc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 3.5rem;
    }

    .svc-card {
        padding: 2rem 1.6rem;
        border: 1px solid rgba(30, 91, 174, 0.15);
        border-radius: 16px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(10, 45, 110, 0.06);
    }

    .svc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--blue), var(--teal));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .svc-card::after {
        display: none;
    }

    .sc-blue::before {
        background: linear-gradient(90deg, #1E5BAE, #0AAECC);
    }

    .sc-teal::before {
        background: linear-gradient(90deg, #0AAECC, #1E5BAE);
    }

    .sc-green::before {
        background: linear-gradient(90deg, #2EAD6E, #0AAECC);
    }

    .svc-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(10, 45, 110, 0.12);
        background: rgba(30, 91, 174, 0.3);
    }

    .svc-icon {
        width: 46px;
        height: 46px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        margin-bottom: 1.1rem;
    }

    /* .si-blue {
        background: var(--blue-pale);
    }

    .si-teal {
        background: var(--teal-pale);
    }

    .si-green {
        background: var(--green-pale);
    } */

    .svc-name {
        font-family: var(--fd);
        font-size: 17px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 7px;
    }

    .svc-desc {
        font-size: 13.5px;
        line-height: 1.65;
        color: var(--ts);
        font-weight: 300;
        margin-bottom: 1.1rem;
    }

    .svc-lnk {
        font-size: 13px;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: var(--ease);
    }

    .svc-lnk:hover {
        gap: 8px;
    }

    .lnk-blue {
        color: var(--blue);
    }

    .lnk-green {
        color: var(--green-dk);
    }

    /* .svc-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 1.4rem;
        transition: all 0.4s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    } 

    .svc-card:hover .svc-icon {
        transform: scale(1.12) rotate(6deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }*/

    .si-blue {
        background: linear-gradient(135deg, #E8F2FB, #D0E6F5);
        color: #1E5BAE;
    }

    .si-teal {
        background: linear-gradient(135deg, #E0F7FC, #BAEEF7);
        color: #0AAECC;
    }

    .si-green {
        background: linear-gradient(135deg, #E4F7EE, #C5EFD8);
        color: #2EAD6E;
    }

    /* Why Us */
    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
        align-items: center;
    }

    .why-pills {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .why-pill {
        background: white;
        border: 1px solid var(--bdr);
        border-radius: 12px;
        padding: 1.2rem 1.4rem;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        transition: var(--ease);
    }

    .why-pill:hover {
        border-color: rgba(10, 174, 204, .4);
        box-shadow: 0 4px 18px rgba(10, 45, 110, .07);
    }

    .wp-icon {
        font-size: 1.2rem;
        color: var(--navy);
        flex-shrink: 0;
        margin-top: 1px;
    }

    .wp-title {
        font-family: var(--fd);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .wp-desc {
        font-size: 13px;
        color: var(--ts);
        line-height: 1.55;
        font-weight: 300;
    }

    .why-main {
        background: var(--navy);
        color: white;
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
    }

    .why-main::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(10, 174, 204, .08);
    }

    .why-main::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(46, 173, 110, .07);
    }

    .why-main-title {
        font-family: var(--fd);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .why-steps {
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .why-step {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        opacity: .88;
    }

    .why-num {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
    }

    .wn-teal {
        background: rgba(10, 174, 204, .25);
        color: var(--teal);
    }

    .wn-green {
        background: rgba(46, 173, 110, .25);
        color: #5FD4A0;
    }

    /* Tech Stack */
    /* .stack-section {
        margin-bottom: 2rem;
    }

    .stack-section i {
        font-size: 24px;
    } */

    .stack-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 3rem;
    }

    .tech-chip {
        background: var(--off);
        border: 1px solid var(--bdr);
        border-radius: 6px;
        padding: 14px 10px;
        text-align: center;
        font-size: 12.5px;
        font-weight: 500;
        color: var(--tm);
        transition: var(--ease);
        cursor: default;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tech-chip span {
        padding-left: 4px;
        padding-right: 4px;
    }

    .tech-chip:hover {
        background: var(--teal-pale);
        border-color: rgba(10, 174, 204, .4);
        color: #077A94;
    }

    .tech-chip .ti {
        font-size: 22px;
        display: block;
        margin-bottom: 7px;
    }

    /* Hire (home section) */
    /* .hire-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
        margin-top: 3rem;
    }

    .hire-card {
        background: white;
        border: 1px solid var(--bdr);
        border-radius: 12px;
        padding: 1.5rem 1rem;
        text-align: center;
        transition: var(--ease);
        display: block;
        cursor: pointer;
    }

    .hire-card:hover {
        border-color: var(--teal);
        box-shadow: 0 6px 22px rgba(10, 174, 204, .12);
        transform: translateY(-2px);
    }

    .hc-icon {
        font-size: 28px;
        margin-bottom: 10px;
        display: block;
    }

    .hc-name {
        font-family: var(--fd);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 5px;
    }

    .hc-badge {
        font-size: 11px;
        padding: 3px 9px;
        border-radius: 100px;
        font-weight: 500;
    }

    .hcb-blue {
        background: var(--blue-pale);
        color: var(--blue);
    }

    .hcb-green {
        background: var(--green-pale);
        color: var(--green-dk);
    }

    .hcb-teal {
        background: var(--teal-pale);
        color: #077A94;
    } */

    /* Contact (home) */
    .cta-wrap {
        background: var(--navy);
    }

    .cta-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
        padding: 88px 1.5rem;
    }

    .cta-title {
        font-family: var(--fd);
        font-size: clamp(24px, 3.8vw, 42px);
        font-weight: 700;
        color: white;
        letter-spacing: 1px;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .cta-title .ct {
        color: var(--teal);
    }

    .cta-title .cg {
        color: #5FD4A0;
    }

    .cta-desc {
        font-size: 15.5px;
        color: rgba(255, 255, 255, .6);
        line-height: 1.72;
        font-weight: 300;
        margin-bottom: 2rem;
    }

    .cta-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, .78);
    }

    .cta-ico {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
    }

    .cta-item a:hover {
        text-decoration: underline;
    }

    .ci-teal {
        background: rgba(10, 174, 204, .2);
    }

    .ci-green {
        background: rgba(46, 173, 110, .2);
    }

    .form-box {
        background: white;
        border-radius: 20px;
        padding: 2rem;
    }

    .form-head {
        font-family: var(--fd);
        font-size: 19px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 1.25rem;
        letter-spacing: -.3px;
    }

    .form-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .form-grp {
        margin-bottom: 12px;
    }

    .form-lbl {
        display: block;
        font-size: 11px;
        font-weight: 600;
        color: var(--tm);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 5px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        width: 100%;
        padding: 10px 13px;
        border: 1px solid var(--bdr2);
        border-radius: 6px;
        font-family: var(--fb);
        font-size: 13.5px;
        color: var(--td);
        background: white;
        outline: none;
        transition: var(--ease);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(10, 174, 204, .12);
    }

    .form-textarea {
        height: 90px;
        resize: vertical;
    }

    .form-btn {
        width: 100%;
        padding: 13px;
        background: var(--navy);
        color: white;
        border: none;
        border-radius: 6px;
        font-family: var(--fd);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--ease);
        letter-spacing: -.2px;
    }

    .form-btn:hover {
        background: var(--blue);
    }

    .required {
        color: #e53935;
        font-size: 0.95em;
        vertical-align: top;
    }

    /* Services Page */
    .svc-page {
        padding-top: 68px;
    }

    .page-hero {
        background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
        padding: 60px 1.5rem 50px;
        text-align: center;
    }

    .page-hero h1 {
        font-family: var(--fd);
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .page-hero p {
        color: rgba(255, 255, 255, .7);
        font-size: 16px;
        max-width: 560px;
        margin: 0 auto;
        font-weight: 300;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 14px;
        font-size: 13px;
        color: rgba(255, 255, 255, .5);
    }

    .breadcrumb a {
        color: rgba(255, 255, 255, .7);
    }

    .breadcrumb a:hover {
        color: white;
    }

    .bc-sep {
        color: rgba(255, 255, 255, .3);
    }

    .svc-detail-wrap {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 2.5rem;
        max-width: 1220px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .svc-sidebar {
        position: sticky;
        top: 88px;
        align-self: start;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .svc-sidebar-list {
        background: white;
        border: 1px solid var(--bdr);
        border-radius: 14px;
        padding: 8px;
        overflow: hidden;
    }

    .svc-sidebar-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        margin: 4px;
        font-size: 13.5px;
        color: var(--tm);
        font-family: var(--fb);
        font-weight: 400;
        border-radius: 9px;
        border-left: none;
        text-decoration: none;
        transition: all 0.18s;
    }

    .svc-sidebar-list a::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--bdr);
        flex-shrink: 0;
        transition: background 0.18s;
    }

    .svc-sidebar-list a:hover {
        color: var(--blue);
        background: var(--blue-pale);
    }

    .svc-sidebar-list a:hover::before,
    .svc-sidebar-list a.active::before {
        background: var(--blue);
    }

    .svc-sidebar-list a.active {
        color: var(--navy);
        font-weight: 600;
        background: var(--blue-pale);
    }

    /* .why-box {
        background: linear-gradient(135deg, var(--navy), var(--blue));
        border-radius: 14px;
        padding: 1.4rem 1.5rem;
    }

    .why-box h4 {
        font-family: var(--fd);
        font-size: 11.5px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 0.09em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .why-box ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .why-box ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
    }

    .why-box ul li::before {
        content: '✓';
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 1px solid rgba(10, 174, 204, 0.5);
        background: rgba(10, 174, 204, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 10px;
        color: var(--teal);
        line-height: 18px;
        text-align: center;
    } */

    /* .svc-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .svc-header-icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        background: var(--blue-pale);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .svc-tag {
        display: inline-block;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        background: var(--teal-pale);
        color: var(--teal);
        margin-bottom: 6px;
    } */

    .svc-content {
        display: none;
    }

    .svc-content.active {
        display: block;
    }

    .svc-content-img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        margin-bottom: 2rem;
        overflow: hidden;
        /* background: linear-gradient(135deg, var(--blue-pale), var(--teal-pale)); */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 72px;
    }

    .svc-content-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .svc-content h3 {
        font-family: var(--fd);
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 1rem;
        letter-spacing: -.5px;
        line-height: 1.2;
    }

    .svc-content h4 {
        font-family: var(--fd);
        font-size: 16px;
        font-weight: 700;
        color: var(--navy);
        margin: 2rem 0 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .svc-content h4::before {
        content: '';
        display: inline-block;
        width: 3px;
        height: 18px;
        border-radius: 2px;
        background: linear-gradient(180deg, var(--teal), var(--blue));
        flex-shrink: 0;
    }

    .svc-content p {
        font-size: 15px;
        line-height: 1.75;
        color: var(--tm);
        margin-bottom: 1rem;
        font-weight: 300;
    }

    .svc-content ul {
        list-style: none;
        margin-bottom: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .svc-content ul li {
        display: flex;
        flex-direction: column;
        /* gap: 12px; */
        /* align-items: flex-start; */
        font-size: 14.5px;
        color: var(--tm);
        line-height: 1.65;
        font-weight: 300;
        padding: 12px 14px;
        background: var(--white);
        border: 1px solid var(--bdr);
        border-radius: 10px;
        transition: border-color 0.18s;
    }

    .svc-content ul li:hover {
        border-color: rgba(10, 174, 204, 0.35);
    }

    .svc-content ul li span {
        padding-left: 24px;
    }

    /* .svc-content ul li::before {
        content: '▸';
        color: var(--teal);
        flex-shrink: 0;
        font-size: 12px;
        margin-top: 3px;
    } */

    .svc-content ul li strong {
        color: var(--navy);
        font-weight: 600;
    }

    /* Mobile Browse Services Button - Improved Style */
    .svc-mob-toggle {
        display: none;
        width: 100%;
        padding: 16px 20px;
        background: white;
        color: var(--navy);
        border: 1.5px solid var(--bdr);
        border-radius: 12px;
        font-family: var(--fd);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 1rem;
        transition: all 0.25s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .svc-mob-toggle:hover {
        border-color: var(--blue);
        box-shadow: 0 4px 12px rgba(10, 174, 204, 0.15);
    }

    .svc-mob-toggle.open {
        background: var(--navy);
        color: white;
        border-color: var(--navy);
    }

    /* Arrow Icon */
    .svc-mob-toggle::after {
        content: '▼';
        font-size: 14px;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .svc-mob-toggle.open::after {
        transform: rotate(180deg);
    }

    .svc-cta-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, var(--navy), var(--blue));
        border-radius: 14px;
        padding: 1.4rem 1.75rem;
        margin-top: 2.25rem;
        gap: 1rem;
    }

    .svc-cta-bar p {
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        margin: 0;
        font-weight: 300;
    }

    .svc-cta-bar strong {
        display: block;
        color: #fff;
        font-family: var(--fd);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .svc-cta-btn {
        background: var(--teal);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 10px 22px;
        font-family: var(--fd);
        font-size: 13.5px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        flex-shrink: 0;
        transition: opacity 0.18s;
    }

    .svc-cta-btn:hover {
        opacity: 0.88;
    }

    /* OUTCOMES */

    .svc-outcomes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }

    .outcome-card {
        padding: 32px 24px;
        border-radius: 20px;
        background: linear-gradient(to right, var(--blue-pale), var(--teal-pale));
        color: var(--navy);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .outcome-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .outcome-card i {
        font-size: 36px;
        margin-bottom: 12px;
        display: block;
        color: var(--blue);
    }

    .outcome-card h4 {
        margin: 16px 0 10px;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .outcome-card p {
        font-size: 14.5px;
        line-height: 1.6;
        opacity: 0.9;
    }

    @media (max-width: 992px) {
        .svc-outcomes {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0 2rem;
        }

        .outcome-card {
            padding: 28px 20px;
        }
    }

    @media (max-width: 576px) {
        .svc-outcomes {
            grid-template-columns: 1fr;
            gap: 18px;
            padding: 0 1.2rem;
        }

        .outcome-card {
            padding: 24px 18px;
        }

        .outcome-card i {
            font-size: 32px;
        }
    }

    /* Hire Page */
    .hire-page {
        padding-top: 68px;
    }

    .hire-tabs {
        background: white;
        border-bottom: 2px solid var(--bdr);
        position: sticky;
        top: 68px;
        z-index: 150;
    }

    .hire-tabs-inner {
        max-width: 1220px;
        margin: 0 auto;
        padding: 0.5rem;
        display: flex;
        gap: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hire-tabs-inner::-webkit-scrollbar {
        display: none;
    }

    .hire-tab {
        padding: 8px 20px !important;
        font-family: var(--fb);
        font-size: 14px;
        font-weight: 500;
        color: var(--navy);
        border: 1px solid navy;
        border-radius: 8px;
        cursor: pointer;
        background: none;
        cursor: pointer;
        white-space: nowrap;
        margin: 2px 8px;
        transition: var(--ease);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hire-tab i {
        font-size: 18px;
        transition: color 0.18s;
    }

    .hire-tab:hover {
        color: var(--blue);
    }

    .hire-tab.active {
        background: var(--navy);
        color: var(--white);
        font-weight: 600;
    }

    .hire-section {
        display: none;
        padding: 40px 20px;
    }

    .hire-section.active {
        display: block;
    }

    .hire-sec-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .hire-info h2 {
        font-family: var(--fd);
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .hire-info>p {
        font-size: 15.5px;
        color: var(--tm);
        line-height: 1.72;
        font-weight: 300;
        margin-bottom: 1.5rem;
    }

    .hire-info h4 {
        font-family: var(--fd);
        font-size: 15px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: .5rem;
        margin-top: 1.25rem;
    }

    .hire-info h4:first-of-type {
        margin-top: 0;
    }

    .hire-info ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 1rem;
    }

    .hire-info ul li {
        display: flex;
        gap: 8px;
        font-size: 14px;
        color: var(--tm);
        font-weight: 300;
        line-height: 2;
    }

    .hire-info ul li::before {
        content: '✦';
        color: var(--teal);
        font-size: 11px;
        flex-shrink: 0;
        margin-top: 3px;
    }

    #form-message{
        margin-top:15px;
        font-weight:600;
        font-size:15px;
    }

    .hire-form-box {
        background: var(--off);
        border: 1px solid var(--bdr);
        border-radius: 16px;
        padding: 2rem;
    }

    .hire-form-box i {
        font-size: 22px;
    }

    .hire-form-box h3 {
        font-family: var(--fd);
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 1.25rem;
        letter-spacing: -.3px;
    }

    .hire-form-box .form-input,
    .hire-form-box .form-textarea {
        background: white;
    }

    .hire-form-btn {
        width: 100%;
        padding: 13px;
        background: var(--navy);
        color: white;
        border: none;
        border-radius: 6px;
        font-family: var(--fd);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--ease);
    }

    .hire-form-btn:hover {
        background: var(--blue);
    }

    /* ====================== HIRE BENEFITS SECTION ====================== */

    .hire-benefits-wrapper,
    .hire-features-wrapper {
        max-width: 1320px;
        margin: 60px auto 0;
        padding: 0 15px;
    }

    .hire-benefits-wrapper h4.benefits-title {
        font-size: 1.95rem;
        font-weight: 700;
        margin-bottom: 32px;
        text-align: center;
        background: linear-gradient(to right, var(--navy), var(--blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .benefits-title::after {
        content: '';
        display: block;
        width: 90px;
        height: 4px;
        background: linear-gradient(to right, var(--navy), var(--blue));
        margin: 14px auto 0;
        border-radius: 4px;
    }

    /* Benefits - Modern Tag Style */
    .hire-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        margin-bottom: 50px;
    }

    .hire-benefit {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 26px;
        border-radius: 50px;
        background: #ffffff;
        border: 1.5px solid rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        white-space: nowrap;
    }

    .hire-benefit:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(7, 122, 148, 0.15);
        border-color: #077a94;
    }

    .hire-benefit i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 17px;
        background: linear-gradient(to right, var(--navy), var(--blue));
        flex-shrink: 0;
    }

    .hire-benefit span {
        font-weight: 600;
        color: #1a2b3c;
        font-size: 1.03rem;
    }

    /* ====================== FEATURES SECTION ====================== */

    .hire-features-wrapper {
        padding: 70px 15px 60px;
        margin-top: 60px;
        border-top: 1px solid #e5eaf4;
    }

    .hire-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 28px;
    }

    .feature-box {
        background: linear-gradient(to right, var(--navy), var(--blue));
        border-radius: 20px;
        padding: 32px 28px;
        transition: all 0.4s ease;
        height: 100%;
        box-shadow: 0 8px 25px rgba(10, 61, 98, 0.12);
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(10, 61, 98, 0.18);
    }

    .feature-box h3 {
        margin: 0 0 16px 0;
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.35;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-box h3 i {
        font-size: 1.55rem;
        opacity: 0.95;
        flex-shrink: 0;
    }

    .feature-box p {
        margin: 0;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.92);
        font-size: 1.02rem;
    }

    /* ====================== RESPONSIVE IMPROVEMENTS ====================== */

    @media (max-width: 768px) {
        .hire-benefits {
            gap: 12px;
            padding: 0 10px;
        }

        .hire-benefit {
            padding: 12px 18px;
            font-size: 0.96rem;
            gap: 10px;
            flex: 1 1 100%;
            max-width: 100%;
            white-space: normal;
            text-align: center;
            justify-content: center;
        }

        .hire-benefit i {
            width: 30px;
            height: 30px;
            font-size: 15px;
        }

        .hire-benefits-wrapper h4.benefits-title {
            font-size: 1.7rem;
            margin-bottom: 24px;
        }

        /* Features */
        .hire-features-wrapper {
            padding: 50px 15px 40px;
            margin-top: 40px;
        }

        .hire-features {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-box {
            padding: 28px 24px;
        }

        .feature-box h3 {
            font-size: 1.28rem;
            gap: 10px;
        }

        .feature-box p {
            font-size: 1rem;
            line-height: 1.7;
        }
    }

    @media (max-width: 480px) {
        .hire-benefit {
            padding: 11px 16px;
            font-size: 0.93rem;
        }

        .feature-box {
            padding: 24px 20px;
        }
    }

    /* Footer */
    .ft-outer {
        background: linear-gradient(135deg, var(--blue-pale), var(--teal-pale), var(--green-pale));
        padding: 60px 1.5rem 30px;
        border-top: 1px solid rgba(10, 174, 204, 0.2);
        color: var(--tm);
    }

    .ft-inner {
        max-width: 1220px;
        margin: 0 auto;
    }

    .ft-top {
        display: grid;
        grid-template-columns: 2.2fr 1fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 2.5rem;
        border-bottom: 1px solid rgba(10, 45, 110, 0.1);
    }

    .ft-brand .ft-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        text-decoration: none;
    }

    .ft-wordmark {
        font-family: var(--fd);
        font-weight: 700;
        font-size: 18px;
        color: var(--navy);
    }

    .ft-wordmark span {
        color: var(--teal);
    }

    .ft-desc {
        font-size: 14.5px;
        line-height: 1.75;
        color: var(--tm);
        max-width: 320px;
        margin-bottom: 20px;
    }

    .ft-addr-line {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .ft-addr-line:last-child {
        margin-bottom: 0;
    }

    .ft-addr-icon {
        width: 32px;
        height: 32px;
        background: rgba(10, 174, 204, 0.1);
        border: 1px solid rgba(10, 174, 204, 0.2);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 4px;
        margin-right: 4px;
    }

    .ft-addr-icon i {
        font-size: 24px;
        color: var(--navy);
    }

    .ft-addr-text {
        font-size: 13px;
        line-height: 1.6;
        color: var(--tm);
    }

    .ft-addr-text a {
        color: var(--tm);
    }

    .ft-addr-text a:hover {
        color: var(--navy);
        text-decoration: underline;
    }

    .ft-col-title {
        font-family: var(--fd);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 16px;
    }

    .ft-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .ft-links a {
        color: var(--tm);
        text-decoration: none;
        font-size: 14.5px;
        transition: 0.3s;
    }

    .ft-links a:hover {
        color: var(--teal);
    }

    .ft-connect {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
    }

    .ft-connect li {
        margin: 0;
    }

    .ft-connect a {
        text-decoration: none;
    }

    /* .connect-icon {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--teal);
        transition: all 0.3s ease;
    }

    .connect-icon:hover {
        transform: translateY(-4px);
    }

    .connect-icon i {
        font-size: 24px;
        color: var(--navy);
        transition: var(--ease);
    } */

    .ft-bottom {
        padding-top: 22px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .ft-copy {
        font-size: 13px;
        color: var(--navy);
    }

    /* .ft-center-links {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .ft-center-links a {
        font-size: 12px;
        color: var(--ts);
        transition: var(--ease);
    }

    .ft-center-links a:hover {
        color: var(--teal);
    }

    .ft-badge {
        font-size: 11px;
        padding: 5px 13px;
        border-radius: 100px;
        background: rgba(10, 174, 204, .10);
        border: 1px solid rgba(10, 174, 204, .18);
        color: var(--teal);
        font-weight: 600;
        letter-spacing: 0.02em;
    } */

    /* Scroll-to-Top */
    #scroll-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: var(--navy);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        opacity: 0;
        visibility: hidden;
        transition: var(--ease);
        z-index: 500;
        cursor: pointer;
        border: none;
    }

    #scroll-top.show {
        opacity: 1;
        visibility: visible;
    }

    #scroll-top:hover {
        background: var(--blue);
    }

    /* Animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-eyebrow {
        animation: fadeUp .4s ease both;
    }

    .hero h1 {
        animation: fadeUp .5s .08s ease both;
    }

    .hero-desc {
        animation: fadeUp .5s .16s ease both;
    }

    .hero-acts {
        animation: fadeUp .5s .22s ease both;
    }

    .hero-stats {
        animation: fadeUp .5s .3s ease both;
    }

    .hero-visual {
        animation: fadeUp .6s .18s ease both;
    }

    .social-btn {
        padding: 12px 24px;
        border-radius: 8px;
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

    .facebook-btn,
    .linkedin-btn {
        background: #0A66C2;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #25D366;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    /* Responsive 992px */
    @media (max-width: 992px) {
        .ft-top {
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
        }
    }

    /* Responsive 960px */
    @media (max-width:960px) {

        /* Nav */
        .nav-links,
        .nav-cta {
            display: none !important;
        }

        .ham {
            display: block;
        }

        /* Hero */
        .hero {
            min-height: auto;
            padding: 80px 24px 40px;
            align-items: flex-start;
        }

        .hero-inner {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-visual {
            display: none;
        }

        .hero-geo {
            width: 100%;
            clip-path: none;
            opacity: .35;
        }

        /* Why grid */
        .why-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .why-main {
            order: 2;
        }

        /* CTA */
        .cta-inner {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            padding: 60px 1.5rem;
        }

        /* Services page */
        .svc-detail-wrap {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .svc-cta-bar {
            flex-direction: column;
            text-align: center;
        }

        .svc-sidebar {
            position: static;
        }

        .svc-sidebar-list {
            display: none;
        }

        .svc-mob-toggle {
            display: flex;
        }

        .svc-sidebar.mob-open .svc-sidebar-list {
            display: block;
        }

        /* Hire page */
        .hire-sec-inner {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* Footer */
        .ft-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
    }

    /* Responsive 768px */
    @media (max-width: 768px) {
        .ft-top {
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .ft-brand {
            grid-column: span 2;
        }
    }

    /* Responsive 600px */
    @media (max-width:600px) {
        .sec {
            padding: 40px 24px;
        }

        .hero {
            padding: 80px 24px 40px;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(30px, 9vw, 42px);
        }

        .svc-grid {
            grid-template-columns: 1fr;
        }

        .hire-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .stack-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .form-2col {
            grid-template-columns: 1fr;
        }

        .cta-inner {
            padding: 48px 1rem;
        }

        .ft-grid {
            grid-template-columns: 1fr;
            gap: 1.75rem;
        }

        #main-footer {
            padding: 50px 1rem 30px;
        }

        .ft-top {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .ft-brand {
            grid-column: span 1;
        }

        .ft-desc {
            max-width: 100%;
        }

        .ft-bottom {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .connect-icon {
            width: 42px;
            height: 42px;
            font-size: 19px;
        }

        .hire-tab {
            padding: 14px 14px;
            font-size: 13px;
        }

        .hire-section {
            padding: 40px 16px;
        }

        .why-accent {
            gap: 1.5rem;
        }

        .metric-row {
            grid-template-columns: 1fr 1fr;
        }

        .logos-row {
            gap: 1.5rem;
        }
    }

    /* Responsive 380px */
    @media (max-width:380px) {
        .hire-grid {
            grid-template-columns: 1fr;
        }

        .stack-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }