* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Inter, Arial, sans-serif;
    color: #0d1d3b;
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1160px, 92%);
    margin: auto;
}
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e8edf5;
}
.nav {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand img {
    width: 190px;
    height: 68px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 29px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: #52627d;
}
.hero-copy > p b,
.nav-links a:hover {
    color: #0969d7;
}
.nav-cta {
    padding: 11px 18px;
    border-radius: 8px;
    background: #0d58bf;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.btn,
.eyebrow {
    font-weight: 800;
}
.nav-cta span {
    margin-left: 8px;
}
.menu-btn {
    display: none;
    border: 0;
    background: 0 0;
    font-size: 27px;
    color: #10254a;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 90px;
    background: linear-gradient(120deg, #f7faff 0, #fff 58%, #edf6ff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 70px;
    align-items: center;
}
.service-grid,
.window-stats {
    grid-template-columns: repeat(3, 1fr);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}
.orb-one {
    width: 420px;
    height: 420px;
    background: rgba(0, 105, 220, 0.08);
    right: -120px;
    top: -100px;
}
.orb-two {
    width: 250px;
    height: 250px;
    background: rgba(0, 153, 255, 0.06);
    left: -150px;
    bottom: -100px;
}
.eyebrow {
    font-size: 11px;
    letter-spacing: 2.2px;
    color: #0865cc;
}
.eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #0865cc;
    vertical-align: middle;
    margin-right: 8px;
}
.hero h1 {
    font-size: clamp(43px, 5vw, 69px);
    line-height: 1.05;
    letter-spacing: -3.5px;
    margin: 17px 0 24px;
    color: #0b1c3c;
    text-transform: uppercase;
}
.hero h1 strong {
    display: block;
    color: #0969d7;
}
.hero-copy > p {
    font-size: 17px;
    color: #5d6b83;
    max-width: 590px;
}
.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin: 32px 0;
}
.btn,
.hero-trust {
    align-items: center;
}
.btn {
    display: inline-flex;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.25s;
}
.btn.primary {
    background: linear-gradient(135deg, #0866d4, #034aa7);
    color: #fff;
    box-shadow: 0 12px 25px rgba(8, 102, 212, 0.2);
}
.btn.secondary {
    border: 1px solid #d9e1ed;
    color: #173052;
    background: #fff;
}
.btn:hover {
    transform: translateY(-2px);
}
.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 38px;
}
.about-card b,
.about-card span,
.check-list b,
.check-list small,
.hero-trust b,
.hero-trust small,
.window-stats b,
.window-stats span {
    display: block;
}
.hero-trust b {
    font-size: 14px;
    color: #142b50;
}
.hero-trust small {
    font-size: 10px;
    color: #8793a7;
}
.hero-trust i {
    height: 35px;
    width: 1px;
    background: #dce3ed;
}
.hero-visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}
.visual-ring {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(5, 92, 190, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(7, 99, 208, 0.035),
        0 0 0 120px rgba(7, 99, 208, 0.025);
}
.code-window {
    position: relative;
    width: min(510px, 100%);
    border-radius: 17px;
    overflow: hidden;
    background: #071426;
    box-shadow: 0 30px 70px rgba(2, 28, 65, 0.3);
    transform: rotate(2deg);
    z-index: 2;
}
.window-bar {
    height: 45px;
    background: #0d213a;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 7px;
    color: #6d819d;
}
.window-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #38516f;
}
.window-bar em {
    font-size: 10px;
    margin-left: 10px;
    font-style: normal;
}
.code-body {
    padding: 27px 24px 18px;
    min-height: 260px;
    color: #bcd1e8;
    font-family: monospace;
    font-size: 12px;
}
.floating-chip,
.marquee-row {
    font-size: 11px;
    font-weight: 800;
}
.line {
    margin: 9px 0;
}
.line small {
    color: #425977;
    display: inline-block;
    width: 27px;
}
.line b {
    color: #64a7ff;
}
.line strong {
    color: #55d7a2;
}
.line.gap {
    height: 12px;
}
.green {
    color: #46e6a3;
}
.window-stats {
    display: grid;
    border-top: 1px solid #1b314e;
    background: #0b1d34;
}
.window-stats div {
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid #1b314e;
}
.window-stats div:last-child {
    border: 0;
}
.window-stats span {
    font-size: 9px;
    color: #71849d;
}
.window-stats b {
    font-size: 14px;
    color: #fff;
}
.floating-chip {
    position: absolute;
    background: #fff;
    padding: 12px 15px;
    border-radius: 9px;
    box-shadow: 0 14px 30px rgba(12, 39, 74, 0.14);
    z-index: 3;
    color: #12315b;
}
.chip-one {
    top: 45px;
    left: -15px;
}
.chip-two {
    right: -8px;
    bottom: 55px;
}
.marquee {
    background: #052c69;
    color: #fff;
    padding: 17px 0;
}
.marquee-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    letter-spacing: 2px;
}
.check-list > div > span,
.icon,
.mini-logo {
    font-weight: 900;
    place-items: center;
}
.marquee i {
    color: #2c8eff;
}
.about-copy h2 span,
.about-metrics b,
.icon,
.section-head h2 span {
    color: #0868d4;
}
.section {
    padding: 105px 0;
}
.section-head {
    text-align: center;
    max-width: 690px;
    margin: 0 auto 52px;
}
.section-head h2 {
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.13;
    letter-spacing: -2.3px;
    margin: 12px 0 16px;
}
.section-head p {
    color: #6a7890;
    font-size: 14px;
}
.service-grid {
    display: grid;
    gap: 18px;
}
.service-card {
    padding: 29px;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    background: #fff;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:after {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(9, 105, 215, 0.035);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(19, 53, 99, 0.1);
    border-color: #cfe0f5;
}
.service-card.featured {
    background: linear-gradient(145deg, #f4f9ff, #fff);
    border-color: #cfe0f5;
}
.icon {
    width: 49px;
    height: 49px;
    border-radius: 12px;
    background: #e8f2ff;
    display: grid;
    font-size: 19px;
    margin-bottom: 20px;
}
.mini-logo,
.section-head.light h2 {
    color: #fff;
}
.service-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
}
.service-card p {
    font-size: 13px;
    color: #6a7890;
    min-height: 64px;
}
.service-card a {
    display: inline-block;
    margin-top: 18px;
    color: #0868d4;
    font-size: 12px;
    font-weight: 800;
}
.about-section {
    background: #f6f9fd;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}
.process,
.why-grid {
    grid-template-columns: repeat(4, 1fr);
}
.about-art {
    height: 450px;
    position: relative;
    display: grid;
    place-items: center;
}
.blue-panel {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 38% 62% 58% 42%;
    background: linear-gradient(135deg, #0b65cf, #062f72);
    transform: rotate(-10deg);
    box-shadow: 0 25px 50px rgba(4, 63, 135, 0.2);
}
.about-card {
    position: relative;
    width: 310px;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 55px rgba(16, 49, 91, 0.16);
    z-index: 2;
}
.about-card > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mini-logo {
    width: 45px;
    height: 45px;
    display: grid;
    font-size: 24px;
    background: linear-gradient(135deg, #0871e5, #052f73);
    border-radius: 10px;
}
.about-card > div:first-child b {
    font-size: 18px;
}
.about-card > div:first-child span {
    font-size: 9px;
    color: #0868d4;
    letter-spacing: 1px;
}
.about-card hr {
    border: 0;
    border-top: 1px solid #e5eaf0;
    margin: 23px 0;
}
.about-card p {
    font-size: 15px;
    font-weight: 700;
    color: #1b3457;
}
.number,
.phone,
.why-card > span {
    font-weight: 800;
}
.about-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
.about-metrics small {
    color: #8995a7;
    font-size: 10px;
}
.about-copy h2 {
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin: 12px 0 20px;
}
.about-copy > p {
    color: #64748b;
    font-size: 15px;
    max-width: 560px;
}
.check-list {
    margin: 27px 0;
}
.check-list > div {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}
.check-list > div > span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    background: #e4f1ff;
    color: #0868d4;
}
.check-list b {
    font-size: 13px;
}
.check-list small {
    font-size: 11px;
    color: #7d899b;
    margin-top: 2px;
}
.dark-section {
    background: #061a36;
    color: #fff;
}
.section-head.light .eyebrow {
    color: #39a1ff;
}
.section-head.light .eyebrow:before {
    background: #39a1ff;
}
.section-head.light p {
    color: #9fb2ca;
}
.why-grid {
    display: grid;
    gap: 15px;
}
.why-card {
    padding: 27px;
    border: 1px solid rgba(120, 171, 230, 0.17);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 12px;
}
.why-card > span {
    color: #36a0ff;
    font-size: 12px;
}
.why-card h3 {
    margin: 18px 0 8px;
}
.why-card p {
    color: #9cafc7;
    font-size: 12px;
}
.process {
    display: grid;
    gap: 22px;
    position: relative;
}
.process-line {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 24px;
    border-top: 1px dashed #b7c9df;
}
.process-item {
    position: relative;
    text-align: center;
}
.number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #0868d4;
    border: 2px solid #0868d4;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.process-item h3 {
    font-size: 17px;
}
.process-item p {
    font-size: 12px;
    color: #718096;
    margin-top: 8px;
}
.cta-section {
    padding: 20px 0 100px;
}
.cta-box {
    border-radius: 20px;
    padding: 52px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
    background: linear-gradient(110deg, #05285c, #0869d3);
    box-shadow: 0 25px 55px rgba(4, 67, 140, 0.18);
}
.footer-grid,
footer {
    background: #061329;
}
.cta-box .eyebrow {
    color: #6fc1ff;
}
.cta-box h2 {
    font-size: 38px;
    line-height: 1.15;
    margin: 10px 0;
}
.cta-box h2 span {
    color: #61b8ff;
}
.cta-box p {
    color: #c7d8ed;
    font-size: 13px;
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn.white {
    background: #fff;
    color: #0755ad;
}
.phone {
    font-size: 13px;
}
.footer-brand img {
    width: 190px;
    height: 70px;
    object-fit: contain;
    filter: none;
}
.footer-brand p {
    max-width: 290px;
    color: #8ea2bf;
    font-size: 12px;
    margin-top: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1.4fr;
    gap: 45px;
    padding: 70px 0;
}
.footer-grid h4 {
    font-size: 13px;
    margin-bottom: 18px;
    color: #fff;
}
.footer-grid a,
.footer-grid span {
    display: block;
    color: #8ea2bf;
    font-size: 11px;
    margin: 10px 0;
}
.footer-grid a:hover {
    color: #48a8ff;
}
.footer-bottom {
    border-top: 1px solid #1b2c45;
    padding: 19px 0;
    color: #6f839e;
    font-size: 10px;
}
.footer-bottom span {
    float: right;
    color: #8ea2bf;
}
@media (max-width: 900px) {
    .cta-box,
    .hero-copy {
        text-align: center;
    }
    .nav-cta,
    .nav-links,
    .process-line {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 18px 4%;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid #e6ebf3;
    }
    .nav-links.open a {
        padding: 12px;
    }
    .about-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid,
    .process,
    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-actions,
    .hero-copy .eyebrow,
    .hero-trust {
        justify-content: center;
    }
    .hero-copy > p {
        margin: auto;
    }
    .process {
        gap: 35px;
    }
    .cta-box {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .brand img {
        width: 155px;
    }
    .hero {
        padding: 70px 0;
    }
    .hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }
    .hero-trust {
        gap: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .hero-trust i {
        display: none;
    }
    .hero-visual {
        min-height: 380px;
    }
    .visual-ring {
        width: 310px;
        height: 310px;
    }
    .code-window {
        transform: none;
    }
    .chip-one {
        left: 0;
    }
    .chip-two {
        right: 0;
    }
    .marquee-row {
        gap: 12px;
        font-size: 8px;
    }
    .section {
        padding: 75px 0;
    }
    .footer-grid,
    .process,
    .service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-art {
        height: 390px;
    }
    .blue-panel {
        width: 300px;
        height: 300px;
    }
    .about-card {
        width: 275px;
    }
    .about-copy h2 {
        font-size: 39px;
    }
    .cta-box {
        padding: 40px 25px;
    }
    .cta-box h2 {
        font-size: 30px;
    }
    .footer-bottom span {
        float: none;
        display: block;
        margin-top: 6px;
    }
}

/* =====================================================
   ACCESSIBILITY - COLOR CONTRAST FIXES
===================================================== */

.section-head p {
    color: #52627d;
}

.service-card p {
    color: #52627d;
}

.about-copy > p {
    color: #52627d;
}

.process-item p {
    color: #52627d;
}

.hero-trust small {
    color: #5f6f86;
}

.window-bar {
    color: #aebdd0;
}

.window-bar em {
    color: #aebdd0;
}

.line small {
    color: #8fa4bd;
}

.window-stats span {
    color: #aebdd0;
}

.about-metrics small {
    color: #5f6f86;
}

.check-list small {
    color: #5f6f86;
}

.section-head.light p {
    color: #b9c9dc;
}

.why-card p {
    color: #b9c9dc;
}

.footer-brand p {
    color: #b0c0d3;
}

.footer-grid a,
.footer-grid span {
    color: #b0c0d3;
}

.footer-bottom {
    color: #a7b8cc;
}

.footer-bottom span {
    color: #b0c0d3;
}
