
      :root {
        --red: #d40511;
        --yellow: #ffcc00;
        --dark: #1a1a1a;
        --darker: #0f0f0f;
        --mid: #2e2e2e;
        --light: #f5f5f5;
        --white: #ffffff;
        --gray: #888;
        --border: rgba(255, 255, 255, 0.08);
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Barlow", sans-serif;
        background: var(--darker);
        color: var(--white);
        overflow-x: hidden;
      }

      /* ─── NAVBAR ─── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
      }

      .nav-brand {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
      }

      .logo-placeholder {
        width: 100px;
        height: 46px;
        background: var(--yellow);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 900;
        font-size: 13px;
        color: var(--dark);
        letter-spacing: 0.5px;
        flex-shrink: 0;
        overflow: hidden;
      }

      .logo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
      }

      .brand-name {
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 900;
        font-size: 26px;
        letter-spacing: 2px;
        color: var(--white);
        line-height: 1;
      }

      .brand-name span {
        color: var(--yellow);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
      }

      .nav-links a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: color 0.2s;
      }

      .nav-links a:hover {
        color: var(--yellow);
      }

      .nav-cta {
        background: var(--red);
        color: var(--white) !important;
        padding: 9px 22px;
        border-radius: 4px;
        font-weight: 600 !important;
        letter-spacing: 0.8px !important;
        transition: background 0.2s !important;
      }

      .nav-cta:hover {
        background: #b8040e !important;
        color: var(--white) !important;
      }

      /* Hamburger */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }

      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s;
      }

      /* ─── MOBILE MENU ─── */
      .mobile-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px 5%;
        z-index: 999;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        gap: 4px;
      }

      .mobile-menu a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        display: block;
        transition: color 0.2s;
      }

      .mobile-menu a:hover {
        color: var(--yellow);
      }

      /* ─── HERO ─── */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 5% 60px;
        position: relative;
        overflow: hidden;
        text-align: center;
      }

      .hero-bg {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 70% 60% at 50% 30%,
            rgba(212, 5, 17, 0.12) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 50% 40% at 80% 70%,
            rgba(255, 204, 0, 0.06) 0%,
            transparent 60%
          ),
          linear-gradient(180deg, #0f0f0f 0%, #1a1208 100%);
        z-index: 0;
      }

      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
          );
        background-size: 60px 60px;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 820px;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 204, 0, 0.1);
        border: 1px solid rgba(255, 204, 0, 0.25);
        color: var(--yellow);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 28px;
        animation: fadeDown 0.6s ease both;
      }

      .hero-badge::before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--yellow);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(1.4);
        }
      }

      .hero h1 {
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 900;
        font-size: clamp(52px, 9vw, 110px);
        line-height: 0.92;
        letter-spacing: -1px;
        text-transform: uppercase;
        margin-bottom: 24px;
        animation: fadeDown 0.7s 0.1s ease both;
      }

      .hero h1 .accent {
        color: var(--yellow);
      }
      .hero h1 .stroke {
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
        color: transparent;
      }

      .hero-sub {
        font-size: clamp(15px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.55);
        font-weight: 300;
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto 48px;
        animation: fadeDown 0.7s 0.2s ease both;
      }

      /* ─── TRACKING BOX ─── */
      .track-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 36px 40px;
        max-width: 640px;
        margin: 0 auto 48px;
        backdrop-filter: blur(10px);
        animation: fadeUp 0.7s 0.3s ease both;
      }

      .track-box h3 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 20px;
      }

      .track-input-row {
        display: flex;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
        border: 1.5px solid rgba(255, 204, 0, 0.3);
        transition: border-color 0.2s;
      }

      .track-input-row:focus-within {
        border-color: var(--yellow);
      }

      .track-input-row input {
        flex: 1;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.06);
        border: none;
        outline: none;
        color: var(--white);
        font-family: "Barlow", sans-serif;
        font-size: 15px;
        letter-spacing: 0.5px;
      }

      .track-input-row input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }

      .track-btn {
        background: var(--red);
        color: var(--white);
        border: none;
        padding: 16px 32px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.1s;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }

      .track-btn:hover {
        background: #b8040e;
      }
      .track-btn:active {
        transform: scale(0.98);
      }

      .track-hint {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        margin-top: 12px;
        text-align: left;
      }

      /* ─── STATS ROW ─── */
      .stats-row {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeUp 0.7s 0.45s ease both;
      }

      .stat {
        text-align: center;
      }

      .stat-num {
        font-family: "Barlow Condensed", sans-serif;
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 900;
        color: var(--yellow);
        line-height: 1;
      }

      .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 4px;
      }

      /* ─── SERVICES ─── */
      .section {
        padding: 100px 5%;
      }

      .section-label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--yellow);
        margin-bottom: 14px;
      }

      .section-title {
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 900;
        font-size: clamp(36px, 5vw, 62px);
        line-height: 1;
        text-transform: uppercase;
        margin-bottom: 16px;
      }

      .section-sub {
        color: rgba(255, 255, 255, 0.45);
        font-size: 16px;
        max-width: 500px;
        line-height: 1.7;
        margin-bottom: 60px;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
      }

      .service-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 36px 30px;
        transition:
          border-color 0.3s,
          transform 0.3s,
          background 0.3s;
        cursor: default;
      }

      .service-card:hover {
        border-color: rgba(255, 204, 0, 0.4);
        background: rgba(255, 204, 0, 0.05);
        transform: translateY(-4px);
      }

      .service-icon {
        width: 52px;
        height: 52px;
        background: rgba(212, 5, 17, 0.15);
        border: 1px solid rgba(212, 5, 17, 0.3);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 24px;
      }

      .service-card h4 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .service-card p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.7;
      }

      /* ─── WHY US ─── */
      .why-section {
        background: rgba(255, 255, 255, 0.02);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }

      .why-features {
        display: flex;
        flex-direction: column;
        gap: 28px;
      }

      .why-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }

      .why-num {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 42px;
        font-weight: 900;
        color: rgba(255, 204, 0, 0.2);
        line-height: 1;
        flex-shrink: 0;
        width: 48px;
      }

      .why-text h4 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
      }

      .why-text p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.7;
      }

      .why-visual {
        background: rgba(212, 5, 17, 0.08);
        border: 1px solid rgba(212, 5, 17, 0.2);
        border-radius: 16px;
        padding: 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .why-visual::before {
        content: "🌍";
        font-size: 120px;
        display: block;
        margin-bottom: 24px;
        filter: grayscale(20%);
      }

      .why-visual h3 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 52px;
        font-weight: 900;
        color: var(--yellow);
        line-height: 1;
        text-transform: uppercase;
      }

      .why-visual p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 8px;
      }

      /* ─── ZONES ─── */
      .zones-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
      }

      .zone-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 28px 24px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition:
          border-color 0.2s,
          background 0.2s;
      }

      .zone-card:hover {
        border-color: rgba(255, 204, 0, 0.3);
        background: rgba(255, 204, 0, 0.04);
      }

      .zone-flag {
        font-size: 32px;
      }

      .zone-info h5 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .zone-info p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.35);
        margin-top: 2px;
      }

      /* ─── CTA BANNER ─── */
      .cta-banner {
        background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
        padding: 80px 5%;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
      }

      .cta-banner > * {
        position: relative;
      }

      .cta-banner h2 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1;
        margin-bottom: 16px;
      }

      .cta-banner p {
        font-size: 16px;
        opacity: 0.75;
        margin-bottom: 36px;
      }

      .btn-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn-primary {
        background: var(--yellow);
        color: var(--dark);
        border: none;
        padding: 16px 36px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition:
          transform 0.15s,
          box-shadow 0.15s;
        display: inline-block;
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      }

      .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.4);
        padding: 14px 34px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        transition:
          border-color 0.2s,
          background 0.2s;
        display: inline-block;
      }

      .btn-outline:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.08);
      }

      /* ─── FOOTER ─── */
      footer {
        background: #080808;
        border-top: 1px solid var(--border);
        padding: 60px 5% 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
      }

      .footer-brand .brand-name {
        font-size: 28px;
        margin-bottom: 16px;
      }

      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.35);
        line-height: 1.7;
        max-width: 280px;
        margin-bottom: 24px;
      }

      .social-links {
        display: flex;
        gap: 12px;
      }

      .social-links a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--border);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 16px;
        transition:
          background 0.2s,
          border-color 0.2s;
      }

      .social-links a:hover {
        background: rgba(255, 204, 0, 0.1);
        border-color: rgba(255, 204, 0, 0.3);
      }

      .footer-col h5 {
        font-family: "Barlow Condensed", sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 20px;
      }

      .footer-col a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
        margin-bottom: 10px;
        transition: color 0.2s;
      }

      .footer-col a:hover {
        color: var(--yellow);
      }

      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }

      .footer-bottom p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.25);
      }

      .footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
      }
      .footer-bottom a:hover {
        color: var(--yellow);
      }

      /* ─── DIVIDER ─── */
      .divider {
        width: 60px;
        height: 3px;
        background: var(--red);
        margin-bottom: 48px;
        border-radius: 2px;
      }

      /* ─── ANIMATIONS ─── */
      @keyframes fadeDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ─── RESPONSIVE ─── */
      @media (max-width: 1024px) {
        .why-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }

        .hero {
          padding: 100px 5% 48px;
        }

        .track-box {
          padding: 24px 20px;
        }
        .track-btn {
          padding: 16px 20px;
          font-size: 14px;
        }

        .stats-row {
          gap: 24px;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }

        .section {
          padding: 72px 5%;
        }
      }

      @media (max-width: 480px) {
        .track-input-row {
          flex-direction: column;
          border-radius: 8px;
        }
        .track-btn {
          border-radius: 0 0 6px 6px;
          justify-content: center;
        }
        .track-input-row input {
          border-radius: 6px 6px 0 0;
        }
      }