
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0a1628;
    --navy-mid: #142240;
    --blue: #1565c0;
    --blue-bright: #1e88e5;
    --orange: #e65100;
    --orange-bright: #f57c00;
    --gold: #f9a825;
    --green: #2e7d32;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --gray: #90a4ae;
    --text-light: #cfd8dc;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,22,40,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 120px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 120px; width: auto; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--orange-bright) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 75% 50%, rgba(21,101,192,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(230,81,0,0.12) 0%, transparent 60%),
      linear-gradient(160deg, #0a1628 0%, #0d1f3c 60%, #0a1628 100%);
  }
  .hero-grid {
    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: 60px 60px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7vw, 70px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .hero h1 span { color: var(--blue-bright); }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 40px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); }
  .btn-secondary {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

  .hero-visual {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.9;
  }
  .hero-visual img {
    width: clamp(260px, 35vw, 500px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(30,136,229,0.25));
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--blue);
    padding: 28px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: linear-gradient(90deg, var(--blue) 0%, #1565c0 100%);
  }
  .stat {
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-align: center;
  }
  .stat:last-child { border-right: none; }
  .stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 4px;
  }
  .stat-number span { color: var(--gold); }
  .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  /* SECTION BASE */
  section { padding: 100px 5%; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-bright);
    margin-bottom: 16px;
  }
  .section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange-bright);
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.0;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 56px;
  }

  /* SERVICES */
  .services { background: var(--navy-mid); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .service-card {
    background: var(--navy-mid);
    padding: 36px 28px;
    transition: background 0.25s;
    cursor: default;
  }
  .service-card:hover { background: rgba(21,101,192,0.15); }
  .service-icon {
    width: 48px;
    height: 48px;
    background: rgba(21,101,192,0.2);
    border: 1px solid rgba(30,136,229,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    color: var(--white);
  }
  .service-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.65;
  }
  .service-arrow {
    margin-top: 20px;
    font-size: 13px;
    color: var(--blue-bright);
    font-weight: 500;
    letter-spacing: 0.06em;
  }

  /* WHY US */
  .why { background: var(--navy); }
  .why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .why-img-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
  }
  .why-img-wrap img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(21,101,192,0.3));
  }
  .why-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--orange);
    padding: 16px 20px;
    border-radius: 6px;
    text-align: center;
  }
  .why-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
  }
  .why-badge-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
  }
  .why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
  .why-point { display: flex; gap: 16px; align-items: flex-start; }
  .why-point-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 8px;
    flex-shrink: 0;
  }
  .why-point h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .why-point p { font-size: 14px; font-weight: 300; color: var(--text-light); line-height: 1.6; }

  /* COVERAGE MAP */
  .coverage { background: var(--navy-mid); text-align: center; }
  .coverage .section-sub { margin-left: auto; margin-right: auto; }
  .map-placeholder {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 48px 24px;
    overflow: hidden;
  }
  .route-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .route-port {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
  }
  .port-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue-bright);
    border: 2px solid rgba(255,255,255,0.4);
  }
  .port-dot.active { background: var(--gold); width: 18px; height: 18px; }
  .port-name { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
  .route-dash {
    flex: 1;
    min-width: 24px;
    max-width: 60px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--blue-bright) 0, var(--blue-bright) 6px, transparent 6px, transparent 12px);
    margin-bottom: 20px;
  }
  .coverage-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
  .cov-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1px solid rgba(30,136,229,0.4);
    border-radius: 100px;
    color: var(--blue-bright);
  }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: 'SPL';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 320px;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -0.04em;
  }
  .cta-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    position: relative;
  }
  .cta-section p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    position: relative;
  }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-white {
    background: var(--white);
    color: var(--blue);
    padding: 14px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s;
    display: inline-block;
  }
  .btn-white:hover { opacity: 0.9; }

  /* CONTACT */
  .contact { background: var(--navy); }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .contact-info p { font-size: 15px; font-weight: 300; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
  .contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
  .contact-detail-icon {
    width: 36px;
    height: 36px;
    background: rgba(21,101,192,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-detail-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
  .contact-detail-text strong { color: var(--white); display: block; font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
  .form-field input, .form-field select, .form-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 11px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--blue-bright);
  }
  .form-field select { cursor: pointer; }
  .form-field select option { background: var(--navy-mid); }
  .form-field textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--orange-bright); }

  /* FOOTER */
  footer {
    background: #060e1a;
    padding: 48px 5% 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.7; }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: var(--gray); }
  .footer-bottom a { color: var(--blue-bright); text-decoration: none; }

  /* ANIMATIONS */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    .hero-visual { display: none; }
    .stats-strip { grid-template-columns: repeat(2,1fr); }
    .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav ul { display: none; }
    .form-row-2 { grid-template-columns: 1fr; }
  }
