:root {
      --navy: #071a38;
      --navy-2: #0c2954;
      --navy-3: #041025;
      --blue: #174f91;
      --gold: #f2bd3d;
      --gold-2: #ffd76f;
      --ink: #0d203d;
      --slate: #5c6879;
      --line: #dbe2ea;
      --mist: #f4f7fa;
      --white: #ffffff;
      --radius: 22px;
      --shadow: 0 22px 70px rgba(7, 26, 56, .13);
      --wrap: min(1180px, calc(100% - 48px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: "DM Sans", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; }
    :focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
    .wrap { width: var(--wrap); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      color: var(--blue);
      font-family: "Manrope", sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .eyebrow.light { color: var(--gold-2); }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { font-family: "Manrope", sans-serif; }
    h2 {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: 47px;
      line-height: 1.05;
      letter-spacing: -.045em;
    }
    .lead { max-width: 650px; color: var(--slate); font-size: 18px; line-height: 1.72; }
    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-family: "Manrope", sans-serif;
      font-size: 14px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button.gold { color: #2e2104; background: var(--gold); }
    .button.gold:hover { background: var(--gold-2); }
    .button.ghost { color: #fff; border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.06); }
    .button.ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
    .arrow { font-size: 18px; line-height: 1; }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,.13);
      background: linear-gradient(180deg, rgba(4,16,37,.88), rgba(4,16,37,.45));
      backdrop-filter: blur(14px);
      transition: background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled { background: rgba(4,16,37,.97); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
    .nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
    .brand { flex: 0 0 auto; }
    .brand img { width: 238px; height: auto; }
    .desktop-nav { display: flex; align-items: center; gap: 31px; }
    .desktop-nav > a:not(.button),
    .nav-dropdown summary {
      color: rgba(255,255,255,.76);
      font-size: 14px;
      font-weight: 600;
      transition: color .2s ease;
    }
    .desktop-nav > a:not(.button):hover,
    .nav-dropdown summary:hover,
    .nav-dropdown[open] summary { color: #fff; }
    .nav-dropdown { position: relative; }
    .nav-dropdown summary {
      display: flex;
      align-items: center;
      gap: 7px;
      list-style: none;
      cursor: pointer;
    }
    .nav-dropdown summary::-webkit-details-marker { display: none; }
    .dropdown-chevron { width: 15px; height: 15px; display: inline-flex; color: var(--gold); transition: transform .2s ease; }
    .dropdown-chevron svg { width: 100%; height: 100%; display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
    .nav-dropdown[open] .dropdown-chevron { transform: rotate(180deg); }
    .nav-dropdown[open]::after {
      width: calc(100% + 32px);
      height: 20px;
      position: absolute;
      top: 100%;
      left: -16px;
      content: "";
    }
    .dropdown-menu {
      width: 350px;
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      display: grid;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 16px;
      background: rgba(4,16,37,.98);
      box-shadow: 0 24px 65px rgba(0,0,0,.28);
      transform: translateX(-50%);
    }
    .dropdown-menu::before {
      width: 14px;
      height: 14px;
      position: absolute;
      top: -7px;
      left: calc(50% - 7px);
      border-top: 1px solid rgba(255,255,255,.11);
      border-left: 1px solid rgba(255,255,255,.11);
      background: var(--navy-3);
      transform: rotate(45deg);
      content: "";
    }
    .dropdown-menu a {
      position: relative;
      z-index: 1;
      padding: 11px 13px;
      border-radius: 9px;
      color: rgba(255,255,255,.76);
      font-size: 13px;
      line-height: 1.35;
    }
    .dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
    .menu-toggle {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 50%;
      color: #fff;
      background: transparent;
      cursor: pointer;
    }
    .menu-lines, .menu-lines::before, .menu-lines::after {
      width: 19px;
      height: 2px;
      display: block;
      position: relative;
      background: currentColor;
      content: "";
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-lines::before { position: absolute; transform: translateY(-6px); }
    .menu-lines::after { position: absolute; transform: translateY(6px); }
    .menu-open .menu-lines { background: transparent; }
    .menu-open .menu-lines::before { transform: rotate(45deg); }
    .menu-open .menu-lines::after { transform: rotate(-45deg); }

    .mobile-panel {
      height: 0;
      overflow: hidden;
      visibility: hidden;
      background: var(--navy-3);
      transition: height .25s ease, visibility .25s ease;
    }
    .mobile-panel-inner { width: var(--wrap); display: grid; gap: 3px; margin-inline: auto; padding: 12px 0 26px; }
    .mobile-panel a:not(.button) { padding: 13px 4px; color: #fff; font-family: "Manrope", sans-serif; font-weight: 700; }
    .mobile-services summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 4px;
      color: #fff;
      font-family: "Manrope", sans-serif;
      font-weight: 700;
      list-style: none;
      cursor: pointer;
    }
    .mobile-services summary::-webkit-details-marker { display: none; }
    .mobile-submenu { display: grid; padding: 5px 0 12px 13px; border-left: 1px solid rgba(255,255,255,.15); }
    .mobile-panel .mobile-submenu a { padding: 9px 10px; color: rgba(255,255,255,.67); font-size: 13px; font-weight: 500; }

    .hero {
      min-height: 790px;
      position: relative;
      display: grid;
      align-items: center;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(4,16,37,.97) 4%, rgba(4,16,37,.86) 44%, rgba(4,16,37,.30) 78%, rgba(4,16,37,.16)),
        url("assets/images/gl-forwarding-home-hero.webp") center / cover no-repeat;
    }
    .hero::after {
      position: absolute;
      inset: auto -7vw -28vw auto;
      width: 58vw;
      height: 58vw;
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 50%;
      box-shadow: 0 0 0 75px rgba(255,255,255,.035), 0 0 0 150px rgba(255,255,255,.02);
      content: "";
    }
    .hero-content { position: relative; z-index: 2; max-width: 760px; padding: 155px 0 118px; }
    .hero h1 {
      max-width: 750px;
      margin-bottom: 25px;
      color: #fff;
      font-size: 57px;
      font-weight: 700;
      line-height: .98;
      letter-spacing: -.06em;
    }
    .hero h1 span { color: var(--gold); }
    .hero-copy { max-width: 590px; margin-bottom: 34px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
    .capability-strip { position: relative; z-index: 5; margin-top: -1px; background: var(--navy); }
    .capability-strip .capability-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-block: 0; margin-inline: auto; padding: 0; list-style: none; }
    .capability {
      min-height: 105px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 24px;
      border-right: 1px solid rgba(255,255,255,.12);
      color: #fff;
    }
    .capability:first-child { border-left: 1px solid rgba(255,255,255,.12); }
    .capability span { color: rgba(255,255,255,.82); font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; }
    .capability .capability-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: var(--gold); }
    .capability-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

    .services { padding: 118px 0 125px; }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
    .section-head h2 { max-width: 690px; margin-bottom: 0; }
    .section-head .lead { max-width: 390px; margin-bottom: 5px; font-size: 16px; }
    .service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
    .service-card {
      min-height: 330px;
      grid-column: span 4;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--navy);
      box-shadow: 0 13px 35px rgba(7,26,56,.08);
    }
    .service-card.wide { grid-column: span 6; min-height: 290px; }
    .service-card img {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      z-index: -2;
      object-fit: cover;
      transition: transform .55s ease;
    }
    .service-card::after {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(4,16,37,.04) 25%, rgba(4,16,37,.95) 100%);
      content: "";
    }
    .service-card:hover img { transform: scale(1.045); }
    .service-card-content { height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; }
    .service-kicker { margin-bottom: auto; color: rgba(255,255,255,.74); font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
    .service-card h3 { max-width: 320px; margin: 0 0 8px; color: #fff; font-size: 21px; line-height: 1.22; }
    .service-card p { max-width: 350px; margin: 0; color: rgba(255,255,255,.69); font-size: 13px; line-height: 1.55; }
    .card-arrow {
      width: 40px;
      height: 40px;
      position: absolute;
      right: 24px;
      top: 24px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 50%;
      color: #fff;
      background: rgba(4,16,37,.18);
      transition: background .2s ease, color .2s ease;
    }
    .service-card:hover .card-arrow { color: var(--navy); background: var(--gold); border-color: var(--gold); }

    .about { overflow: hidden; background: var(--mist); }
    .about-grid { display: grid; grid-template-columns: 1.02fr .98fr; }
    .about-image { min-height: 690px; position: relative; }
    .about-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
    .about-image::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,16,37,.68)); content: ""; }
    .image-tag {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 2;
      padding: 12px 16px;
      border: 1px solid rgba(255,255,255,.32);
      border-radius: 999px;
      color: #fff;
      background: rgba(4,16,37,.58);
      backdrop-filter: blur(10px);
      font-size: 12px;
      font-weight: 700;
    }
    .about-copy { align-self: center; max-width: 630px; padding: 90px clamp(40px, 7vw, 110px); }
    .about-copy .lead { margin-bottom: 38px; }
    .principles { display: grid; gap: 0; border-top: 1px solid var(--line); }
    .principle { padding: 21px 0; border-bottom: 1px solid var(--line); }
    .principle h3 { margin: 0 0 4px; color: var(--navy); font-size: 17px; }
    .principle p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.5; }

    .journey { padding: 120px 0; background: var(--navy); color: #fff; }
    .journey h2 { max-width: 720px; color: #fff; }
    .journey .lead { color: rgba(255,255,255,.66); }
    .journey-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; }
    .journey-step { position: relative; padding: 29px 27px 0 0; border-top: 1px solid rgba(255,255,255,.22); }
    .journey-step::before {
      width: 13px;
      height: 13px;
      position: absolute;
      top: -7px;
      left: 0;
      border: 3px solid var(--navy);
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 1px var(--gold);
      content: "";
    }
    .journey-step small { display: block; margin-bottom: 13px; color: var(--gold); font-weight: 800; letter-spacing: .1em; }
    .journey-step h3 { margin-bottom: 9px; font-size: 19px; }
    .journey-step p { margin: 0; color: rgba(255,255,255,.59); font-size: 14px; line-height: 1.6; }

    .quote-section { padding: 115px 0; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .quote-box {
      position: relative;
      overflow: hidden;
      padding: 58px clamp(28px, 4vw, 56px);
      border-radius: 30px;
      background: #f0f4f8;
    }
    .quote-box::after {
      position: absolute;
      right: -85px;
      bottom: -145px;
      width: 330px;
      height: 330px;
      border: 60px solid rgba(23,79,145,.06);
      border-radius: 50%;
      content: "";
    }
    blockquote { max-width: 900px; margin: 0 0 30px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: clamp(24px, 2.3vw, 34px); font-weight: 600; line-height: 1.32; letter-spacing: -.035em; }
    .quote-mark { display: block; height: 30px; color: var(--gold); font-size: 72px; line-height: .75; }
    .quote-attribution { display: flex; align-items: center; color: var(--slate); font-size: 14px; }
    .quote-attribution b { color: var(--navy); }

    .contact { padding: 0 0 110px; }
    .contact-panel {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      overflow: hidden;
      border-radius: 30px;
      background: var(--gold);
      box-shadow: var(--shadow);
    }
    .contact-message { padding: 70px clamp(30px, 7vw, 86px); }
    .contact-message .eyebrow { color: var(--navy); }
    .contact-message h2 { max-width: 650px; margin-bottom: 30px; }
    .contact-message .contact-intro { max-width: 580px; margin: -10px 0 26px; color: rgba(7,26,56,.75); font-size: 16px; line-height: 1.6; }
    .contact-message .button { color: #fff; background: var(--navy); }
    .contact-message .button:hover { background: var(--navy-2); }
    .contact-details { display: grid; align-content: center; gap: 22px; padding: 50px; color: #fff; background: var(--navy-2); }
    .contact-row { display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
    .contact-icon { width: 26px; height: 26px; display: grid; place-items: center; color: var(--gold); }
    .contact-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .contact-row small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.52); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .contact-row a, .contact-row address { color: #fff; font-size: 14px; font-style: normal; line-height: 1.55; }
    .contact-row a:hover { color: var(--gold-2); }

    footer { padding: 60px 0 28px; color: rgba(255,255,255,.65); background: var(--navy-3); }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 48px; }
    .footer-brand img { width: 270px; margin-bottom: 22px; }
    .footer-brand p { max-width: 430px; margin: 0; font-size: 14px; line-height: 1.7; }
    .footer-col h3 { margin-bottom: 17px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
    .footer-col { display: grid; align-content: start; gap: 11px; font-size: 14px; }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); font-size: 12px; }
    .back-top { color: #fff; }

    @media (max-width: 1020px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: grid; }
      .mobile-panel.open { height: calc(100vh - 72px); overflow-y: auto; visibility: visible; }
      .capability-list { grid-template-columns: repeat(2, 1fr); }
      .capability:nth-child(2) { border-right: 0; }
      .capability:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
      .service-card { grid-column: span 6; }
      .about-grid { grid-template-columns: 1fr; }
      .about-image { min-height: 520px; }
      .about-copy { max-width: none; }
      .contact-panel { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1.2fr 1fr 1fr; gap: 35px; }
    }

    @media (max-width: 720px) {
      :root { --wrap: min(100% - 34px, 1180px); }
      .nav { min-height: 72px; }
      .brand img { width: 198px; }
      .hero { min-height: 720px; background-position: 60% center; }
      .hero::after { display: none; }
      .hero-content { padding: 130px 0 82px; }
      .hero h1 { font-size: clamp(42px, 12vw, 57px); }
      .hero-copy { font-size: 16px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .button { width: 100%; }
      .capability-strip .capability-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .capability { min-height: 116px; flex-direction: column; justify-content: center; gap: 8px; padding: 15px 10px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); text-align: center; }
      .capability:nth-child(2n) { border-right: 0; }
      .capability:nth-last-child(-n+2) { border-bottom: 0; }
      .capability:first-child { border-left: 0; }
      .capability span { font-size: 12px; }
      .capability .capability-icon { width: 28px; height: 28px; }
      .capability-icon svg { width: 23px; height: 23px; }
      .services, .journey, .quote-section { padding: 85px 0; }
      .section-head { align-items: start; flex-direction: column; gap: 20px; margin-bottom: 35px; }
      .service-grid { display: grid; grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .service-card, .service-card.wide { min-height: 310px; grid-column: auto; }
      .about-image { min-height: 390px; }
      .about-copy { padding: 72px 24px; }
      .journey-flow { grid-template-columns: 1fr; margin-top: 42px; }
      .journey-step { padding: 25px 0 35px 28px; border-top: 0; border-left: 1px solid rgba(255,255,255,.22); }
      .journey-step::before { top: 29px; left: -7px; }
      .quote-box { padding: 60px 25px; border-radius: 22px; }
      .contact { padding-bottom: 80px; }
      .contact-panel { border-radius: 22px; }
      .contact-message, .contact-details { padding: 50px 25px; }
      .footer-top { grid-template-columns: 1fr; gap: 38px; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; }
    }
