:root {
            --blue: #0001FB;
            --red: #ED0F21;
            --dark: #07101f;
            --dark-2: #0d1728;
            --text: #172033;
            --muted: #667085;
            --light: #f5f7fb;
            --border: #e7eaf0;
            --white: #ffffff;
            --radius: 24px;
            --shadow: 0 20px 60px rgba(7, 16, 31, .10);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", 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,
        input,
        select,
        textarea {
            font-family: inherit;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        .section {
            padding: 110px 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--blue);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label:before {
            content: "";
            width: 28px;
            height: 3px;
            border-radius: 5px;
            background: var(--red);
        }

        .section-title {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: clamp(34px, 4vw, 52px);
            line-height: 1.1;
            letter-spacing: -1.8px;
            color: var(--dark);
            font-weight: 800;
        }

        .section-description {
            color: var(--muted);
            max-width: 650px;
            margin-top: 18px;
            font-size: 16px;
        }

        /* =========================
           TOP BAR
        ========================= */

        .topbar {
            background: var(--dark);
            color: #fff;
            font-size: 12px;
        }

        .topbar-inner {
            min-height: 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .topbar i {
            color: var(--red);
            margin-right: 6px;
        }

        /* =========================
           HEADER
        ========================= */

        .header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(255,255,255,.94);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(231,234,240,.8);
            transition: .3s ease;
        }

        .header.scrolled {
            box-shadow: 0 10px 35px rgba(7,16,31,.08);
        }

        .nav {
            height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        a.logo img {
            width: 100px;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 13px;
            background: var(--blue);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 19px;
            box-shadow: 0 10px 25px rgba(0,1,251,.25);
        }

        .logo-text {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 23px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .logo-text span {
            color: var(--blue);
        }

        .logo-sub {
            display: block;
            color: var(--red);
            font-size: 8px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: -3px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-menu a {
            font-size: 14px;
            font-weight: 600;
            color: #596273;
            transition: .25s;
        }

        .nav-menu a:hover {
            color: var(--blue);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .phone-link {
            font-size: 13px;
            font-weight: 700;
        }

        .phone-link i {
            color: var(--blue);
            margin-right: 5px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 50px;
            padding: 0 24px;
            border-radius: 13px;
            border: 0;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: .3s ease;
        }

        .btn-primary {
            color: #fff;
            background: var(--blue);
            box-shadow: 0 12px 25px rgba(0,1,251,.23);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(0,1,251,.3);
        }

        .btn-red {
            color: #fff;
            background: var(--red);
            box-shadow: 0 12px 25px rgba(237,15,33,.2);
        }

        .btn-red:hover {
            transform: translateY(-3px);
        }

        .mobile-toggle {
            display: none;
            width: 45px;
            height: 45px;
            border: 0;
            border-radius: 12px;
            background: var(--light);
            color: var(--dark);
            font-size: 19px;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            position: relative;
            min-height: 730px;
            padding: 75px 0 130px;
            overflow: hidden;
            background:
                radial-gradient(circle at 8% 20%, rgba(0,1,251,.07), transparent 30%),
                radial-gradient(circle at 90% 70%, rgba(237,15,33,.06), transparent 28%),
                #fff;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 48% 52%;
            align-items: center;
            gap: 30px;
        }

        .hero-content {
            position: relative;
            z-index: 5;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 8px 13px;
            border-radius: 100px;
            background: #eef0ff;
            color: var(--blue);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-bottom: 23px;
        }

        .eyebrow span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red);
            animation: pulse 1.8s infinite;
        }

        @keyframes pulse {
            0%,100% {
                box-shadow: 0 0 0 0 rgba(237,15,33,.4);
            }
            50% {
                box-shadow: 0 0 0 7px rgba(237,15,33,0);
            }
        }

        .hero h1 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: clamp(45px, 5.4vw, 72px);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -3.8px;
            color: var(--dark);
        }

        .hero h1 .blue {
            color: var(--blue);
        }

        .hero h1 .red {
            color: var(--red);
        }

        .hero-description {
            margin-top: 25px;
            max-width: 570px;
            color: #667085;
            font-size: 17px;
            line-height: 1.75;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-top: 34px;
        }

        .btn-outline {
            background: #fff;
            color: var(--dark);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            border-color: var(--blue);
            color: var(--blue);
            transform: translateY(-3px);
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-top: 37px;
        }

        .avatars {
            display: flex;
        }

        .avatars span {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 3px solid #fff;
            margin-left: -8px;
            overflow: hidden;
            background: #ddd;
        }

        .avatars span:first-child {
            margin-left: 0;
        }

        .avatars img {
            height: 100%;
            object-fit: cover;
        }

        .trust-copy strong {
            display: block;
            font-size: 13px;
        }

        .trust-copy small {
            color: var(--muted);
            font-size: 11px;
        }

        /* HERO VISUAL */

        .hero-visual {
            position: relative;
            min-height: 570px;
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 20px;
            width: 88%;
            height: 500px;
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(7,16,31,.18);
        }

        .hero-image:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7,16,31,.03), rgba(7,16,31,.48));
        }

        .hero-image img {
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .hero:hover .hero-image img {
            transform: scale(1.04);
        }

        .route-panel {
            position: absolute;
            left: 0;
            bottom: 30px;
            width: 390px;
            min-height: 235px;
            background: rgba(255,255,255,.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 25px 70px rgba(7,16,31,.16);
            border: 1px solid rgba(255,255,255,.8);
            z-index: 5;
        }

        .route-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .route-title {
            font-weight: 800;
            font-size: 14px;
        }

        .live {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 9px;
            color: #17a35b;
            font-weight: 800;
            text-transform: uppercase;
        }

        .live span {
            width: 6px;
            height: 6px;
            background: #17a35b;
            border-radius: 50%;
        }

        .route-map {
            position: relative;
            height: 105px;
        }

        .route-line {
            position: absolute;
            top: 48px;
            left: 45px;
            width: 275px;
            height: 55px;
            border-top: 2px dashed var(--blue);
            border-radius: 50%;
            transform: rotate(8deg);
        }

        .route-plane {
            position: absolute;
            left: 155px;
            top: 24px;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--red);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 14px;
            transform: rotate(10deg);
            box-shadow: 0 10px 20px rgba(237,15,33,.25);
            animation: fly 3.5s ease-in-out infinite;
        }

        @keyframes fly {
            0%,100% {
                transform: translate(0,0) rotate(10deg);
            }
            50% {
                transform: translate(45px,-18px) rotate(10deg);
            }
        }

        .location {
            position: absolute;
            top: 0;
        }

        .location.usa {
            left: 0;
        }

        .location.guyana {
            right: 0;
        }

        .location-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            background: #eef0ff;
            color: var(--blue);
            font-size: 18px;
        }

        .location.guyana .location-icon {
            background: #fff0f1;
            color: var(--red);
        }

        .location strong {
            display: block;
            font-size: 10px;
            margin-top: 7px;
        }

        .location small {
            color: var(--muted);
            font-size: 8px;
        }

        .hero-floating {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            padding: 11px 14px;
            border-radius: 14px;
            box-shadow: 0 15px 40px rgba(7,16,31,.13);
            z-index: 8;
            animation: float 4s ease-in-out infinite;
        }

        .hero-floating i {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            color: #fff;
        }

        .hero-floating strong {
            display: block;
            font-size: 10px;
        }

        .hero-floating small {
            display: block;
            font-size: 8px;
            color: var(--muted);
        }

        .floating-plane {
            right: -15px;
            top: 55px;
        }

        .floating-plane i {
            background: var(--blue);
        }

        .floating-box {
            right: 35px;
            bottom: 0;
            animation-delay: 1s;
        }

        .floating-box i {
            background: var(--red);
        }

        @keyframes float {
            0%,100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-13px);
            }
        }

        /* =========================
           STATS
        ========================= */

        .stats {
            position: relative;
            z-index: 10;
            margin-top: -60px;
        }

        .stats-box {
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 20px 60px rgba(7,16,31,.1);
            border: 1px solid var(--border);
            display: grid;
            grid-template-columns: repeat(4,1fr);
            padding: 28px;
        }

        .stat {
            padding: 5px 30px;
            border-right: 1px solid var(--border);
        }

        .stat:last-child {
            border-right: 0;
        }

        .stat strong {
            display: block;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
        }

        .stat span {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        /* =========================
           HOW IT WORKS
        ========================= */

        .how {
            background: var(--light);
            margin-top: -85px !important;
            padding-top: 200px;
        }

        .section-heading-center {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 60px;
        }

        .section-heading-center .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
        }

        .step {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 28px;
            position: relative;
            transition: .35s ease;
        }

        .step:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 52px;
            height: 52px;
            border-radius: 15px;
            display: grid;
            place-items: center;
            font-weight: 800;
            color: var(--blue);
            background: #eef0ff;
            margin-bottom: 24px;
        }

        .step:nth-child(2) .step-number,
        .step:nth-child(4) .step-number {
            color: var(--red);
            background: #fff0f1;
        }

        .step h3 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 18px;
            margin-bottom: 9px;
        }

        .step p {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.7;
        }

        .step-arrow {
            position: absolute;
            right: -17px;
            top: 40px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid var(--border);
            display: grid;
            place-items: center;
            color: var(--blue);
            z-index: 3;
        }

        /* =========================
           SERVICES
        ========================= */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 25px;
            margin-top: 55px;
        }

        .service-card {
            position: relative;
            min-height: 510px;
            border-radius: 30px;
            overflow: hidden;
            color: #fff;
            box-shadow: var(--shadow);
        }

        .service-card-image {
            position: absolute;
            inset: 0;
        }

        .service-card-image:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7,16,31,.05), rgba(7,16,31,.9));
        }

        .service-card-image img {
            height: 100%;
            object-fit: cover;
            transition: transform .8s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.07);
        }

        .service-content {
            position: absolute;
            inset: auto 0 0;
            padding: 34px;
            z-index: 2;
        }

        .service-icon {
            width: 55px;
            height: 55px;
            border-radius: 16px;
            background: rgba(255,255,255,.15);
            backdrop-filter: blur(10px);
            display: grid;
            place-items: center;
            font-size: 21px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .service-card p {
            color: rgba(255,255,255,.78);
            font-size: 14px;
            max-width: 480px;
        }

        .service-meta {
            display: flex;
            gap: 9px;
            flex-wrap: wrap;
            margin-top: 22px;
        }

        .service-meta span {
            padding: 7px 11px;
            border-radius: 100px;
            background: rgba(255,255,255,.13);
            border: 1px solid rgba(255,255,255,.15);
            font-size: 10px;
            font-weight: 700;
        }

        /* =========================
           WHY US
        ========================= */

        .why {
            background: var(--dark);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .why:before {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            right: -250px;
            top: -300px;
            background: rgba(0,1,251,.2);
            border-radius: 50%;
            filter: blur(80px);
        }

        .why .section-title {
            color: #fff;
        }

        .why .section-description {
            color: #9ca6b7;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 65px;
            position: relative;
            z-index: 2;
        }

        .why-image {
            height: 540px;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
        }

        .why-image img {
            height: 100%;
            object-fit: cover;
        }

        .why-image:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 45%, rgba(7,16,31,.8));
        }

        .image-badge {
            position: absolute;
            z-index: 3;
            left: 25px;
            bottom: 25px;
            background: #fff;
            color: var(--dark);
            border-radius: 18px;
            padding: 17px 20px;
        }

        .image-badge strong {
            display: block;
            font-size: 24px;
            color: var(--blue);
            font-family: "Plus Jakarta Sans", sans-serif;
        }

        .image-badge span {
            font-size: 10px;
            color: var(--muted);
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 15px;
            margin-top:40px;
        }

        .benefit {
            padding: 24px;
            border: 1px solid rgba(255,255,255,.08);
            background: rgba(255,255,255,.035);
            border-radius: 18px;
            transition: .3s;
        }

        .benefit:hover {
            border-color: rgba(0,1,251,.7);
            transform: translateY(-4px);
        }

        .benefit-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(0,1,251,.15);
            color: #6f70ff;
            margin-bottom: 15px;
        }

        .benefit:nth-child(even) .benefit-icon {
            background: rgba(237,15,33,.12);
            color: #ff6672;
        }

        .benefit h3 {
            font-size: 15px;
            margin-bottom: 7px;
        }

        .benefit p {
            color: #8993a5;
            font-size: 12px;
            line-height: 1.7;
        }

        /* =========================
           QUOTE
        ========================= */

        .quote-section {
            background: var(--light);
        }

        .quote-wrapper {
            display: grid;
            grid-template-columns: .8fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .quote-info h2 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: clamp(35px,4vw,50px);
            line-height: 1.08;
            letter-spacing: -2px;
        }

        .quote-info p {
            color: var(--muted);
            margin-top: 18px;
            max-width: 460px;
        }

        .quote-list {
            margin-top: 27px;
            display: grid;
            gap: 12px;
        }

        .quote-list div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 600;
        }

        .quote-list i {
            color: var(--blue);
        }

        .quote-form {
            background: #fff;
            border-radius: 28px;
            padding: 35px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .form-title {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 16px;
        }

        .form-group.full {
            grid-column: 1/-1;
        }

        .form-group label {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: .7px;
            color: #667085;
            margin-bottom: 7px;
        }

        .form-control {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            border: 1px solid var(--border);
            border-radius: 12px;
            outline: 0;
            background: #fff;
            color: var(--text);
            font-size: 13px;
            transition: .25s;
        }

        textarea.form-control {
            height: 110px;
            padding-top: 13px;
            resize: vertical;
        }

        .form-control:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(0,1,251,.07);
        }

        .quote-result {
            display: none;
            margin-top: 15px;
            padding: 15px;
            border-radius: 12px;
            background: #eef0ff;
            color: var(--blue);
            font-size: 13px;
            font-weight: 700;
        }

        /* =========================
           CTA
        ========================= */

        .cta {
            padding: 100px 0 100px;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            min-height: 330px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            padding: 60px;
            background:
                linear-gradient(90deg, rgba(0,1,251,.98) 0%, rgba(0,1,251,.88) 45%, rgba(0,1,251,.45) 100%),
                url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1800&q=85") center/cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            color: #fff;
        }

        .cta-content h2 {
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: clamp(34px,4vw,52px);
            line-height: 1.08;
            letter-spacing: -2px;
        }

        .cta-content p {
            margin-top: 13px;
            color: rgba(255,255,255,.75);
        }

        .cta-actions {
            margin-top: 25px;
            display: flex;
            gap: 12px;
        }

        .cta .btn-white {
            background: #fff;
            color: var(--blue);
        }

        .cta .btn-white:hover {
            transform: translateY(-3px);
        }

        .cta .btn-whatsapp {
            background: #20bd5a;
            color: #fff;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: var(--dark);
            color: #929bad;
            padding: 75px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 50px;
            padding-bottom: 55px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .footer-logo {
            color: #fff;
        }

        .footer-about {
            max-width: 350px;
            font-size: 13px;
            line-height: 1.8;
            margin-top: 17px;
        }

        .socials {
            display: flex;
            gap: 8px;
            margin-top: 22px;
        }

        .socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: rgba(255,255,255,.07);
            transition: .3s;
        }

        .socials a:hover {
            background: var(--blue);
            color: #fff;
            transform: translateY(-3px);
        }

        footer h4 {
            color: #fff;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        footer ul {
            list-style: none;
            display: grid;
            gap: 11px;
        }

        footer li,
        footer li a {
            font-size: 12px;
            transition: .25s;
        }

        footer li a:hover {
            color: #fff;
        }

        .contact-item {
            display: flex;
            gap: 11px;
            align-items: flex-start;
        }

        .contact-item i {
            color: var(--red);
            margin-top: 3px;
            width: 14px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            font-size: 11px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        /* =========================
           WHATSAPP FLOAT
        ========================= */

        .whatsapp {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #20bd5a;
            color: #fff;
            font-size: 25px;
            z-index: 1000;
            box-shadow: 0 15px 30px rgba(32,189,90,.3);
            transition: .3s;
        }

        .whatsapp:hover {
            transform: scale(1.08);
        }

        /* =========================
           REVEAL
        ========================= */

        .reveal {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity .8s ease, transform .8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media(max-width: 1050px) {
            .nav-menu {
                gap: 20px;
            }

            .phone-link {
                display: none;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-content {
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons,
            .hero-trust {
                justify-content: center;
            }

            .hero-visual {
                max-width: 700px;
                width: 100%;
                margin: 0 auto;
            }

            .steps {
                grid-template-columns: repeat(2,1fr);
            }

            .step-arrow {
                display: none;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .quote-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width: 800px) {
            .topbar {
                display: none;
            }

            .nav {
                height: 72px;
            }

            .nav-menu,
            .nav-actions {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .nav.mobile-open .nav-menu {
                display: flex;
                position: absolute;
                top: 72px;
                left: 20px;
                right: 20px;
                background: #fff;
                padding: 20px;
                border-radius: 18px;
                box-shadow: var(--shadow);
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
                border: 1px solid var(--border);
            }

            .hero {
                padding-top: 55px;
            }

            .hero h1 {
                letter-spacing: -2.5px;
            }

            .hero-visual {
                min-height: 520px;
            }

            .hero-image {
                width: 94%;
                height: 430px;
            }

            .route-panel {
                width: 330px;
                left: 0;
                bottom: 20px;
            }

            .floating-plane {
                right: 0;
            }

            .floating-box {
                right: 10px;
            }

            .stats-box {
                grid-template-columns: repeat(2,1fr);
                gap: 20px;
            }

            .stat {
                border-right: 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2,1fr);
            }
        }

        @media(max-width: 600px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .section {
                padding: 75px 0;
            }

            .hero {
                min-height: auto;
                padding-bottom: 70px;
            }

            .hero h1 {
                font-size: 43px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .hero-trust {
                flex-direction: column;
            }

            .hero-visual {
                min-height: 450px;
            }

            .hero-image {
                position: relative;
                top: auto;
                right: auto;
                width: 100%;
                height: 350px;
            }

            .route-panel {
                width: calc(100% - 20px);
                left: 10px;
                bottom: 0;
            }

            .floating-plane,
            .floating-box {
                display: none;
            }

            .stats {
                margin-top: -10px;
            }

            .stats-box {
                padding: 20px 10px;
            }

            .stat {
                padding: 5px 10px;
            }

            .stat strong {
                font-size: 22px;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-height: 470px;
            }

            .service-content {
                padding: 25px;
            }

            .why-image {
                height: 400px;
            }

            .benefits {
                grid-template-columns: 1fr;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full {
                grid-column: auto;
            }

            .quote-form {
                padding: 24px;
            }

            .cta-box {
                padding: 35px 25px;
                min-height: 400px;
            }

            .cta-actions {
                flex-direction: column;
            }

            .cta-actions .btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }