/* ============================================================
   AR Trans — CI-Fundament für neue Firmen-Unterseiten
   CI-Quelle: Projekte/ar-trans/AGENTS.md
   Fonts/Bilder aus ../../assets/onecdn.io/ (relativ zu dieser Datei)
   ============================================================ */

/* ---------- Roboto (lokale woff2) ---------- */
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../../assets/onecdn.io/roboto-regular.d1e2759f5f.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../../assets/onecdn.io/roboto-600.8833cfd2ce.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../../assets/onecdn.io/roboto-700.22cfcfb5e6.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto"; font-style: normal; font-weight: 900; font-display: swap;
  src: url("../../assets/onecdn.io/roboto-900.4cd39d077c.woff2") format("woff2");
}

/* ---------- CI-Tokens ---------- */
:root {
  --blue:       #0169B0;   /* CTA-Buttons */
  --blue-dark:  #131B3C;   /* Footer, dunkle Sektionen */
  --accent:     #6D6FFB;   /* Aktive Nav, Akzent-Text */
  --hl-stroke:  #1E5DFF;   /* SVG-Underline Headline-Highlights */
  --text:       #07071A;
  --muted:      rgba(7, 7, 26, 0.60);
  --light-bg:   #F7F7F7;
  --white:      #FFFFFF;
  --border:     rgba(7, 7, 26, 0.1);
  --radius:     4px;
  --radius-img: 8px;
  --container:  1200px;
  --pad-x:      24px;
  --section-pad: 100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.5;
  color: var(--text); background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-weight: 900; line-height: 1.3; letter-spacing: -0.4px; margin: 0 0 0.45em;
}
h1 { font-size: clamp(34px, 5.5vw, 58px); }
h2 { font-size: clamp(26px, 3.8vw, 42px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--pad-x);
}

/* ---------- Headline-Highlight (handgezeichnete Unterstreichung) ---------- */
.hl {
  position: relative;
  display: inline;
}
.hl svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 7px;
  overflow: visible;
  pointer-events: none;
}

/* ---------- Sektionen ---------- */
.section { padding: var(--section-pad) 0; }
.section--light { background: var(--light-bg); }
.section--dark  { background: var(--blue-dark); color: #fff; }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p  { color: rgba(255,255,255,0.80); }
.section--dark a  { color: #fff; }

/* Sektion mit Hintergrundfoto + dunklem Overlay (wie Hero) */
.section--photo { position: relative; overflow: hidden; }
.section--photo > .container { position: relative; z-index: 2; }
.section-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.section--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10,14,32,0.94) 0%, rgba(19,27,60,0.84) 50%, rgba(10,14,32,0.93) 100%);
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head p { font-size: 18px; color: var(--muted); }
.section--dark .section__head p { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
}
.section--dark .eyebrow { color: rgba(109,111,251,0.9); }
.hero-photo .eyebrow { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 26px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  border-radius: var(--radius); border: 2px solid var(--blue);
  background: var(--blue); color: #fff;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}
.btn:hover { background: #015899; border-color: #015899; text-decoration: none; }
.btn--outline { background: transparent; color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--blue); border-color: #fff; }
.btn--white:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); }
.btn--lg { height: 56px; padding: 0 34px; font-size: 16px; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center;
  height: 72px; gap: 32px;
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 42px; width: auto; }

.site-nav { flex: 1; }
.site-nav ul {
  list-style: none; display: flex; align-items: center;
  gap: 4px; margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: 6px 14px;
  color: var(--text); font-weight: 600; font-size: 14px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--blue); background: rgba(1,105,176,0.06); text-decoration: none; }
.site-nav a.is-active { color: var(--accent); }

.site-header__cta { flex-shrink: 0; }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text); font-size: 24px; line-height: 1;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-header__cta { display: none; }
  .site-nav {
    display: none; position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 0; z-index: 99;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { padding: 13px 24px; border-radius: 0; }
}

/* ---------- Dropdown-Navigation ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex !important; align-items: center; gap: 6px; }
.caret {
  font-size: 11px; line-height: 1;
  transition: transform 0.2s; transform: translateY(1px);
}
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 230px; flex-direction: column !important; align-items: stretch !important;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7,7,26,0.12);
  padding: 6px; gap: 2px !important;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover > .dropdown-toggle .caret,
.has-dropdown:focus-within > .dropdown-toggle .caret { transform: rotate(180deg); }
.dropdown a { font-weight: 600; }

@media (max-width: 860px) {
  /* Dropdown wird im Mobile-Menü statisch und klappt per Klick auf */
  .dropdown {
    position: static; min-width: 0; box-shadow: none; border: 0;
    border-radius: 0; padding: 0; background: var(--light-bg);
    opacity: 1; visibility: visible; transform: none;
    display: none;
  }
  .has-dropdown.is-open > .dropdown { display: flex; }
  .has-dropdown.is-open > .dropdown-toggle .caret { transform: rotate(180deg); }
  .dropdown a { padding-left: 40px !important; font-size: 14px; }
}

/* ---------- Anker-Offset (sticky Header 72px) ---------- */
:where(section[id], [id].hero-photo) { scroll-margin-top: 88px; }

/* ---------- Länder-Kacheln (Einsatzgebiet) ---------- */
.country-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.country-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  padding: 22px 24px; font-weight: 700; font-size: 18px;
}
.country-card svg { flex-shrink: 0; color: var(--blue); }

/* ---------- Feature-Liste mit Häkchen (Flotte) ---------- */
.feature-list { list-style: none; margin: 0 0 20px; padding: 0; }
.feature-list li {
  position: relative; padding-left: 30px; margin-bottom: 14px;
  font-size: 16px; line-height: 1.6; color: var(--text);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* ---------- Kontakt: Intro + dunkelblaue Kontakt-Card ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 0.82fr; gap: 56px; align-items: center; }
.contact-intro h2 { margin-bottom: 18px; }
.contact-intro p { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.contact-slogan { margin-top: 22px !important; font-weight: 700; color: var(--text) !important; }
.contact-slogan span { display: block; margin-top: 4px; color: var(--blue); }

.contact-card {
  background: var(--blue-dark); color: #fff;
  border-radius: 16px; padding: 14px 34px 34px;
  box-shadow: 0 30px 70px rgba(19,27,60,0.28);
}
.contact-card__item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  text-decoration: none; transition: padding-left .2s;
}
a.contact-card__item:hover { text-decoration: none; padding-left: 6px; }
.contact-card__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.10); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
a.contact-card__item:hover .contact-card__icon { background: var(--accent); }
.contact-card__text { display: flex; flex-direction: column; gap: 3px; }
.contact-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact-card__value { font-size: 17px; font-weight: 600; color: #fff; }
.contact-card__actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.contact-card__actions .btn { flex: 1; justify-content: center; min-width: 150px; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Über uns: CTA-Band ---------- */
.ueber-cta { text-align: center; max-width: 680px; margin: 0 auto; }
.ueber-cta p { max-width: 560px; margin: 0 auto; }
.ueber-cta .btn-group { justify-content: center; margin-top: 28px; }

/* ---------- Hero mit Foto-Hintergrund ---------- */
.hero-photo {
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-photo__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42);
}
.hero-photo__content {
  position: relative; z-index: 1;
  padding: 120px 0 100px;
  color: #fff;
}
.hero-photo h1 { color: #fff; max-width: 760px; margin-bottom: 24px; }
.hero-photo p  { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 680px; margin-bottom: 32px; line-height: 1.75; }

/* ---------- Split-Sektion (Text + Bild nebeneinander) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__text h2 { margin-bottom: 20px; }
.split__text p  { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.split__text .btn { margin-top: 10px; }
.split__img { border-radius: var(--radius-img); overflow: hidden; }
.split__img img { width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .split__img img { height: 280px; }
}

/* ---------- Leistungen: moderne Service-Karten (nummeriert) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 34px 26px 30px;
  transition: box-shadow .28s, transform .28s, border-color .28s;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  box-shadow: 0 22px 48px rgba(7,7,26,0.11); transform: translateY(-5px);
  border-color: rgba(1,105,176,0.30);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__index {
  position: absolute; top: 18px; right: 22px;
  font-size: 42px; font-weight: 900; line-height: 1; letter-spacing: -1px;
  color: rgba(1,105,176,0.10);
}
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 22px;
  background: rgba(1,105,176,0.09); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: background .28s, color .28s;
}
.service-card:hover .service-card__icon { background: var(--blue); color: #fff; }
.service-card__title { font-weight: 700; font-size: 19px; margin: 0 0 12px; }
.service-card__desc  { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Abteilungs-Cards ---------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dept-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; border-top: 3px solid var(--blue);
  transition: box-shadow 0.25s, transform 0.25s;
}
.dept-card:hover { box-shadow: 0 12px 30px rgba(7,7,26,0.08); transform: translateY(-2px); }
.dept-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.dept-card__name { font-weight: 900; font-size: 21px; margin-bottom: 4px; }
.dept-card__role { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.dept-card__contact { display: flex; flex-direction: column; gap: 6px; font-size: 15px; }
.dept-card__contact a { font-weight: 600; color: var(--blue); }
.dept-card__contact a:hover { text-decoration: underline; }
.dept-card__todo { margin-top: 12px; font-size: 12px; color: var(--accent); font-style: italic; }

/* ---------- Karriere-Teaser (dunkle Sektion am Ende) ---------- */
.karriere-teaser { background: var(--blue-dark); padding: var(--section-pad) 0; }
.karriere-teaser__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.karriere-teaser .eyebrow { color: rgba(255,255,255,0.60); }
.karriere-teaser__text h2 { color: #fff; }
.karriere-teaser__text p  { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 560px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-dark); padding: 64px 0 28px;
  font-size: 15px; color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-logo img { height: 40px; margin-bottom: 18px; }
.footer-logo p   { font-size: 14px; line-height: 1.8; }
.site-footer h4  {
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin: 0 0 16px;
}
.site-footer ul  { list-style: none; margin: 0; padding: 0; }
.site-footer li  { margin-bottom: 9px; }
.site-footer a   { color: rgba(255,255,255,0.75); font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.50);
}
.footer-bottom a { color: rgba(255,255,255,0.50); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 860px) {
  :root { --section-pad: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo__content { padding: 88px 0 72px; }
  .karriere-teaser__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Moderner Hero (Text links, authentisches Foto rechts) ---------- */
.hero-photo--modern { min-height: 660px; }
.hero-photo--modern .hero-photo__bg { filter: brightness(0.92) saturate(1.05); }
.hero-photo--modern::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(7,7,26,0.95) 0%, rgba(19,27,60,0.88) 32%, rgba(19,27,60,0.58) 60%, rgba(19,27,60,0.32) 100%),
    linear-gradient(0deg, rgba(7,7,26,0.45) 0%, rgba(7,7,26,0) 32%);
}
.hero-photo--modern .hero-photo__content { position: relative; z-index: 2; width: 100%; padding: 112px 0 92px; }

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-col-media { display: flex; justify-content: flex-end; }
.hero-figure {
  margin: 0; width: 100%; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 34px 80px rgba(0,0,0,0.50);
}
.hero-figure img { width: 100%; height: 470px; object-fit: cover; display: block; }

/* Label / Eyebrow – markante Akzent-Leiste statt generischer Pille */
.hero-eyebrow {
  display: inline-block; margin-bottom: 24px; padding: 4px 0 4px 16px;
  border-left: 3px solid var(--accent);
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px; color: #fff;
}

.hero-photo--modern h1 {
  font-size: clamp(40px, 5.5vw, 66px); line-height: 1.06;
  letter-spacing: -1px; margin-bottom: 22px;
}
.hero-photo--modern .hl svg { bottom: -4px; height: 11px; }
.hero-photo--modern .hl path { stroke: var(--hl-stroke); }
.hero-lead { font-size: 18px !important; color: #fff !important; max-width: 560px; }
.hero-photo--modern p { max-width: 560px; }

@media (max-width: 860px) {
  .hero-photo--modern { min-height: 0; }
  .hero-photo--modern .hero-photo__content { padding: 92px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-col-media { justify-content: stretch; }
  .hero-figure img { height: 280px; }
}

/* ---------- Fakten-/Zahlen-Sektion (dunkelblau, Count-up beim Scrollen) ---------- */
.stats-section { background: var(--blue-dark); color: #fff; padding: 78px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { position: relative; text-align: center; padding: 4px 8px; }
.stat + .stat::before {
  content: ""; position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(255,255,255,0.14);
}
.stat__num {
  font-size: clamp(42px, 5vw, 60px); font-weight: 900; line-height: 1;
  letter-spacing: -1.5px; color: #fff; font-variant-numeric: tabular-nums;
}
.stat__label { margin-top: 12px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.60); }

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat + .stat::before { display: none; }
}

.text-accent { color: var(--blue); }

/* ---------- Fahrzeugflotte: Foto links, Typen-Liste rechts (dunkel) ---------- */
.fleet-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: stretch; }
.fleet-media {
  border-radius: 16px; overflow: hidden; min-height: 460px;
  border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 34px 80px rgba(0,0,0,0.45);
}
.fleet-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
#flotte .text-accent { color: var(--accent); }

.fleet-list { list-style: none; margin: 26px 0 0; padding: 0; }
.fleet-list__item {
  display: flex; gap: 18px; align-items: center;
  padding: 17px 4px; border-top: 1px solid rgba(255,255,255,0.12);
  transition: padding-left .2s;
}
.fleet-list__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.fleet-list__item:hover { padding-left: 10px; }
.fleet-list__icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(109,111,251,0.16); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.fleet-list__item:hover .fleet-list__icon { background: var(--accent); color: #fff; }
.fleet-list__text { display: flex; flex-direction: column; gap: 3px; }
.fleet-list__title { font-size: 17px; font-weight: 700; color: #fff; }
.fleet-list__desc  { font-size: 14px; color: rgba(255,255,255,0.64); line-height: 1.55; }
.fleet-note { margin-top: 26px !important; font-size: 14px; color: rgba(255,255,255,0.58) !important; line-height: 1.7; }

@media (max-width: 860px) {
  .fleet-layout { grid-template-columns: 1fr; gap: 28px; }
  .fleet-media { min-height: 0; }
  .fleet-media img { height: 280px; }
}

/* ---------- Einsatzgebiet: Länder-Karten mit Vektor-Maps ---------- */
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.country-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 30px 18px 22px; text-align: center; color: rgba(19,27,60,0.48);
  transition: box-shadow .25s, transform .25s, border-color .25s, color .25s;
}
.country-card:hover {
  box-shadow: 0 18px 38px rgba(7,7,26,0.10); transform: translateY(-4px);
  border-color: rgba(1,105,176,0.45); color: var(--blue);
}
.country-card__map { height: 78px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.country-card__map .cmap { height: 100%; width: auto; max-width: 132px; display: block; }
.country-card__name { font-size: 17px; font-weight: 700; color: var(--text); }
.country-card__code { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--accent); }
.einsatz-note { text-align: center; max-width: 760px; margin: 44px auto 0; color: var(--muted); font-size: 17px; }

/* ---------- Qualität: Werte-Karten auf dunkel ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 32px 28px;
}
.value-card__icon {
  width: 54px; height: 54px; border-radius: 13px; margin-bottom: 20px;
  background: rgba(109,111,251,0.16); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.value-card__title { font-size: 19px; font-weight: 700; color: #fff; margin: 0 0 12px; }
.section--dark .value-card p { color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.7; margin: 0; }

@media (max-width: 860px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
}

/* ---------- "Unser Unternehmen" (Über uns) ---------- */
.company__split { gap: 72px; }

/* Bild gestapelt mit Akzent-Fläche + schwebender Info-Card */
.company__media { position: relative; overflow: visible; border-radius: 0; }
.company__media img {
  position: relative; z-index: 2;
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: 0 24px 60px rgba(7,7,26,0.18);
}
.company__media-accent {
  position: absolute; z-index: 1; top: -22px; left: -22px;
  width: 62%; height: 62%; border-radius: var(--radius-img);
  background: rgba(109,111,251,0.14);
  border: 2px solid rgba(109,111,251,0.30);
}
.company__badge {
  position: absolute; z-index: 3; right: -18px; bottom: -22px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 24px; border-radius: 14px;
  background: var(--blue-dark); color: #fff;
  box-shadow: 0 18px 44px rgba(7,7,26,0.30);
  border-left: 4px solid var(--blue);
}
.company__badge-num { font-size: 30px; font-weight: 900; line-height: 1; letter-spacing: -0.5px; }
.company__badge-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.72); max-width: 170px; }

/* Wert-Pillars */
.company__pillars { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.company__pillar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.company__pillar:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(7,7,26,0.08);
  border-color: rgba(1,105,176,0.40);
}
.company__pillar-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1,105,176,0.09); color: var(--blue);
  transition: background .25s, color .25s;
}
.company__pillar:hover .company__pillar-icon { background: var(--blue); color: #fff; }
.company__pillar-icon svg { width: 23px; height: 23px; }
.company__pillar-text { display: flex; flex-direction: column; font-size: 14px; color: var(--muted); line-height: 1.5; }
.company__pillar-text strong { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 1px; }

/* Reveal-on-Scroll (gestaffelt) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.company__pillar.reveal:nth-of-type(2) { transition-delay: .08s; }
.company__pillar.reveal:nth-of-type(3) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 860px) {
  .company__split { gap: 56px; }
  .company__media img { height: 320px; }
  .company__media-accent { top: -14px; left: -14px; }
  .company__badge { right: 12px; bottom: -18px; padding: 14px 20px; }
}
