  /* =====================================================
       ROOT
    ===================================================== */

    :root {

        --blue: #1268e8;
        --blue-dark: #07358f;
        --blue-light: #eaf3ff;
        --navy: #071c4b;
        --navy-2: #0b2862;
        --text: #14213d;
        --muted: #65728a;
        --white: #ffffff;
        --border: #e3eaf4;
        --light: #f6f9fd;

        --shadow:
            0 18px 50px rgba(7, 28, 75, 0.10);

        --radius: 20px;

    }


    /* =====================================================
       RESET
    ===================================================== */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    html {
        scroll-behavior: smooth;
    }


    body {

        font-family: "Inter", Arial, sans-serif;

        color: var(--text);

        background: var(--white);

        line-height: 1.6;

        overflow-x: hidden;

    }


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


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


    button,
    input,
    select,
    textarea {
        font-family: inherit;
    }


    .container {

        width: min(1180px, calc(100% - 40px));

        margin: auto;

    }


    /* =====================================================
       HEADER
    ===================================================== */

    .header {

        position: fixed;

        top: 0;
        left: 0;
        right: 0;

        z-index: 999;

        background: rgba(255, 255, 255, 0.96);

        backdrop-filter: blur(16px);

        border-bottom: 1px solid rgba(227, 234, 244, 0.8);

        transition: 0.3s;

    }


    .header.scrolled {

        box-shadow:
            0 8px 35px rgba(7, 28, 75, 0.10);

    }


    .nav {

        min-height: 82px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 30px;

    }


    .logo {

        display: flex;

        align-items: center;

        flex-shrink: 0;

    }


    .logo img {

        width: 75px;

        height: 75px;

    }


    .nav-menu {

        display: flex;

        align-items: center;

        gap: 28px;

    }


    .nav-menu > a {

        font-size: 14px;

        font-weight: 600;

        color: #34415a;

        position: relative;

        padding: 30px 0;

        transition: 0.25s;

    }


    .nav-menu > a:not(.login-btn)::after {

        content: "";

        position: absolute;

        left: 0;

        bottom: 22px;

        width: 0;

        height: 2px;

        background: var(--blue);

        transition: 0.25s;

    }


    .nav-menu > a:hover {

        color: var(--blue);

    }


    .nav-menu > a:hover::after {

        width: 100%;

    }


    .login-btn {

        display: inline-flex !important;

        align-items: center;

        gap: 9px;

        padding: 11px 17px !important;

        border-radius: 10px;

        color: var(--white) !important;

        background: var(--navy);

        box-shadow: 0 7px 20px rgba(7, 28, 75, 0.18);

    }


    .login-btn:hover {

        background: var(--blue);

        transform: translateY(-2px);

    }


    .mobile-btn {

        display: none;

        width: 43px;

        height: 43px;

        border: 1px solid var(--border);

        background: white;

        border-radius: 10px;

        cursor: pointer;

    }


    .mobile-btn span {

        display: block;

        width: 21px;

        height: 2px;

        background: var(--navy);

        margin: 4px auto;

        transition: 0.3s;

    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {

        position: relative;

        min-height: 760px;

        padding-top: 82px;

        display: flex;

        align-items: center;

        overflow: hidden;

        background:

            radial-gradient(
                circle at 75% 20%,
                rgba(18, 104, 232, 0.16),
                transparent 30%
            ),

            linear-gradient(
                135deg,
                #f7fbff 0%,
                #eef6ff 50%,
                #ffffff 100%
            );

    }


    .hero::before {

        content: "";

        position: absolute;

        width: 600px;

        height: 600px;

        right: -220px;

        top: 100px;

        border: 80px solid rgba(18, 104, 232, 0.035);

        border-radius: 50%;

    }


    .hero::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        left: -130px;

        bottom: -100px;

        background: rgba(18, 104, 232, 0.05);

        border-radius: 50%;

    }


    .hero-grid {

        position: relative;

        z-index: 2;

        display: grid;

        grid-template-columns: 1.08fr 0.92fr;

        align-items: center;

        gap: 70px;

    }


    .hero-content {

        animation: heroLeft 0.8s ease both;

    }


    @keyframes heroLeft {

        from {
            opacity: 0;
            transform: translateX(-30px);
        }

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

    }


    .eyebrow {

        display: inline-flex;

        align-items: center;

        gap: 9px;

        color: var(--blue);

        font-size: 12px;

        font-weight: 800;

        letter-spacing: 1.7px;

        margin-bottom: 18px;

    }


    .eyebrow::before {

        content: "";

        width: 27px;

        height: 2px;

        background: var(--blue);

    }


    .hero h1 {

        font-size: clamp(45px, 5.5vw, 72px);

        line-height: 1.03;

        letter-spacing: -3px;

        color: var(--navy);

        margin-bottom: 25px;

        font-weight: 900;

    }


    .hero h1 span {

        color: var(--blue);

        display: block;

    }


    .hero-text {

        max-width: 590px;

        font-size: 17px;

        color: var(--muted);

        margin-bottom: 32px;

    }


    .hero-buttons {

        display: flex;

        align-items: center;

        gap: 14px;

        flex-wrap: wrap;

    }


    .btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 10px;

        min-height: 52px;

        padding: 0 23px;

        border-radius: 11px;

        font-size: 14px;

        font-weight: 700;

        border: 1px solid transparent;

        transition: 0.3s;

    }


    .btn-primary {

        background: var(--blue);

        color: white;

        box-shadow:
            0 12px 28px rgba(18, 104, 232, 0.25);

    }


    .btn-primary:hover {

        transform: translateY(-3px);

        background: var(--blue-dark);

    }


    .btn-secondary {

        background: white;

        color: var(--navy);

        border-color: var(--border);

    }


    .btn-secondary:hover {

        border-color: var(--blue);

        color: var(--blue);

    }


    .hero-mini-info {

        display: flex;

        gap: 35px;

        margin-top: 42px;

        padding-top: 25px;

        border-top: 1px solid #dce6f3;

    }


    .mini-info {

        display: flex;

        align-items: center;

        gap: 10px;

    }


    .mini-icon {

        width: 38px;

        height: 38px;

        border-radius: 10px;

        display: grid;

        place-items: center;

        background: var(--blue-light);

        color: var(--blue);

    }


    .mini-info strong {

        display: block;

        font-size: 13px;

        color: var(--navy);

    }


    .mini-info small {

        color: var(--muted);

        font-size: 11px;

    }


    /* HERO CARD */

    .hero-visual {

        position: relative;

        min-height: 500px;

        display: flex;

        align-items: center;

        justify-content: center;

        animation: heroRight 0.9s ease both;

    }


    @keyframes heroRight {

        from {
            opacity: 0;
            transform: translateX(30px);
        }

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

    }


    .hero-main-card {

        width: 370px;

        min-height: 410px;

        background: white;

        border-radius: 28px;

        box-shadow:
            0 30px 70px rgba(7, 28, 75, 0.15);

        padding: 34px;

        position: relative;

        z-index: 2;

        overflow: hidden;

    }


    .hero-main-card::before {

        content: "";

        position: absolute;

        top: 0;

        left: 0;

        right: 0;

        height: 8px;

        background: linear-gradient(
            90deg,
            var(--blue),
            var(--navy)
        );

    }


    .card-logo {

        width: 105px;

        margin-bottom: 27px;

    }


    .hero-main-card .card-label {

        font-size: 11px;

        font-weight: 800;

        color: var(--blue);

        letter-spacing: 1.5px;

    }


    .hero-main-card h3 {

        font-size: 26px;

        line-height: 1.25;

        color: var(--navy);

        margin: 9px 0 13px;

    }


    .hero-main-card p {

        color: var(--muted);

        font-size: 13px;

    }


    .loan-amount-box {

        margin-top: 27px;

        padding: 18px;

        border-radius: 15px;

        background: #f5f8fd;

        border: 1px solid var(--border);

    }


    .loan-amount-box small {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 4px;

    }


    .loan-amount-box strong {

        font-size: 24px;

        color: var(--navy);

    }


    .card-action {

        display: flex;

        justify-content: space-between;

        align-items: center;

        margin-top: 18px;

        padding-top: 17px;

        border-top: 1px solid var(--border);

    }


    .card-action span {

        font-size: 12px;

        font-weight: 600;

        color: var(--muted);

    }


    .round-arrow {

        width: 40px;

        height: 40px;

        border-radius: 50%;

        background: var(--blue);

        color: white;

        display: grid;

        place-items: center;

    }


    .floating-box {

        position: absolute;

        z-index: 4;

        background: white;

        box-shadow: 0 15px 40px rgba(7, 28, 75, 0.13);

        border: 1px solid #edf1f7;

        border-radius: 14px;

        padding: 15px 18px;

        display: flex;

        align-items: center;

        gap: 11px;

    }


    .floating-box i {

        width: 38px;

        height: 38px;

        display: grid;

        place-items: center;

        border-radius: 10px;

        background: var(--blue-light);

        color: var(--blue);

    }


    .floating-box strong {

        display: block;

        color: var(--navy);

        font-size: 13px;

    }


    .floating-box small {

        font-size: 10px;

        color: var(--muted);

    }


    .float-one {

        left: 0;

        top: 70px;

        animation: floating 4s ease-in-out infinite;

    }


    .float-two {

        right: 0;

        bottom: 60px;

        animation: floating 4s ease-in-out infinite 1s;

    }


    @keyframes floating {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

    }


    /* =====================================================
       SECTION COMMON
    ===================================================== */

    section {

        scroll-margin-top: 80px;

    }


    .section {

        padding: 105px 0;

    }


    .section-light {

        background: var(--light);

    }


    .section-heading {

        max-width: 700px;

        margin: 0 auto 55px;

        text-align: center;

    }


    .section-label {

        display: inline-block;

        color: var(--blue);

        font-size: 11px;

        font-weight: 800;

        letter-spacing: 1.8px;

        margin-bottom: 12px;

    }


    .section-heading h2 {

        font-size: clamp(31px, 4vw, 46px);

        line-height: 1.15;

        color: var(--navy);

        letter-spacing: -1.5px;

        margin-bottom: 16px;

    }


    .section-heading h2 span {

        color: var(--blue);

    }


    .section-heading p {

        color: var(--muted);

        font-size: 15px;

    }


    /* =====================================================
       INTRO
    ===================================================== */

    .intro-grid {

        display: grid;

        grid-template-columns: 0.9fr 1.1fr;

        gap: 75px;

        align-items: center;

    }


    .intro-visual {

        min-height: 440px;

        border-radius: 28px;

        background:

            linear-gradient(
                145deg,
                var(--navy),
                var(--blue-dark)
            );

        position: relative;

        overflow: hidden;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .intro-visual::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border: 70px solid rgba(255,255,255,0.06);

        border-radius: 50%;

        top: -120px;

        right: -100px;

    }


    .intro-visual::after {

        content: "";

        position: absolute;

        width: 280px;

        height: 280px;

        border: 50px solid rgba(255,255,255,0.05);

        border-radius: 50%;

        bottom: -150px;

        left: -100px;

    }


    .intro-logo-card {

        width: 250px;

        height: 250px;

        background: white;

        border-radius: 28px;

        padding: 30px;

        position: relative;

        z-index: 2;

        display: flex;

        align-items: center;

        justify-content: center;

        box-shadow:
            0 25px 60px rgba(0,0,0,0.18);

    }


    .intro-logo-card img {

        width: 190px;

    }


    .intro-content .section-label {

        margin-bottom: 12px;

    }


    .intro-content h2 {

        font-size: clamp(31px, 4vw, 46px);

        line-height: 1.16;

        color: var(--navy);

        letter-spacing: -1.5px;

        margin-bottom: 20px;

    }


    .intro-content h2 span {

        color: var(--blue);

    }


    .intro-content > p {

        color: var(--muted);

        font-size: 15px;

        margin-bottom: 15px;

    }


    .company-points {

        margin-top: 28px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }


    .company-point {

        display: flex;

        gap: 11px;

    }


    .company-point i {

        color: var(--blue);

        margin-top: 4px;

    }


    .company-point strong {

        font-size: 13px;

        display: block;

        color: var(--navy);

    }


    .company-point span {

        display: block;

        color: var(--muted);

        font-size: 11px;

    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-grid {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 22px;

    }


    .service-card {

        background: white;

        border: 1px solid var(--border);

        border-radius: 18px;

        padding: 30px;

        transition: 0.35s;

        position: relative;

        overflow: hidden;

    }


    .service-card::before {

        content: "";

        position: absolute;

        left: 0;

        bottom: 0;

        width: 0;

        height: 3px;

        background: var(--blue);

        transition: 0.35s;

    }


    .service-card:hover {

        transform: translateY(-8px);

        box-shadow: var(--shadow);

        border-color: #d7e4f7;

    }


    .service-card:hover::before {

        width: 100%;

    }


    .service-icon {

        width: 58px;

        height: 58px;

        border-radius: 15px;

        background: var(--blue-light);

        color: var(--blue);

        display: grid;

        place-items: center;

        font-size: 21px;

        margin-bottom: 23px;

    }


    .service-card h3 {

        font-size: 18px;

        color: var(--navy);

        margin-bottom: 9px;

    }


    .service-card p {

        color: var(--muted);

        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 19px;

    }


    .service-link {

        color: var(--blue);

        font-size: 12px;

        font-weight: 800;

        display: inline-flex;

        align-items: center;

        gap: 7px;

    }


    /* =====================================================
       WHY US
    ===================================================== */

    .why-grid {

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 18px;

    }


    .why-card {

        background: white;

        border: 1px solid var(--border);

        padding: 28px 23px;

        border-radius: 18px;

        position: relative;

        transition: 0.3s;

    }


    .why-card:hover {

        transform: translateY(-6px);

        box-shadow: var(--shadow);

    }


    .why-number {

        position: absolute;

        right: 20px;

        top: 17px;

        font-size: 12px;

        font-weight: 800;

        color: #cbd7e8;

    }


    .why-card > i {

        color: var(--blue);

        font-size: 24px;

        margin-bottom: 20px;

        display: block;

    }


    .why-card h3 {

        font-size: 16px;

        color: var(--navy);

        margin-bottom: 8px;

    }


    .why-card p {

        color: var(--muted);

        font-size: 12px;

        line-height: 1.7;

    }


    /* =====================================================
       PRODUCT / SOLUTIONS
    ===================================================== */

    .solutions-grid {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 18px;

    }


    .solution {

        display: flex;

        align-items: center;

        gap: 18px;

        padding: 23px;

        border: 1px solid var(--border);

        border-radius: 16px;

        background: white;

        transition: 0.3s;

    }


    .solution:hover {

        transform: translateX(5px);

        border-color: #bfd5f5;

        box-shadow: 0 10px 30px rgba(7, 28, 75, 0.07);

    }


    .solution-icon {

        width: 53px;

        height: 53px;

        min-width: 53px;

        border-radius: 13px;

        display: grid;

        place-items: center;

        background: var(--blue-light);

        color: var(--blue);

    }


    .solution h3 {

        color: var(--navy);

        font-size: 15px;

        margin-bottom: 3px;

    }


    .solution p {

        color: var(--muted);

        font-size: 11px;

    }


    .solution-arrow {

        margin-left: auto;

        color: #a9b5c9;

    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .process-section {

        background:

            linear-gradient(
                135deg,
                var(--navy),
                #0c439d
            );

        color: white;

    }


    .process-section .section-label {

        color: #8fc0ff;

    }


    .process-section .section-heading h2 {

        color: white;

    }


    .process-section .section-heading h2 span {

        color: #69a9ff;

    }


    .process-section .section-heading p {

        color: #b8c9e5;

    }


    .process {

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        gap: 0;

        position: relative;

    }


    .process::before {

        content: "";

        position: absolute;

        top: 35px;

        left: 12%;

        right: 12%;

        height: 1px;

        background: rgba(255,255,255,0.25);

    }


    .process-item {

        position: relative;

        text-align: center;

        padding: 0 20px;

    }


    .process-circle {

        width: 70px;

        height: 70px;

        border-radius: 50%;

        background: white;

        color: var(--blue);

        display: grid;

        place-items: center;

        margin: 0 auto 23px;

        position: relative;

        z-index: 2;

        font-size: 17px;

        font-weight: 900;

        box-shadow:
            0 10px 25px rgba(0,0,0,0.15);

    }


    .process-item h3 {

        font-size: 16px;

        margin-bottom: 8px;

    }


    .process-item p {

        color: #b8c9e5;

        font-size: 12px;

    }


    /* =====================================================
       BENEFITS
    ===================================================== */

    .benefits-grid {

        display: grid;

        grid-template-columns: 1fr 0.8fr;

        gap: 70px;

        align-items: center;

    }


    .benefits-content h2 {

        font-size: clamp(31px, 4vw, 45px);

        line-height: 1.15;

        color: var(--navy);

        letter-spacing: -1.5px;

        margin-bottom: 18px;

    }


    .benefits-content h2 span {

        color: var(--blue);

    }


    .benefits-content > p {

        color: var(--muted);

        font-size: 14px;

        max-width: 600px;

    }


    .benefit-list {

        margin-top: 30px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 16px;

    }


    .benefit {

        display: flex;

        align-items: center;

        gap: 10px;

        font-size: 13px;

        font-weight: 600;

        color: var(--navy);

    }


    .benefit i {

        width: 22px;

        height: 22px;

        border-radius: 50%;

        background: var(--blue-light);

        color: var(--blue);

        display: grid;

        place-items: center;

        font-size: 10px;

    }


    .benefit-box {

        padding: 38px;

        border-radius: 25px;

        background: var(--light);

        border: 1px solid var(--border);

        text-align: center;

        position: relative;

    }


    .benefit-box::before {

        content: "";

        position: absolute;

        inset: 10px;

        border: 1px dashed #d2dfef;

        border-radius: 18px;

        pointer-events: none;

    }


    .benefit-box > * {

        position: relative;

        z-index: 2;

    }


    .benefit-big-icon {

        width: 75px;

        height: 75px;

        border-radius: 20px;

        background: var(--blue);

        color: white;

        display: grid;

        place-items: center;

        font-size: 29px;

        margin: 0 auto 22px;

    }


    .benefit-box h3 {

        color: var(--navy);

        font-size: 21px;

        margin-bottom: 10px;

    }


    .benefit-box p {

        color: var(--muted);

        font-size: 12px;

        margin-bottom: 22px;

    }


    .call-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 9px;

        background: var(--navy);

        color: white;

        padding: 13px 20px;

        border-radius: 10px;

        font-size: 13px;

        font-weight: 700;

    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {

        padding: 30px 0;

    }


    .cta-box {

        border-radius: 25px;

        padding: 48px 55px;

        background:

            linear-gradient(
                120deg,
                var(--blue),
                var(--navy)
            );

        color: white;

        display: flex;

        justify-content: space-between;

        align-items: center;

        gap: 35px;

        overflow: hidden;

        position: relative;

    }


    .cta-box::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        border: 50px solid rgba(255,255,255,0.06);

        border-radius: 50%;

        right: -90px;

        top: -120px;

    }


    .cta-content {

        position: relative;

        z-index: 2;

    }


    .cta-content small {

        font-size: 10px;

        font-weight: 800;

        letter-spacing: 1.5px;

        color: #b9d7ff;

    }


    .cta-content h2 {

        font-size: clamp(25px, 3vw, 35px);

        line-height: 1.2;

        margin: 7px 0 8px;

    }


    .cta-content p {

        color: #d4e5ff;

        font-size: 13px;

        max-width: 600px;

    }


    .cta-actions {

        display: flex;

        gap: 10px;

        position: relative;

        z-index: 2;

        flex-shrink: 0;

    }


    .btn-white {

        background: white;

        color: var(--navy);

    }


    .btn-white:hover {

        transform: translateY(-3px);

        box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    }


    .btn-call {

        border-color: rgba(255,255,255,0.4);

        color: white;

        background: transparent;

    }


    .btn-call:hover {

        background: rgba(255,255,255,0.1);

    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .contact-grid {

        display: grid;

        grid-template-columns: 0.85fr 1.15fr;

        gap: 65px;

        align-items: start;

    }


    .contact-content h2 {

        font-size: clamp(31px, 4vw, 45px);

        line-height: 1.15;

        color: var(--navy);

        letter-spacing: -1.5px;

        margin-bottom: 17px;

    }


    .contact-content h2 span {

        color: var(--blue);

    }


    .contact-content > p {

        color: var(--muted);

        font-size: 14px;

        margin-bottom: 30px;

    }


    .contact-list {

        display: grid;

        gap: 15px;

    }


    .contact-item {

        display: flex;

        gap: 14px;

        align-items: flex-start;

    }


    .contact-item-icon {

        width: 43px;

        height: 43px;

        min-width: 43px;

        border-radius: 11px;

        background: var(--blue-light);

        color: var(--blue);

        display: grid;

        place-items: center;

    }


    .contact-item small {

        display: block;

        color: #8995a8;

        font-size: 9px;

        font-weight: 800;

        letter-spacing: 1px;

        margin-bottom: 2px;

    }


    .contact-item strong {

        color: var(--navy);

        font-size: 12px;

        display: block;

        word-break: break-word;

    }


    /* FORM */

    .form-card {

        background: white;

        border: 1px solid var(--border);

        border-radius: 22px;

        padding: 34px;

        box-shadow: var(--shadow);

    }


    .form-card-header {

        margin-bottom: 24px;

    }


    .form-card-header small {

        color: var(--blue);

        font-size: 10px;

        font-weight: 800;

        letter-spacing: 1.5px;

    }


    .form-card-header h3 {

        font-size: 24px;

        color: var(--navy);

        margin-top: 5px;

    }


    .form-card-header p {

        color: var(--muted);

        font-size: 12px;

        margin-top: 5px;

    }


    .form-row {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;

    }


    .form-group {

        margin-bottom: 16px;

    }


    .form-group label {

        display: block;

        font-size: 11px;

        font-weight: 700;

        color: var(--navy);

        margin-bottom: 7px;

    }


    .form-control {

        width: 100%;

        border: 1px solid #dce5f0;

        background: #fafcff;

        border-radius: 9px;

        height: 46px;

        padding: 0 13px;

        outline: none;

        font-size: 12px;

        color: var(--text);

        transition: 0.25s;

    }


    textarea.form-control {

        height: 100px;

        padding: 12px 13px;

        resize: vertical;

    }


    .form-control:focus {

        border-color: var(--blue);

        background: white;

        box-shadow:
            0 0 0 3px rgba(18, 104, 232, 0.08);

    }


    .submit-btn {

        width: 100%;

        border: 0;

        height: 50px;

        border-radius: 10px;

        background: var(--blue);

        color: white;

        font-size: 13px;

        font-weight: 800;

        cursor: pointer;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 9px;

        transition: 0.3s;

    }


    .submit-btn:hover {

        background: var(--blue-dark);

        transform: translateY(-2px);

    }


    .form-note {

        color: #8995a8;

        font-size: 9px;

        text-align: center;

        margin-top: 11px;

    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {

        background: #06183e;

        color: white;

        padding-top: 70px;

    }


    .footer-grid {

        display: grid;

        grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;

        gap: 45px;

        padding-bottom: 50px;

    }


    .footer-logo {

        width: 145px;

        background: white;

        padding: 8px;

        border-radius: 9px;

        margin-bottom: 18px;

    }


    .footer-brand p {

        color: #9db0d0;

        font-size: 12px;

        max-width: 320px;

    }


    .socials {

        display: flex;

        gap: 8px;

        margin-top: 22px;

    }


    .socials a {

        width: 35px;

        height: 35px;

        border-radius: 8px;

        border: 1px solid rgba(255,255,255,0.13);

        display: grid;

        place-items: center;

        color: #c5d3e9;

        font-size: 12px;

        transition: 0.3s;

    }


    .socials a:hover {

        background: var(--blue);

        border-color: var(--blue);

        color: white;

    }


    .footer-column h4 {

        font-size: 13px;

        margin-bottom: 18px;

    }


    .footer-column a {

        display: block;

        color: #9db0d0;

        font-size: 11px;

        margin-bottom: 10px;

        transition: 0.25s;

    }


    .footer-column a:hover {

        color: white;

        transform: translateX(3px);

    }


    .footer-contact p {

        display: flex;

        gap: 10px;

        color: #9db0d0;

        font-size: 11px;

        margin-bottom: 13px;

    }


    .footer-contact p i {

        color: #6baeff;

        margin-top: 4px;

    }


    .footer-contact a {

        margin: 0;

        display: inline;

    }


    .footer-bottom {

        border-top: 1px solid rgba(255,255,255,0.08);

        min-height: 65px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

    }


    .footer-bottom p {

        color: #7186a8;

        font-size: 10px;

    }


    .footer-bottom-links {

        display: flex;

        gap: 20px;

    }


    .footer-bottom-links a {

        color: #7186a8;

        font-size: 10px;

    }


    /* =====================================================
       FLOATING CALL
    ===================================================== */

    .floating-call {

        position: fixed;

        right: 20px;

        bottom: 20px;

        z-index: 990;

        width: 53px;

        height: 53px;

        border-radius: 50%;

        background: var(--blue);

        color: white;

        display: grid;

        place-items: center;

        font-size: 19px;

        box-shadow:
            0 10px 30px rgba(18,104,232,0.35);

        transition: 0.3s;

    }


    .floating-call:hover {

        transform: scale(1.08);

        background: var(--navy);

    }


    /* =====================================================
       SCROLL REVEAL
    ===================================================== */

    .reveal {

        opacity: 0;

        transform: translateY(25px);

        transition:
            opacity 0.7s ease,
            transform 0.7s ease;

    }


    .reveal.show {

        opacity: 1;

        transform: translateY(0);

    }


    /* =====================================================
       RESPONSIVE
    ===================================================== */

    @media (max-width: 1000px) {

        .nav-menu {
            gap: 17px;
        }

        .hero-grid {
            gap: 35px;
        }

        .hero-main-card {
            width: 330px;
        }

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

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

    }


    @media (max-width: 800px) {

        .container {
            width: min(100% - 28px, 600px);
        }


        .nav {
            min-height: 70px;
        }


        .logo img {
            width: 75px;
        }


        .mobile-btn {
            display: block;
        }


        .nav-menu {

            position: absolute;

            left: 14px;
            right: 14px;

            top: 76px;

            background: white;

            border: 1px solid var(--border);

            border-radius: 15px;

            padding: 12px;

            display: none;

            flex-direction: column;

            align-items: stretch;

            gap: 0;

            box-shadow: var(--shadow);

        }


        .nav-menu.active {
            display: flex;
        }


        .nav-menu > a {

            padding: 13px 14px;

            border-radius: 8px;

        }


        .nav-menu > a:not(.login-btn)::after {
            display: none;
        }


        .nav-menu > a:hover {
            background: var(--blue-light);
        }


        .login-btn {
            margin-top: 5px;
            justify-content: center;
        }


        .hero {

            min-height: auto;

            padding-top: 125px;

            padding-bottom: 80px;

        }


        .hero-grid {

            grid-template-columns: 1fr;

            text-align: center;

        }


        .hero-text {
            margin-left: auto;
            margin-right: auto;
        }


        .hero-buttons {
            justify-content: center;
        }


        .hero-mini-info {
            justify-content: center;
            text-align: left;
        }


        .hero-visual {
            min-height: 460px;
        }


        .float-one {
            left: 0;
        }


        .float-two {
            right: 0;
        }


        .intro-grid,
        .benefits-grid,
        .contact-grid {

            grid-template-columns: 1fr;

            gap: 45px;

        }


        .intro-visual {
            min-height: 380px;
        }


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


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

            gap: 45px 0;

        }


        .process::before {
            display: none;
        }


        .cta-box {

            flex-direction: column;

            align-items: flex-start;

            padding: 38px 30px;

        }

    }


    @media (max-width: 550px) {

        .section {
            padding: 75px 0;
        }


        .hero h1 {
            letter-spacing: -2px;
        }


        .hero-mini-info {

            gap: 15px;

            flex-direction: column;

            align-items: center;

        }


        .hero-visual {
            min-height: 430px;
        }


        .hero-main-card {

            width: 285px;

            min-height: 365px;

            padding: 27px;

        }


        .hero-main-card h3 {
            font-size: 21px;
        }


        .float-one {
            left: -4px;
            top: 45px;
        }


        .float-two {
            right: -4px;
            bottom: 40px;
        }


        .floating-box {
            padding: 10px 12px;
        }


        .floating-box i {
            width: 32px;
            height: 32px;
        }


        .floating-box strong {
            font-size: 10px;
        }


        .floating-box small {
            font-size: 8px;
        }


        .company-points,
        .benefit-list,
        .solutions-grid,
        .services-grid {

            grid-template-columns: 1fr;

        }


        .why-grid {

            grid-template-columns: 1fr;

        }


        .process {

            grid-template-columns: 1fr;

        }


        .process-item {

            padding: 0 35px;

        }


        .form-card {
            padding: 23px 18px;
        }


        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }


        .cta-actions {

            width: 100%;

            flex-direction: column;

        }


        .cta-actions .btn {
            width: 100%;
        }


        .footer-grid {

            grid-template-columns: 1fr;

            gap: 30px;

        }


        .footer-bottom {

            padding: 18px 0;

            flex-direction: column;

            justify-content: center;

            text-align: center;

        }


        .footer-bottom-links {
            gap: 12px;
        }

    }
/* =====================================================
   UNIFIED SECTION HEADING SIZE
   Match About / Hero heading visual scale
===================================================== */

.section-heading h2,
.intro-content h2,
.benefits-content h2,
.contact-content h2 {
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.15;
}

/* CTA heading */
.cta-content h2 {
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.15;
}

/* CTA small heading / label */
.cta-content small {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* Footer headings */
.footer-column h4 {
    font-size: 18px;
    line-height: 1.3;
}

/* Footer content slightly bigger */
.footer-brand p,
.footer-column a,
.footer-contact p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom p,
.footer-bottom-links a {
    font-size: 11px;
}