:root {
            --navy: #0b1f33;
            --navy-light: #123452;
            --blue: #1976d2;
            --blue-dark: #125ca8;
            --orange: #f97316;
            --orange-dark: #ea580c;

            --white: #ffffff;
            --light: #f5f8fc;
            --light-blue: #edf5ff;
            --text: #26384a;
            --muted: #64748b;
            --border: #dce5ef;

            --shadow-sm: 0 8px 25px rgba(11, 31, 51, 0.08);
            --shadow-md: 0 18px 45px rgba(11, 31, 51, 0.13);
            --shadow-lg: 0 25px 70px rgba(11, 31, 51, 0.18);

            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;

            --max-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Arial,
                sans-serif;

            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

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

        button {
            font-family: inherit;
        }

        /* =========================================================
       NAVIGATION
       ========================================================= */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(220, 229, 239, 0.8);
        }

        .nav {
            width: min(100% - 40px, var(--max-width));
            min-height: 78px;
            margin: auto;

            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 11px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 11px;

            display: grid;
            place-items: center;

            color: white;
            background: var(--navy);

            font-size: 22px;
            font-weight: 800;

            box-shadow: 0 7px 18px rgba(11, 31, 51, 0.2);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }

        .logo-text strong {
            color: var(--navy);
            font-size: 20px;
            letter-spacing: -0.4px;
        }

        .logo-text span {
            margin-top: 3px;
            color: var(--muted);
            font-size: 9px;
            letter-spacing: 0.6px;
        }

        .nav-links {
            list-style: none;

            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            position: relative;

            color: var(--text);
            font-size: 14px;
            font-weight: 600;

            transition: color 0.25s ease;
        }

        .nav-links a::after {
            content: "";

            position: absolute;
            left: 0;
            bottom: -7px;

            width: 0;
            height: 2px;

            background: var(--orange);

            transition: width 0.25s ease;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;

            border: none;
            background: transparent;

            color: var(--navy);
            font-size: 28px;

            cursor: pointer;
        }

        .mobile-menu {
            display: none;

            width: min(100% - 40px, var(--max-width));
            margin: auto;
            padding: 0 0 18px;

            flex-direction: column;
            gap: 14px;
        }

        .mobile-menu a {
            padding: 12px 14px;

            border-radius: 10px;

            color: var(--navy);
            background: var(--light);

            font-weight: 600;
        }

        .mobile-menu.open {
            display: flex;
        }

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

        .hero {
            position: relative;
            min-height: 650px;

            width: min(100% - 40px, var(--max-width));
            margin: auto;

            padding: 80px 0;

            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 65px;
        }

        .hero::before {
            content: "";

            position: absolute;
            z-index: -1;

            width: 500px;
            height: 500px;

            right: -220px;
            top: -120px;

            border-radius: 50%;

            background: rgba(25, 118, 210, 0.055);
        }

        .hero-left {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;

            margin-bottom: 22px;
            padding: 8px 14px;

            border: 1px solid rgba(25, 118, 210, 0.18);
            border-radius: 50px;

            background: var(--light-blue);

            color: var(--blue);

            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            color: var(--navy);

            font-size: clamp(42px, 5vw, 64px);
            line-height: 1.08;

            letter-spacing: -2.2px;
            font-weight: 800;
        }

        .hero h1 .orange {
            color: var(--orange);
        }

        .hero-desc {
            max-width: 560px;

            margin-top: 23px;

            color: var(--muted);

            font-size: 17px;
            line-height: 1.8;
        }

        .hero-checks {
            margin-top: 28px;

            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 9px;

            color: var(--text);

            font-size: 14px;
            font-weight: 600;
        }

        .tick {
            width: 23px;
            height: 23px;

            display: inline-grid;
            place-items: center;

            flex-shrink: 0;

            border-radius: 50%;

            background: #e8f3ff;
            color: var(--blue);

            font-size: 13px;
            font-weight: 900;
        }

        .hero-btns {
            margin-top: 32px;

            display: flex;
            align-items: center;
            gap: 14px;
        }

        .btn-primary,
        .btn-outline,
        .btn-white {
            border: none;
            border-radius: 11px;

            padding: 14px 23px;

            cursor: pointer;

            font-size: 14px;
            font-weight: 800;

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                background 0.25s ease;
        }

        .btn-primary {
            background: var(--orange);
            color: white;

            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);

            box-shadow: 0 14px 30px rgba(249, 115, 22, 0.32);
        }

        /* =========================================================
       HERO VIDEO / IMAGE
       ========================================================= */

        .hero-visual {
            position: relative;
        }

        .media-container {
            position: relative;

            width: 100%;
            aspect-ratio: 4 / 3;

            overflow: hidden;

            border-radius: var(--radius-lg);

            background: var(--navy);

            box-shadow: var(--shadow-lg);
        }

        .media-container img,
        .media-container video {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .media-container video {
            display: none;
        }

        .know-more-btn {
            position: absolute;

            left: 50%;
            top: 50%;

            transform: translate(-50%, -50%);

            z-index: 5;

            min-width: 145px;

            padding: 15px 25px;

            border: none;
            border-radius: 10px;

            background: var(--orange);
            color: white;

            font-size: 15px;
            font-weight: 800;

            cursor: pointer;

            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

            transition:
                transform 0.25s ease,
                background 0.25s ease;
        }

        .know-more-btn:hover {
            background: var(--orange-dark);

            transform:
                translate(-50%, -50%) scale(1.05);
        }

        .hero-float-card {
            position: absolute;

            left: -35px;
            bottom: -30px;

            width: 280px;

            display: flex;
            align-items: center;
            gap: 13px;

            padding: 17px;

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

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

            box-shadow: var(--shadow-md);
        }

        .float-icon {
            width: 42px;
            height: 42px;

            display: grid;
            place-items: center;

            flex-shrink: 0;

            border-radius: 11px;

            background: var(--light-blue);

            font-size: 20px;
        }

        .float-text strong {
            display: block;

            color: var(--navy);

            font-size: 12px;
        }

        .float-text p {
            margin-top: 3px;

            color: var(--muted);

            font-size: 10px;
            line-height: 1.4;
        }

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

        .features {
            padding: 100px 20px;

            background: var(--light);
        }

        .section-label,
        .why-label {
            text-align: center;

            color: var(--blue);

            font-size: 12px;
            font-weight: 800;

            text-transform: uppercase;
            letter-spacing: 1.4px;
        }

        .section-title {
            margin-top: 10px;

            color: var(--navy);

            text-align: center;

            font-size: clamp(32px, 4vw, 45px);
            line-height: 1.18;

            letter-spacing: -1.4px;
        }

        .section-underline {
            width: 55px;
            height: 4px;

            margin: 18px auto 55px;

            border-radius: 20px;

            background: var(--orange);
        }

        /* =========================================================
       FEATURE CARDS
       ========================================================= */

        .feature-grid {
            width: min(100%, var(--max-width));
            margin: auto;

            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-card {
            padding: 28px 23px;

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

            background: white;

            box-shadow: var(--shadow-sm);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-7px);

            border-color: rgba(25, 118, 210, 0.25);

            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 53px;
            height: 53px;

            display: grid;
            place-items: center;

            margin-bottom: 18px;

            border-radius: 14px;

            background: var(--light-blue);

            font-size: 24px;
        }

        .feature-card:nth-child(4n + 1) .feature-icon,
        .feature-card:nth-child(4n + 3) .feature-icon {
            background: #fff3e9;
        }

        .feature-card h3 {
            color: var(--navy);

            font-size: 17px;
        }

        .feature-card p {
            margin-top: 9px;

            color: var(--muted);

            font-size: 13px;
            line-height: 1.65;
        }

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

        .cta-banner {
            padding: 85px 20px;

            background:
                linear-gradient(120deg,
                    var(--navy),
                    var(--navy-light));

            overflow: hidden;
        }

        .cta-inner {
            width: min(100%, var(--max-width));

            margin: auto;

            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            align-items: center;

            gap: 65px;
        }

        .cta-mockup {
            position: relative;

            min-height: 300px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .laptop-frame {
            width: 90%;

            padding: 10px;

            border-radius: 13px;

            background: #182c3e;

            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
        }

        .laptop-screen {
            aspect-ratio: 16 / 10;

            overflow: hidden;

            border-radius: 6px;

            background: white;
        }

        .laptop-screen img {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .floating-cab {
            position: absolute;

            right: 0;
            bottom: 0;

            width: 125px;
            height: 125px;

            overflow: hidden;

            border: 6px solid white;
            border-radius: 50%;

            background: var(--orange);

            box-shadow: var(--shadow-md);
        }

        .floating-cab img {
            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .cta-content h2 {
            color: white;

            font-size: clamp(32px, 4vw, 47px);
            line-height: 1.15;

            letter-spacing: -1.3px;
        }

        .cta-content>p {
            max-width: 580px;

            margin-top: 18px;

            color: #cbd8e5;

            font-size: 15px;
            line-height: 1.8;
        }

        .cta-actions {
            margin-top: 28px;

            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--navy);

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

        .btn-white:hover {
            transform: translateY(-2px);
            background: #f1f5f9;
        }

        .cta-note {
            color: #aebfd0;

            font-size: 12px;
            font-style: italic;
        }

        /* =========================================================
       WHY SECTION
       ========================================================= */

        .bottom-section {
            width: min(100% - 40px, var(--max-width));

            margin: auto;

            padding: 100px 0;

            display: grid;
            grid-template-columns: 1.3fr 0.7fr;

            gap: 60px;

            align-items: center;
        }

        .why-label {
            text-align: left;
        }

        .why-title {
            margin-top: 9px;

            color: var(--navy);

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

            line-height: 1.15;
            letter-spacing: -1.3px;
        }

        .why-desc {
            max-width: 650px;

            margin-top: 16px;

            color: var(--muted);

            font-size: 15px;
        }

        .stats-row {
            margin-top: 38px;

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

            gap: 15px;
        }

        .stat-item {
            padding: 18px 10px;

            text-align: center;

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

            background: var(--light);
        }

        .stat-icon {
            font-size: 20px;
        }

        .stat-value {
            margin-top: 5px;

            color: var(--navy);

            font-size: 22px;
            font-weight: 800;
        }

        .stat-label {
            color: var(--muted);

            font-size: 10px;
        }

        /* =========================================================
       CONNECT CARD
       ========================================================= */

        .connect-card {
            padding: 32px;

            border-radius: 23px;

            background:
                linear-gradient(145deg,
                    #f3f8ff,
                    #ffffff);

            border: 1px solid #d9e8f8;

            box-shadow: var(--shadow-sm);
        }

        .connect-card h3 {
            color: var(--navy);

            font-size: 24px;
        }

        .connect-card>p {
            margin-top: 10px;

            color: var(--muted);

            font-size: 13px;
        }

        .connect-list {
            list-style: none;

            margin: 22px 0;

            display: grid;
            gap: 11px;
        }

        .connect-list li {
            display: flex;
            align-items: center;
            gap: 9px;

            color: var(--text);

            font-size: 13px;
            font-weight: 600;
        }

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

        footer {
            background: #071725;

            color: white;
        }

        .footer-inner {
            width: min(100% - 40px, var(--max-width));

            min-height: 110px;

            margin: auto;

            display: flex;
            align-items: center;
            justify-content: space-between;

            gap: 30px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .footer-brand .logo-icon {
            background: white;
            color: var(--navy);
        }

        .footer-brand strong {
            display: block;

            font-size: 17px;
        }

        .footer-brand span:not(.logo-icon) {
            display: block;

            color: #8fa4b7;

            font-size: 9px;
        }

        .footer-links {
            display: flex;
            gap: 25px;

            list-style: none;
        }

        .footer-links a {
            color: #b5c4d1;

            font-size: 12px;

            transition: color 0.25s ease;
        }

        .footer-links a:hover {
            color: white;
        }

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

        @media (max-width: 1050px) {

            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero {
                gap: 40px;
            }

            .bottom-section {
                grid-template-columns: 1fr;
            }

            .connect-card {
                max-width: 600px;
            }
        }

        @media (max-width: 850px) {

            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

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

                padding: 60px 0 80px;
            }

            .hero-left {
                max-width: 700px;
            }

            .hero-visual {
                max-width: 700px;
            }

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

            .cta-content {
                text-align: center;
            }

            .cta-content>p {
                margin-left: auto;
                margin-right: auto;
            }

            .cta-actions {
                justify-content: center;
            }

            .why-label {
                text-align: center;
            }

            .why-title {
                text-align: center;
            }

            .why-desc {
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
        }

        @media (max-width: 600px) {

            .nav {
                width: min(100% - 28px, var(--max-width));
                min-height: 70px;
            }

            .mobile-menu {
                width: min(100% - 28px, var(--max-width));
            }

            .hero {
                width: min(100% - 28px, var(--max-width));

                padding-top: 45px;
            }

            .hero h1 {
                font-size: 40px;
                letter-spacing: -1.5px;
            }

            .hero-desc {
                font-size: 15px;
            }

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

            .hero-btns {
                width: 100%;
            }

            .btn-primary {
                width: 100%;
            }

            .hero-float-card {
                left: 10px;
                bottom: -25px;

                width: calc(100% - 20px);
            }

            .features {
                padding: 75px 14px;
            }

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

            .section-title br {
                display: none;
            }

            .cta-banner {
                padding: 70px 14px;
            }

            .cta-mockup {
                min-height: 220px;
            }

            .floating-cab {
                width: 95px;
                height: 95px;
            }

            .bottom-section {
                width: min(100% - 28px, var(--max-width));

                padding: 75px 0;
            }

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

            .connect-card {
                padding: 25px;
            }

            .footer-inner {
                width: min(100% - 28px, var(--max-width));

                padding: 30px 0;

                flex-direction: column;

                align-items: flex-start;
            }

            .footer-links {
                flex-wrap: wrap;
            }
        }

        /* =========================================================
       ACCESSIBILITY / MOTION
       ========================================================= */

        @media (prefers-reduced-motion: reduce) {

            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                transition: none !important;
            }
        }