/* ============================================================
   TRADE CONNECT GmbH – styles.css
   Fonts: Outfit (UI/Headings) + Source Serif 4 (accent)
   Palette: Sky-Blue (#1E88E5), Ocean (#0D47A1), Amber (#FF8F00)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,600;1,300&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --sky:       #1E88E5;
  --sky-lt:    #42A5F5;
  --sky-pale:  #E3F2FD;
  --ocean:     #0D47A1;
  --slate:     #37474F;
  --slate-s:   #546E7A;
  --amber:     #FF8F00;
  --amber-lt:  #FFB300;
  --white:     #FFFFFF;
  --off:       #F7F9FC;
  --border:    #CFD8DC;
  --text:      #263238;
  --text-s:    #546E7A;
  --f-ui:      'Outfit', system-ui, sans-serif;
  --r-sm:      6px;
  --r-md:      12px;
  --r-lg:      20px;
  --r-xl:      32px;
  --sh-sm:     0 2px 8px rgba(13,71,161,.07);
  --sh-md:     0 6px 24px rgba(13,71,161,.12);
  --sh-lg:     0 16px 56px rgba(13,71,161,.16);
  --t:         .22s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-ui); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ── Skip link ─────────────────────────────────────────────── */
.skip-link { position: fixed; top: -100%; left: 0; background: var(--amber); color: #fff; padding: .5rem 1rem; font-weight: 700; z-index: 9999; transition: top var(--t); }
.skip-link:focus { top: 0; }

/* Anchor offset for fixed header */
section[id], div[id] { scroll-margin-top: 72px; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin-inline: auto; padding-inline: 2rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 2px solid var(--sky-pale);
  box-shadow: 0 2px 16px rgba(30,136,229,.08);
  padding-block: .7rem;
}

/* Spacer: schiebt den Seiteninhalt unter den fixed Header */
.header-spacer {
  height: 64px; /* entspricht Header-Höhe auf Desktop */
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo – nimmt nur so viel Platz wie nötig, dann flex-grow drückt nav nach rechts */
.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto; /* schiebt alles andere nach rechts */
}
.logo-mark {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--sky), var(--sky-lt));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(30,136,229,.3);
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: var(--ocean); letter-spacing: -.01em; white-space: nowrap; }
.logo-sub  { font-size: .62rem; font-weight: 500; color: var(--sky); letter-spacing: .13em; text-transform: uppercase; margin-top: .1rem; white-space: nowrap; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; flex-shrink: 0; }
.nav-links { display: flex; gap: .25rem; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--slate-s);
  padding: .35rem .75rem; border-radius: var(--r-sm);
  transition: color var(--t), background var(--t); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--sky); background: var(--sky-pale); }

/* Language switcher – always visible */
.lang-sw {
  display: flex; gap: 3px;
  background: var(--off); border-radius: var(--r-sm); padding: 3px;
  flex-shrink: 0;
}
.lang-sw a {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  color: var(--slate-s); padding: 3px 8px; border-radius: 4px;
  transition: all var(--t);
}
.lang-sw a:hover { color: var(--sky); background: var(--white); }
.lang-sw a.active { color: var(--white); background: var(--sky); }

/* Burger – desktop hidden */
.burger {
  display: none;
  background: none; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 6px 8px;
  color: var(--slate); flex-shrink: 0; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0; transition: all var(--t); }

/* ============================================================
   HERO – photo background
   ============================================================ */
.hero {
  position: relative;
  background-color: #0a1a2e;
  background-image: url('../img/hero-truck.jpg');
  background-size: cover;
  background-position: center 40%;
  padding-top: 6rem;
  padding-bottom: 9rem;
  overflow: hidden;
}
/* Dark overlay: left darker for text, right lighter to show truck */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 24, 58, 0.82) 0%,
    rgba(10, 26, 60, 0.72) 45%,
    rgba(5, 15, 40, 0.45) 75%,
    rgba(5, 15, 40, 0.25) 100%
  );
}
/* Diagonal bottom clip into white */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-text { /* left column */ }
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .32rem .9rem; border-radius: 100px; margin-bottom: .9rem; backdrop-filter: blur(6px); }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-lt); display: inline-block; }
.hero-title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.02em; margin-bottom: .9rem; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero-title em { font-style: normal; background: linear-gradient(90deg, #FFF176, #FFD54F); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.88); line-height: 1.75; font-weight: 300; max-width: 480px; margin-bottom: 1.5rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat-n { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hstat-l { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .2rem; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
/* Right column stays empty — truck is visible in the photo */
.hero-visual { display: none; }
.hero-svg-wrap { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-ui); font-size: .875rem; font-weight: 700; letter-spacing: .01em; padding: .72rem 1.6rem; border-radius: var(--r-sm); border: 2px solid transparent; transition: all var(--t); white-space: nowrap; text-decoration: none; }
.btn-amber { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-lt); border-color: var(--amber-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,143,0,.35); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-sky { background: var(--sky); color: #fff; border-color: var(--sky); }
.btn-sky:hover { background: var(--ocean); border-color: var(--ocean); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,136,229,.35); }
.btn-white { background: #fff; color: var(--amber); border-color: #fff; font-weight: 800; }
.btn-white:hover { background: var(--sky-pale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,143,0,.3); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 5rem; }
.section-tinted { background: var(--off); }
.section-sky { background: linear-gradient(160deg, #0D47A1 0%, #1565C0 60%, #1976D2 100%); color: #fff; }
.eyebrow { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sky); margin-bottom: .5rem; }
.section-sky .eyebrow { color: rgba(255,255,255,.6); }
.sec-title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; color: var(--slate); letter-spacing: -.02em; line-height: 1.2; margin-bottom: .7rem; }
.section-sky .sec-title { color: #fff; }
.sec-sub { font-size: .97rem; color: var(--text-s); max-width: 540px; margin-inline: auto; line-height: 1.7; }
.section-sky .sec-sub { color: rgba(255,255,255,.7); }
.sec-hdr { text-align: center; margin-bottom: 3.5rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem 1.5rem; transition: all var(--t); position: relative; overflow: hidden; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sky), var(--sky-lt)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.svc-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(30,136,229,.25); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--sky-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.svc-ico svg { width: 24px; height: 24px; stroke: var(--sky); fill: none; stroke-width: 1.8; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: .45rem; }
.svc-card p { font-size: .875rem; color: var(--text-s); line-height: 1.65; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-img-col { position: relative; }
.about-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; border: 3px solid var(--sky-pale); background: linear-gradient(160deg, #1565C0 0%, #1E88E5 60%, #42A5F5 100%); }
.about-photo-ph { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 2rem; }
.xp-badge { position: absolute; bottom: -1rem; right: -1.5rem; background: var(--amber); color: #fff; border-radius: var(--r-lg); padding: 1.1rem 1.4rem; text-align: center; box-shadow: var(--sh-md); }
.xp-n { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.xp-l { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: .25rem; opacity: .9; }
.about-content .eyebrow { display: block; }
.about-content .sec-title { text-align: left; margin-bottom: .9rem; }
.about-lead { font-size: 1rem; color: var(--text-s); line-height: 1.8; margin-bottom: 1.5rem; }
.feat-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.feat { display: flex; gap: .75rem; align-items: flex-start; }
.feat-check { width: 26px; height: 26px; border-radius: 50%; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .1rem; }
.feat-check svg { width: 13px; height: 13px; stroke: var(--sky); fill: none; stroke-width: 2.5; }
.feat p { font-size: .88rem; color: var(--text-s); line-height: 1.65; }
.feat p strong { color: var(--text); font-weight: 600; }
.lang-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.chip { background: var(--ocean); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; padding: .28rem .8rem; border-radius: 100px; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.loc-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 1.75rem; transition: all var(--t); }
.loc-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.loc-flag { font-size: 2.4rem; margin-bottom: .85rem; }
.loc-card h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: .2rem; }
.loc-city { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky-lt); margin-bottom: .9rem; }
.loc-addr { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: .75rem; }
.loc-phone a { color: var(--sky-lt); font-weight: 600; font-size: .9rem; transition: color var(--t); }
.loc-phone a:hover { color: #fff; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(100deg, var(--amber) 0%, var(--amber-lt) 100%); padding-block: 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0px, rgba(255,255,255,.06) 1px, transparent 1px, transparent 16px); }
.cta-band .container { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: .65rem; letter-spacing: -.02em; }
.cta-band p { color: rgba(255,255,255,.85); font-size: .97rem; margin-bottom: 1.5rem; max-width: 480px; margin-inline: auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.pg-hero { background: linear-gradient(135deg, #1565C0, #1E88E5); padding-block: 5rem; text-align: center; }
.pg-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: .5rem; }
.pg-hero p { color: rgba(255,255,255,.7); font-size: .95rem; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; padding-block: 5rem; align-items: start; }
.ci-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--slate); letter-spacing: -.01em; margin-bottom: .75rem; }
.ci-block p { color: var(--text-s); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; }
.ci-list { display: flex; flex-direction: column; gap: 1rem; }
.ci-item { display: flex; gap: .75rem; }
.ci-ico { width: 42px; height: 42px; border-radius: var(--r-sm); background: var(--sky-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ico svg { width: 18px; height: 18px; stroke: var(--sky); fill: none; stroke-width: 1.8; }
.ci-txt strong { display: block; font-size: .72rem; font-weight: 700; color: var(--slate-s); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .15rem; }
.ci-txt span, .ci-txt a { font-size: .9rem; color: var(--text); line-height: 1.55; transition: color var(--t); }
.ci-txt a:hover { color: var(--sky); }

/* Form card */
.fc { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--sh-sm); }
.fc h2 { font-size: 1.4rem; font-weight: 800; color: var(--slate); letter-spacing: -.01em; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.fg label { font-size: .78rem; font-weight: 700; color: var(--slate); letter-spacing: .03em; }
.req { color: var(--amber); margin-left: 2px; }
.fg input, .fg textarea { font-family: var(--f-ui); font-size: .9rem; color: var(--text); background: var(--off); border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: .65rem .9rem; width: 100%; outline: none; transition: border var(--t), box-shadow var(--t), background var(--t); }
.fg input:focus, .fg textarea:focus { border-color: var(--sky); background: var(--white); box-shadow: 0 0 0 3px rgba(30,136,229,.12); }
.fg textarea { resize: vertical; min-height: 130px; }
.hp { display: none !important; visibility: hidden !important; }
.cb-wrap { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; font-size: .82rem; color: var(--text-s); line-height: 1.55; }
.cb-wrap input[type=checkbox] { width: 18px; height: 18px; min-width: 18px; border: 1.5px solid var(--border); border-radius: 3px; accent-color: var(--sky); margin-top: .1rem; cursor: pointer; }
.cb-wrap a { color: var(--sky); text-decoration: underline; }
.form-err { font-size: .75rem; color: #e53935; margin-top: .25rem; display: block; }
.form-ok { display: none; margin-top: 1rem; padding: 1rem 1.25rem; background: rgba(30,136,229,.07); border: 1px solid rgba(30,136,229,.2); border-radius: var(--r-md); font-size: .9rem; color: var(--ocean); text-align: center; }
.form-note { margin-top: 1rem; font-size: .75rem; color: var(--slate-s); padding: .75rem 1rem; background: var(--sky-pale); border-radius: var(--r-sm); border-left: 3px solid var(--sky); line-height: 1.55; }

/* ============================================================
   STATIC PAGES
   ============================================================ */
.static-hero { background: linear-gradient(135deg, #1565C0, #1E88E5); padding-block: 3rem; text-align: center; }
.static-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: .4rem; }
.static-hero p { color: rgba(255,255,255,.65); font-size: .9rem; }
.static-content { padding-block: 5rem; max-width: 780px; margin-inline: auto; }
.static-content h2 { font-size: 1.2rem; font-weight: 800; color: var(--ocean); margin-top: 2rem; margin-bottom: .5rem; padding-bottom: .4rem; border-bottom: 1.5px solid var(--sky-pale); }
.static-content p { font-size: .9rem; color: var(--text-s); line-height: 1.8; margin-bottom: .7rem; }
.static-content address { font-size: .9rem; color: var(--text-s); line-height: 1.8; margin-bottom: 1rem; }
.ph-note { display: inline-block; background: rgba(255,143,0,.1); border: 1px dashed rgba(255,143,0,.5); border-radius: var(--r-sm); padding: .4rem .75rem; color: #bf6000; font-size: .78rem; font-style: italic; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ocean); color: rgba(255,255,255,.6); padding-block: 4rem; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 2rem; }
.ft-brand p { font-size: .83rem; line-height: 1.7; max-width: 280px; margin-block: .75rem; }
.ft-links { display: flex; flex-direction: column; gap: .4rem; }
.ft-links a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.ft-links a:hover { color: var(--sky-lt); }
.ft-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .75rem; }
.ft-col ul { display: flex; flex-direction: column; gap: .38rem; }
.ft-col ul li a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.ft-col ul li a:hover { color: #fff; }
.ft-bot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.ft-bot p { font-size: .76rem; }
.ft-lang { display: flex; gap: 5px; }
.ft-lang a { font-size: .68rem; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.45); padding: 2px 8px; border: 1px solid rgba(255,255,255,.15); border-radius: 4px; transition: all var(--t); }
.ft-lang a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.ft-lang a.active { color: #fff; background: var(--sky); border-color: var(--sky); }

/* ── Utilities ──────────────────────────────────────────────── */
.mobile-only { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ft-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  /* Spacer kleiner auf Mobile */
  .header-spacer { height: 58px; }

  /* Burger einblenden */
  .burger { display: flex; flex-direction: column; justify-content: center; }

  /* Nav als fixed Overlay – startet versteckt UNTERHALB des Headers */
  .main-nav {
    display: block;
    position: fixed;
    top: 58px;       /* sicherer Startwert; JS überschreibt mit exakter Höhe */
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 2px solid var(--sky-pale);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    /* Versteckt: nach oben verschoben + unsichtbar */
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s ease, opacity .28s ease, visibility .28s;
    z-index: 190;   /* unter Header (200) aber über allem anderen */
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    list-style: none;
  }
  .nav-links a {
    display: block;
    padding: .75rem .5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate);
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--sky);
    background: var(--sky-pale);
  }

  /* Logo kompakter */
  .logo-name { font-size: 1rem; }
  .logo-sub  { font-size: .58rem; }
  .logo-mark { width: 38px; height: 38px; }

  /* lang-sw kompakter */
  .lang-sw { padding: 2px; gap: 2px; }
  .lang-sw a { padding: 4px 7px; font-size: .68rem; }
  .header-inner { gap: .75rem; }
  /* Hero */
  .hero {
    background-image: url('../img/hero-truck-mobile.jpg');
    background-position: center center;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .hero::before { background: linear-gradient(180deg, rgba(5,18,45,.9) 0%, rgba(5,18,45,.78) 100%); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-pill { font-size: .65rem; padding: .28rem .75rem; }
  .hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: .65rem; }
  .hero-lead { font-size: .93rem; margin-inline: auto; max-width: 480px; margin-bottom: 1.25rem; }
  .hero-stats { justify-content: center; gap: 1.5rem; margin-bottom: 1.25rem; }
  .hstat-n { font-size: 1.7rem; }
  .hero-ctas { justify-content: center; gap: .6rem; }
  .hero-visual { display: none; }

  /* Ghost button fix on dark hero background */
  .btn-ghost { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.12); }

  /* Sections */
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { max-width: 280px; margin-inline: auto; }
  .xp-badge { right: 0; }
  .about-content .sec-title, .about-lead { text-align: center; }
  .feat-list { text-align: left; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding-block: 3rem; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-bot { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header-spacer { height: 54px; }
  /* Header */
  .site-header { padding-block: .55rem; }
  .main-nav { top: 54px; }

  /* Show mobile line break in hero title */
  .mobile-only { display: inline; }

  /* Hero */
  .hero { padding-top: 3rem; padding-bottom: 5.5rem; }
  .hero-title { font-size: clamp(1.55rem, 8vw, 2rem); line-height: 1.2; }
  .hero-lead { font-size: .88rem; line-height: 1.7; }
  .hero-stats { gap: 1rem; }
  .hstat-n { font-size: 1.55rem; }
  .hstat-l { font-size: .6rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-inline: auto; }
  .hero-ctas .btn { justify-content: center; padding: .85rem 1rem; font-size: .9rem; }

  /* Sections – weniger Abstand auf Mobile */
  .section { padding-block: 3rem; }
  .sec-hdr { margin-bottom: 2rem; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr; }
}

/* Very small screens */
@media (max-width: 360px) {
  .hero-title { font-size: 1.4rem; }
  .hero-pill { font-size: .6rem; }
  .container { padding-inline: 1.25rem; }
}
