    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Work Sans', sans-serif;
      color: #fff;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      background: #060C18;
    }
    ::selection { background: #0243C6; color: #fff; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { border: none; background: none; cursor: pointer; font-family: inherit; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: rgba(6,12,24,0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .navbar-logo img {
      height: 32px; width: auto;
      filter: brightness(0) invert(1);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.6);
      transition: color 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-cta {
      padding: 10px 24px;
      background: #0243C6;
      color: #fff !important;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(2,67,198,0.3);
    }
    .nav-cta:hover {
      background: #0335a0;
      box-shadow: 0 6px 20px rgba(2,67,198,0.4);
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      padding: 8px;
      color: #fff;
    }
    .menu-toggle svg {
      width: 24px; height: 24px;
      stroke: currentColor; stroke-width: 2;
      fill: none; stroke-linecap: round; stroke-linejoin: round;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(6,12,24,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 100;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open { display: flex; opacity: 1; }
    .mobile-menu a {
      font-size: 22px;
      font-weight: 600;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: #02C98F; }
    .mobile-menu-close {
      position: absolute;
      top: 24px; right: 24px;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      transition: background 0.3s;
      color: #fff;
    }
    .mobile-menu-close:hover { background: rgba(255,255,255,0.15); }

    /* ===== PAGE HEADER ===== */
    .page-header {
      padding: 140px 24px 60px;
      text-align: center;
      background: linear-gradient(180deg, #060C18 0%, #0D1B33 100%);
      position: relative;
    }
    .page-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(2,201,143,0.3), transparent);
    }
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 24px;
    }
    .breadcrumb a {
      color: rgba(255,255,255,0.4);
      transition: color 0.3s;
    }
    .breadcrumb a:hover { color: #02C98F; }
    .breadcrumb svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
    .page-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .page-title .highlight { color: #02C98F; }
    .page-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      line-height: 1.75;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== FLEET GRID ===== */
    .fleet-grid-section {
      padding: 64px 24px 96px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .fleet-grid-card {
      display: block;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      cursor: pointer;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
      color: inherit;
      text-decoration: none;
    }
    .fleet-grid-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    }
    .fleet-grid-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fleet-grid-card:hover .fleet-grid-card-bg {
      transform: scale(1.06);
    }
    .fleet-grid-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6,12,24,0) 0%, rgba(6,12,24,0.15) 40%, rgba(6,12,24,0.8) 100%);
      transition: background 0.5s;
    }
    .fleet-grid-card:hover .fleet-grid-card-overlay {
      background: linear-gradient(180deg, rgba(6,12,24,0) 0%, rgba(6,12,24,0.1) 40%, rgba(6,12,24,0.85) 100%);
    }
    .fleet-grid-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px;
      z-index: 2;
    }
    .fleet-grid-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .fleet-grid-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s, transform 0.4s;
    }
    .fleet-grid-card:hover p {
      opacity: 1;
      transform: translateY(0);
    }


    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 80px 24px;
      text-align: center;
      background: linear-gradient(180deg, #0D1B33 0%, #060C18 100%);
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .cta-section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(22px, 4vw, 36px);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .cta-section p {
      color: rgba(255,255,255,0.5);
      font-size: 16px;
      max-width: 520px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: #02C98F;
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s;
      box-shadow: 0 8px 24px rgba(2,201,143,0.35);
      font-size: 15px;
    }
    .btn-primary:hover {
      box-shadow: 0 12px 32px rgba(2,201,143,0.45);
      transform: translateY(-2px);
    }
    .btn-primary svg { transition: transform 0.3s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    /* ===== FOOTER ===== */
    .footer {
      background: #060C18;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 64px 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
    }
    .footer-logo {
      height: 32px; width: auto;
      filter: brightness(0) invert(1);
      margin-bottom: 20px;
    }
    .footer-desc {
      color: rgba(255,255,255,0.35);
      font-size: 14px;
      line-height: 1.7;
      max-width: 320px;
    }
    .footer h4 {
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.3);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: #02C98F; }
    .footer-legal {
      color: rgba(255,255,255,0.3);
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-bottom {
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
      transition: color 0.3s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.4); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .navbar-mobile-actions { display: flex; }
      .menu-toggle { display: block; }
      .fleet-grid { grid-template-columns: repeat(2, 1fr); }
      .fleet-grid-card p { opacity: 1; transform: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .page-header { padding: 120px 20px 48px; }
      .fleet-grid-section { padding: 48px 16px 72px; }
      .fleet-grid { gap: 16px; }
      .fleet-grid-card h3 { font-size: 17px; }
      .fleet-grid-card p { opacity: 1; transform: none; }
    }
    @media (max-width: 560px) {
      .fleet-grid { grid-template-columns: 1fr; }
      .fleet-grid-card h3 { font-size: 18px; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    }

    /* ===== LANGUAGE SWITCHER ===== */
    .lang-switch { display: flex; align-items: center; gap: 6px; margin-left: 12px; font-size: 13px; font-weight: 600; font-family: 'Poppins', sans-serif; }
    .lang-active { color: #02C98F; }
    .lang-link { color: rgba(255,255,255,0.4); transition: color 0.3s; }
    .lang-link:hover { color: #fff; }
    .lang-sep { color: rgba(255,255,255,0.15); }

    /* ===== COOKIE CONSENT ===== */
    .cookie-consent {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: rgba(6,12,24,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 24px;
      font-family: 'Work Sans', sans-serif;
    }
    .cookie-consent-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .cookie-consent-text {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
      flex: 1;
      min-width: 200px;
    }
    .cookie-consent-text a { color: #02C98F; text-decoration: underline; }
    .cookie-consent-buttons { display: flex; gap: 12px; flex-shrink: 0; }
    .cookie-btn-accept {
      padding: 10px 28px;
      background: #02C98F;
      color: #060C18;
      font-weight: 600;
      font-size: 14px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.3s;
    }
    .cookie-btn-decline {
      padding: 10px 28px;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.6);
      font-weight: 500;
      font-size: 14px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.3s;
    }
    @media (max-width: 640px) {
      .cookie-consent { padding: 16px; }
      .cookie-consent-inner { flex-direction: column; gap: 16px; }
      .cookie-consent-text { font-size: 13px; min-width: 0; }
      .cookie-consent-buttons { width: 100%; }
      .cookie-btn-accept, .cookie-btn-decline { flex: 1; padding: 12px 16px; text-align: center; }
    }

    /* Smooth page load */
    body { animation: fadeIn 0.5s ease; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
