
  :root {
    color-scheme: light only;
    --blue-900: #0a2540;
    --blue-800: #0f3d75;
    --blue-700: #1554a8;
    --blue-600: #1f6fd6;
    --blue-500: #3b86e8;
    --blue-50:  #eaf2fc;
    --ink:      #0b1320;
    --muted:    #5a6878;
    --line:     #e3e8ef;
    --bg:       #ffffff;
    --bg-soft:  #f6f9fd;
    --radius:   12px;
    --shadow:   0 8px 24px rgba(15, 61, 117, 0.08);
    --max:      1140px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--blue-700); text-decoration: none; }
  a:hover { color: var(--blue-600); }

  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
  }
  .brand {
    display: flex;
    align-items: center;
  }
  .brand img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .nav-links a {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
  }
  .nav-links a:hover { color: var(--blue-700); }
  .nav-cta {
    background: var(--blue-700);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  .nav-cta:hover { background: var(--blue-800); color: #fff !important; }

  /* Language switcher */
  .lang-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 3px;
    background: #fff;
  }
  .lang-switch a {
    background: transparent;
    border: none;
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-radius: 6px;
    font-family: inherit;
    letter-spacing: 0.04em;
    transition: all 0.15s ease;
    text-decoration: none;
  }
  .lang-switch a:hover { color: var(--blue-700); }
  .lang-switch a.active {
    background: var(--blue-700);
    color: #fff;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 110;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transform-origin: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-backdrop {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(10, 37, 64, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 90;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }

  /* Hero */
  .hero {
    position: relative;
    background:
      linear-gradient(135deg, rgba(10, 37, 64, 0.85), rgba(21, 84, 168, 0.75)),
      url("/web/content/986/hero.webp") center/cover no-repeat;
    background:
      linear-gradient(135deg, rgba(10, 37, 64, 0.85), rgba(21, 84, 168, 0.75)),
      image-set(
        url("/web/content/986/hero.webp") type("image/webp")
      ) center/cover no-repeat;
    color: #fff;
    padding: 96px 0 112px;
  }
  .hero-grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    font-weight: 700;
  }
  .hero p.lead {
    font-size: 1.15rem;
    color: #d8e6f7;
    max-width: 640px;
    margin: 0 0 32px;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 6px 16px rgba(31, 111, 214, 0.4);
  }
  .btn-primary:hover {
    background: var(--blue-500);
    transform: translateY(-1px);
    color: #fff;
  }
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
  }
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat .num {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .stat .label {
    color: #b8cce6;
    font-size: 0.92rem;
  }

  /* Sections */
  section { padding: 96px 0; }
  .section-head {
    max-width: 720px;
    margin: 0 0 56px;
  }
  .section-head .kicker {
    color: var(--blue-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin: 0 0 14px;
    color: var(--blue-900);
    letter-spacing: -0.02em;
  }
  .section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
  }

  /* Services */
  .services {
    background: var(--bg-soft);
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid transparent;
    min-height: 250px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 14px;
    color: #fff;
    background-color: var(--blue-900);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 18px rgba(15, 61, 117, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  /* Dark blue gradient so the white text stays readable over the photo */
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(8, 30, 60, 0.92) 0%,
      rgba(8, 30, 60, 0.66) 60%,
      rgba(8, 30, 60, 0.38) 100%);
    transition: background 0.25s ease;
  }
  .service-card > * { position: relative; z-index: 1; }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 61, 117, 0.22);
  }
  .service-card:hover::before {
    background: linear-gradient(180deg,
      rgba(8, 30, 60, 0.86) 0%,
      rgba(8, 30, 60, 0.58) 60%,
      rgba(8, 30, 60, 0.32) 100%);
  }
  .service-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .service-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .service-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  /* Per-service background photos (royalty-free, Unsplash) */
  .svc-ftl       { background-image: url("/web/content/998/ftl.webp"); }
  .svc-partload  { background-image: url("/web/content/1002/partload.webp"); }
  .svc-reefer    { background-image: url("/web/content/1004/reefer.webp"); }
  .svc-express   { background-image: url("/web/content/996/express.webp"); }
  .svc-warehouse { background-image: url("/web/content/1006/warehouse.webp"); }
  .svc-logistics { background-image: url("/web/content/1000/logistics.webp"); }
  .svc-documents { background-image: url("/web/content/994/documents.webp"); }
  .service-card.featured {
    grid-column: 1 / -1;
    grid-template-rows: auto auto;
    align-content: center;
    min-height: 220px;
    background-position: center 35%;
  }
  .service-card.featured::before {
    background: linear-gradient(120deg,
      rgba(8, 30, 60, 0.82) 0%,
      rgba(8, 30, 60, 0.66) 100%);
  }
  .service-card.featured .service-icon { margin-bottom: 0; }
  .service-card.featured h3 { margin-bottom: 6px; font-size: 1.25rem; }
  .service-card.featured p { font-size: 1rem; max-width: 720px; }

  /* Expertise */
  .expertise-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .expertise-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: var(--blue-900);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
  }
  .expertise-content .kicker {
    color: var(--blue-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
  }
  .expertise-content > p {
    color: var(--muted);
    margin: 0 0 28px;
    font-size: 1.05rem;
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
  }
  .feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .check {
    flex: 0 0 24px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-700);
    display: grid;
    place-items: center;
    margin-top: 2px;
  }
  .feature-list strong { color: var(--blue-900); }
  .feature-list span { color: var(--muted); display: block; font-size: 0.95rem; }

  .expertise-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 61, 117, 0.18);
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    position: relative;
  }
  .expertise-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* Insurance */
  .insurance { background: var(--bg-soft); }
  .insurance-list {
    display: grid;
    gap: 16px;
  }
  .insurance-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .insurance-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: transparent;
  }
  .insurance-card h3 {
    margin: 0 0 10px;
    color: var(--blue-900);
    font-size: 1.15rem;
    letter-spacing: -0.01em;
  }
  .insurance-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
  }

  /* Contact */
  .contact {
    background: var(--blue-900);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 134, 232, 0.25), transparent 70%);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    position: relative;
  }
  .contact-info h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin: 0 0 18px;
    letter-spacing: -0.02em;
  }
  .contact-info > p {
    color: #b8cce6;
    margin: 0 0 36px;
    font-size: 1.05rem;
  }
  .contact-info .kicker {
    color: var(--blue-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 22px;
  }
  .contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .contact-list .ico {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--blue-500);
    display: grid;
    place-items: center;
  }
  .contact-list strong {
    display: block;
    color: #fff;
    margin-bottom: 2px;
  }
  .contact-list a, .contact-list span {
    color: #b8cce6;
    font-size: 0.95rem;
  }
  .contact-list a:hover { color: #fff; }

  /* Form */
  .contact-form {
    background: #fff;
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .field {
    margin-bottom: 18px;
  }
  .field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 6px;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(31, 111, 214, 0.15);
  }
  .field textarea {
    min-height: 120px;
    resize: vertical;
  }
  .form-submit {
    width: 100%;
    background: var(--blue-700);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .form-submit:hover { background: var(--blue-800); }
  .form-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 14px 0 0;
    text-align: center;
  }
  .form-success {
    display: none;
    background: #e8f5ed;
    color: #1a6d3a;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-align: center;
  }
  .form-success.show { display: block; }

  /* Footer */
  footer {
    background: #061a2f;
    color: #8aa3c0;
    padding: 32px 0;
    font-size: 0.9rem;
  }
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer a { color: #b8cce6; }
  footer a:hover { color: #fff; }

  .eu-funding {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .eu-funding img {
    display: block;
    width: 236px;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 14px;
  }
  .eu-funding-text {
    max-width: 760px;
    font-size: 0.82rem;
    line-height: 1.65;
    color: #7e97b5;
  }
  .eu-funding-text span { display: block; }
  .eu-funding-text strong {
    display: block;
    margin-bottom: 6px;
    color: #b8cce6;
    font-size: 0.88rem;
    font-weight: 600;
  }

  /* Responsive */
  @media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; }
  }

  @media (max-width: 860px) {
    .expertise-grid,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .expertise-image { aspect-ratio: 16/10; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 720px) {
    section { padding: 72px 0; }
    .hero { padding: 72px 0 88px; }
    .brand img { height: 38px; }
    .nav-links {
      position: fixed;
      top: 72px; right: 0;
      height: calc(100dvh - 72px);
      width: 280px;
      max-width: 80vw;
      flex-direction: column;
      align-items: flex-start;
      background: #fff;
      padding: 28px 24px;
      gap: 22px;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
      border-left: 1px solid var(--line);
      z-index: 95;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.05rem; }
    .nav-cta { align-self: stretch; text-align: center; }
    .nav-toggle { display: block; }
    .nav-backdrop { display: block; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .service-grid { grid-template-columns: 1fr; }

    .hero-stats {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 44px;
      padding-top: 24px;
    }
    .hero-stats .stat {
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hero-stats .stat:last-child { border-bottom: none; padding-bottom: 0; }
    .hero-stats .stat .num { font-size: 1.75rem; flex: 0 0 auto; }
    .hero-stats .stat .label { font-size: 0.95rem; }

    .section-head { margin-bottom: 40px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
  }

/* ---- Odoo integration: this page supplies its own header/footer ---- */
#wrapwrap.homepage > header#top,
#wrapwrap.homepage > footer#bottom { display: none !important; }
#wrapwrap.homepage { background: #fff; }
#wrapwrap.homepage > main { padding: 0 !important; }
