/* ============================================================
   SABANI INT. TRANSPORTE GMBH — MASTER STYLESHEET
   Mobile-First, CSS Custom Properties, No External Dependencies
   ============================================================ */

/* ── FONT FACE (Barlow — local hosting required) ── */
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/Barlow-Regular.woff2') format('woff2'),
       url('/assets/fonts/Barlow-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/Barlow-Medium.woff2') format('woff2'),
       url('/assets/fonts/Barlow-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/Barlow-SemiBold.woff2') format('woff2'),
       url('/assets/fonts/Barlow-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/Barlow-Bold.woff2') format('woff2'),
       url('/assets/fonts/Barlow-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/BarlowCondensed-SemiBold.woff2') format('woff2'),
       url('/assets/fonts/BarlowCondensed-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/BarlowCondensed-Bold.woff2') format('woff2'),
       url('/assets/fonts/BarlowCondensed-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/assets/fonts/BarlowCondensed-ExtraBold.woff2') format('woff2'),
       url('/assets/fonts/BarlowCondensed-ExtraBold.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Brand Colors */
  --clr-navy:        #1E3A5F;
  --clr-navy-dark:   #0D2844;
  --clr-navy-light:  #2A4F7C;
  --clr-orange:      #F47920;
  --clr-orange-dark: #D4620A;
  --clr-orange-light:#F9923F;

  /* Neutrals */
  --clr-white:       #FFFFFF;
  --clr-off-white:   #F5F7FA;
  --clr-light:       #E8ECF2;
  --clr-mid:         #8A96A8;
  --clr-text:        #1A2430;
  --clr-text-muted:  #5A6470;

  /* Semantic */
  --clr-success:     #2D7D46;
  --clr-error:       #C0392B;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-section: 4rem;

  /* Layout */
  --container:  1200px;
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  12px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);

  /* Transitions */
  --transition: 220ms ease;

  /* Z-index */
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ── SKIP NAVIGATION ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0ms;
}

.skip-nav:focus {
  top: 1rem;
  outline: 2px solid var(--clr-white);
  outline-offset: 2px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-navy-dark);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 7vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); }

p { line-height: 1.7; color: var(--clr-text-muted); }
p + p { margin-top: var(--space-md); }

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.section { padding-block: var(--space-section); }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
@media (min-width: 1024px) { .section { padding-block: 6rem; } }

.section--dark   { background: var(--clr-navy-dark); }
.section--navy   { background: var(--clr-navy); }
.section--light  { background: var(--clr-off-white); }
.section--white  { background: var(--clr-white); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 500px)  { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-gap    { display: flex; align-items: center; gap: 1rem; }
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-white  { color: var(--clr-white) !important; }
.text-orange { color: var(--clr-orange); }
.text-muted  { color: var(--clr-text-muted); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* ── SECTION HEADER ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header p {
  margin-top: var(--space-md);
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  border: 2px solid var(--clr-orange);
}
.btn-primary:hover {
  background: var(--clr-orange-dark);
  border-color: var(--clr-orange-dark);
  box-shadow: 0 4px 16px rgba(244,121,32,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-navy);
  border: 2px solid var(--clr-navy);
}
.btn-secondary:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: var(--clr-white);
  color: var(--clr-navy);
  border-color: var(--clr-white);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER / NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: var(--clr-navy-dark);
  border-bottom: 2px solid rgba(244,121,32,.25);
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-inner { height: 80px; }
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 38px;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo img { height: 44px; }
}

/* Main nav (desktop) */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover { color: var(--clr-white); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--clr-orange); }
.main-nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.header-phone:hover { color: var(--clr-orange); }

.header-phone svg {
  width: 16px; height: 16px;
  color: var(--clr-orange);
  flex-shrink: 0;
}

@media (min-width: 768px) { .header-phone { display: flex; } }

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover { background: rgba(255,255,255,.1); }

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px; right: 0; bottom: 0;
  width: min(320px, 100vw);
  background: var(--clr-navy-dark);
  border-left: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  z-index: var(--z-overlay);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { transform: translateX(0); }

@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}

.mobile-menu a:hover { color: var(--clr-white); background: rgba(255,255,255,.06); }

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  display: block;
  text-align: center;
  background: var(--clr-orange);
  color: var(--clr-white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.mobile-menu .mobile-cta:hover {
  background: var(--clr-orange-dark) !important;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  color: rgba(255,255,255,.7);
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-phone svg { color: var(--clr-orange); width: 16px; height: 16px; }

/* Menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: calc(var(--z-overlay) - 1);
}

.menu-overlay.open { display: block; }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;    /* fallback: all browsers */
  min-height: 100svh;   /* progressive enhancement: modern mobile browsers */
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--clr-navy-dark);
}

@media (min-width: 1024px) { .hero { padding-top: 80px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/web/wp-content/uploads/2023/03/Untitled-design-11-1.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,40,68,.97) 0%,
    rgba(30,58,95,.85) 50%,
    rgba(13,40,68,.75) 100%
  );
}

/* Orange accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-light), var(--clr-orange));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,121,32,.15);
  border: 1px solid rgba(244,121,32,.4);
  color: var(--clr-orange-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--clr-white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--clr-orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}

.hero-stat-item .num em {
  font-style: normal;
  color: var(--clr-orange);
}

.hero-stat-item .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--clr-orange);
  padding-block: 1.25rem;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.9375rem;
}

.trust-item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  opacity: .85;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--clr-white);
  padding-block: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--clr-light);
  border-bottom: 1px solid var(--clr-light);
  position: relative;
  transition: background var(--transition);
}

.stat-card:hover { background: var(--clr-off-white); }

.stat-card:last-child { border-right: 0; }

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--clr-orange);
  border-radius: 0 0 3px 3px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--clr-navy-dark);
  line-height: 1;
  display: block;
}

.stat-suffix {
  color: var(--clr-orange);
  font-size: 1.75rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── SERVICES ── */
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-orange);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(244,121,32,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  transition: background var(--transition);
}

.service-icon svg {
  width: 26px; height: 26px;
  color: var(--clr-orange);
}

.service-card:hover .service-icon {
  background: var(--clr-orange);
}

.service-card:hover .service-icon svg { color: var(--clr-white); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-navy-dark);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-orange);
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.625rem; }
.service-link svg { width: 16px; height: 16px; }

/* ── WHY US / FEATURES ── */
.why-us {
  background: var(--clr-navy-dark);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-us .section-label { color: var(--clr-orange-light); }
.why-us h2 { color: var(--clr-white); }
.why-us .section-header p { color: rgba(255,255,255,.6); }

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px)  { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}

.feature-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(244,121,32,.3);
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(244,121,32,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--clr-orange);
}

.feature-item h4 {
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: rgba(255,255,255,.55);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── ABOUT TEASER ── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-light);
  aspect-ratio: 4/3;
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content .section-label { margin-bottom: 0.5rem; }

.about-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
}

.about-list li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--clr-orange);
  margin-top: 0.1rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 100%);
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(244,121,32,.08));
  pointer-events: none;
}

.cta-banner h2 { color: var(--clr-white); }
.cta-banner p  { color: rgba(255,255,255,.65); margin-top: 0.75rem; }

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 0.9375rem;
}

.cta-contact-item svg {
  width: 18px; height: 18px;
  color: var(--clr-orange);
  flex-shrink: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--clr-navy-dark);
  padding-top: calc(70px + 3rem);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero { padding-top: calc(80px + 4rem); padding-bottom: 4rem; }
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-light), transparent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/web/wp-content/uploads/2023/03/Untitled-design-10-1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--clr-orange); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb span { color: var(--clr-orange-light); }

.page-hero h1 { color: var(--clr-white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 620px; }

/* ── LEISTUNGEN (Services page) ── */
.service-detail-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-img {
  height: 200px;
  background: var(--clr-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-img svg {
  width: 64px; height: 64px;
  color: var(--clr-orange);
  opacity: .7;
}

.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(13,40,68,.8));
}

.service-detail-body { padding: 1.75rem; }
.service-detail-body h3 { margin-bottom: 0.75rem; }
.service-detail-body p { font-size: 0.9375rem; margin-bottom: 1.25rem; }

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.service-detail-features li svg {
  width: 16px; height: 16px;
  color: var(--clr-orange);
  flex-shrink: 0;
}

/* ── CONTACT / FORMS ── */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 380px 1fr; align-items: start; }
}

.contact-info-card {
  background: var(--clr-navy-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--clr-white);
}

.contact-info-card h3 { color: var(--clr-white); margin-bottom: 0.5rem; }
.contact-info-card > p { color: rgba(255,255,255,.6); font-size: 0.9375rem; margin-bottom: 2rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
}

.contact-info-item .ci-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(244,121,32,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .ci-icon svg {
  width: 18px; height: 18px;
  color: var(--clr-orange);
}

.contact-info-item .ci-text { display: flex; flex-direction: column; gap: 0.125rem; }
.contact-info-item .ci-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.contact-info-item .ci-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-white);
}
.contact-info-item .ci-value a { transition: color var(--transition); }
.contact-info-item .ci-value a:hover { color: var(--clr-orange); }

/* Form */
.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

@media (min-width: 640px) { .form-card { padding: 2.5rem; } }

.form-card h3 { margin-bottom: 0.5rem; }
.form-card > p { color: var(--clr-text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-navy-dark);
}

.form-group label .req { color: var(--clr-orange); margin-left: 0.125rem; }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--clr-navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}

.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--clr-error);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control { cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-navy);
  cursor: pointer;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check a { color: var(--clr-navy); text-decoration: underline; }

/* Honeypot */
.hp-field { display: none !important; }

/* Form feedback */
.form-msg {
  display: none;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 1rem;
  align-items: center;
  gap: 0.75rem;
}

.form-msg.show { display: flex; }
.form-msg.success { background: rgba(45,125,70,.1); color: var(--clr-success); border: 1px solid rgba(45,125,70,.25); }
.form-msg.error   { background: rgba(192,57,43,.1); color: var(--clr-error);   border: 1px solid rgba(192,57,43,.25); }
.form-msg svg { width: 20px; height: 20px; flex-shrink: 0; }

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .form-submit-row { flex-direction: row; align-items: center; }
}

/* ── CAREER ── */
.job-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

@media (min-width: 640px) {
  .job-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-orange);
}

.job-info h4 { font-size: 1.05rem; margin-bottom: 0.375rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }

.tag {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tag-orange { background: rgba(244,121,32,.12); color: var(--clr-orange-dark); }
.tag-navy   { background: rgba(30,58,95,.1);   color: var(--clr-navy); }
.tag-gray   { background: var(--clr-light);     color: var(--clr-text-muted); }

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(244,121,32,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon svg { width: 26px; height: 26px; color: var(--clr-orange); }
.benefit-card h4 { margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.9rem; }

/* ── ABOUT PAGE ── */
.value-card {
  padding: 1.75rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--clr-orange);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); }
.value-card h4 { margin-bottom: 0.5rem; color: var(--clr-navy-dark); }
.value-card p  { font-size: 0.9375rem; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
}

.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--clr-navy-dark); }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; color: var(--clr-navy); }
.legal-content p  { color: var(--clr-text-muted); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--clr-text-muted); font-size: 0.9375rem; margin-bottom: 0.375rem; }
.legal-content a  { color: var(--clr-navy); text-decoration: underline; }
.legal-content a:hover { color: var(--clr-orange); }

/* ── FOOTER ── */
.site-footer {
  background: var(--clr-navy-dark);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--clr-orange);
}

.footer-main { padding-block: 4rem; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.5);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo {
  height: auto;
  width: 200px;
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin-top: 0;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a:hover { color: var(--clr-orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.875rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--clr-orange);
  margin-top: 0.2rem;
}

.footer-contact-item a:hover { color: var(--clr-orange); }

.footer-bottom {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,.35);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--clr-orange); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: var(--z-modal);
  background: var(--clr-navy-dark);
  border: 1px solid rgba(244,121,32,.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 580px;
  transform: translateY(150%);
  transition: transform 400ms cubic-bezier(.4,0,.2,1);
}

@media (min-width: 640px) {
  .cookie-banner { flex-direction: row; align-items: center; }
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.cookie-banner a { color: var(--clr-orange); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.5rem 1.125rem;
  background: var(--clr-orange);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover { background: var(--clr-orange-dark); }

.cookie-decline {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,.5);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
}

.cookie-decline:hover { color: var(--clr-white); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── MISC ── */
.divider {
  border: none;
  border-top: 1px solid var(--clr-light);
  margin-block: 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ── KEYFRAMES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* iOS scroll lock for mobile menu */
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ── LOADING STATE ── */
.btn.loading { pointer-events: none; opacity: .75; }
.btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}

/* ── IMAGE FALLBACK ── */
.about-image-wrap img,
.service-detail-img img {
  background: var(--clr-light);
}

/* Broken img placeholder */
img[src=""],
img:not([src]) {
  visibility: hidden;
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .cookie-banner, .mobile-menu { display: none; }
  body { color: #000; }
  a { text-decoration: underline; }
}

/* ============================================================
   DESIGN UPGRADE — visuelle Verbesserungen
   Prozess, Branchen, Diagonalen, verbesserte Karten, Mobile
   ============================================================ */

/* ── DIAGONALE SEKTIONS-ÜBERGÄNGE ─────────────────────────── */
.section--angle-bottom {
  position: relative;
  padding-bottom: calc(var(--space-section) + 48px);
}

.section--angle-bottom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: inherit;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* Hero-Diagonale */
.hero-angle {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 56px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-angle svg {
  display: block;
  width: 100%; height: 100%;
  fill: var(--clr-off-white);
}

/* ── HINTERGRUNDMUSTER ─────────────────────────────────────── */
.bg-dots {
  background-image: radial-gradient(var(--clr-light) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-lines {
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,.03) 10px,
    rgba(255,255,255,.03) 11px
  );
}

/* ── VERBESSERTE HERO ──────────────────────────────────────── */
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
}

/* Schwebende Kontaktkarte im Hero (Desktop) */
.hero-contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-contact-card h4 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1.25rem;
}

.hcc-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.hcc-item:last-of-type { margin-bottom: 0; }

.hcc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(244,121,32,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.hcc-icon svg { width: 18px; height: 18px; color: var(--clr-orange); }

.hcc-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hcc-value {
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
}

.hcc-value a { transition: color var(--transition); }
.hcc-value a:hover { color: var(--clr-orange); }

.hcc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 1.25rem 0;
}

/* ── PROZESS-SEKTION ───────────────────────────────────────── */
.process-section { background: var(--clr-off-white); }

.process-steps {
  display: grid;
  gap: 2rem;
  position: relative;
  counter-reset: steps;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  /* Verbindungslinie zwischen Steps */
  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--clr-orange) 0, var(--clr-orange) 8px,
      transparent 8px, transparent 16px
    );
  }
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(244,121,32,.35);
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--clr-navy-dark);
  margin-bottom: 0.625rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── VERBESSERTE SERVICE-CARDS ─────────────────────────────── */
.service-card-v2 {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
  display: flex;
  flex-direction: column;
}

.service-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,40,68,.14);
}

.scv2-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;   /* Stellt eigenen Stacking-Context sicher → z-index der Kinder funktioniert korrekt */
}

/* Gradient-Fallbacks wenn Bild fehlt */
.scv2-image--national     { background: linear-gradient(135deg, #0D2844 0%, #1E5F9C 100%); }
.scv2-image--international{ background: linear-gradient(135deg, #0D3B6E 0%, #1A5C9C 100%); }
.scv2-image--logistik     { background: linear-gradient(135deg, #1E3A5F 0%, #2A5F8C 100%); }
.scv2-image--spedition    { background: linear-gradient(135deg, #0D2844 0%, #163A60 100%); }
.scv2-image--tuer         { background: linear-gradient(135deg, #1A3A5C 0%, #0D2844 100%); }
.scv2-image--tracking     { background: linear-gradient(135deg, #0D2844 0%, #1E4F7C 100%); }

.scv2-image svg {
  width: 56px; height: 56px;
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 3;           /* Über Bild UND Overlay */
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}

.scv2-image-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 0;           /* Unterste Schicht */
  transition: opacity 600ms ease;
}

.scv2-image-img.loaded { opacity: 1; }

/* Orange accent stripe — ganz oben */
.scv2-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clr-orange);
  z-index: 4;
}

/* Dunkles Overlay über dem Foto, unter dem Icon */
.scv2-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;           /* Über Bild, unter Icon */
  background: linear-gradient(
    to bottom,
    rgba(13,40,68,.55) 0%,
    rgba(13,40,68,.72) 100%
  );
}

.scv2-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.scv2-body h3 {
  font-size: 1.1rem;
  color: var(--clr-navy-dark);
  margin-bottom: 0.625rem;
}

.scv2-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.scv2-features {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.scv2-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.scv2-features li svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  color: var(--clr-orange);
}

/* ── VERBESSERTE STATS ─────────────────────────────────────── */
.stat-card-v2 {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-light);
  position: relative;
  transition: box-shadow 220ms ease;
}

.stat-card-v2:hover { box-shadow: var(--shadow-md); }

.stat-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  background: var(--clr-orange);
  border-radius: 0 0 3px 3px;
}

.stat-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(244,121,32,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.875rem;
}

.stat-icon-wrap svg {
  width: 22px; height: 22px;
  color: var(--clr-orange);
}

/* ── BRANCHEN-STREIFEN ─────────────────────────────────────── */
.industries-section { background: var(--clr-white); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(6, 1fr); } }

.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 220ms, box-shadow 220ms;
  cursor: default;
}

.industry-chip:hover {
  border-color: var(--clr-orange);
  box-shadow: 0 4px 12px rgba(244,121,32,.1);
}

.industry-chip svg {
  width: 32px; height: 32px;
  color: var(--clr-navy);
}

.industry-chip span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-navy-dark);
  line-height: 1.3;
}

/* ── FLOTTEN-BAR ───────────────────────────────────────────── */
.fleet-bar {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.fleet-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

@media (min-width: 768px) {
  .fleet-stats { grid-template-columns: repeat(4, 1fr); }
}

.fleet-stat {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fleet-stat:nth-child(2n) { border-right: none; }
.fleet-stat:nth-child(3n+1),
.fleet-stat:nth-child(3n+2) { }

@media (min-width: 768px) {
  .fleet-stat { border-bottom: none; }
  .fleet-stat:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.07); }
  .fleet-stat:last-child { border-right: none; }
}

.fleet-stat-icon {
  width: 44px; height: 44px;
  background: rgba(244,121,32,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}

.fleet-stat-icon svg { width: 20px; height: 20px; color: var(--clr-orange); }

.fleet-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.fleet-stat-num em {
  font-style: normal;
  color: var(--clr-orange);
}

.fleet-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── VERBESSERTES WHY-US ───────────────────────────────────── */
.why-us-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) { .why-us-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: background 220ms, border-color 220ms;
}

.why-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(244,121,32,.25);
}

.why-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(244,121,32,.25);
  line-height: 1;
  width: 40px;
  text-align: right;
  transition: color 220ms;
}

.why-item:hover .why-num { color: var(--clr-orange); }

.why-body h4 {
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.why-body p {
  color: rgba(255,255,255,.52);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── ABOUT V2 — CEO-QUOTE ──────────────────────────────────── */
.ceo-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--clr-orange);
  background: rgba(244,121,32,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ceo-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-navy-dark);
  line-height: 1.55;
  font-style: italic;
}

.ceo-quote cite {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── VERBESSERTES CTA-BANNER ───────────────────────────────── */
.cta-banner-v2 {
  background: var(--clr-navy-dark);
  position: relative;
  overflow: hidden;
}

.cta-banner-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F47920' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-v2::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--clr-orange);
}

.cta-content { position: relative; z-index: 1; }

/* ── MOBILE VERBESSERUNGEN ─────────────────────────────────── */
@media (max-width: 639px) {
  /* Hero auf Mobil kompakter */
  .hero-content { padding-block: 2.5rem 1.5rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero-subtitle { font-size: 0.9375rem; margin-bottom: 1.25rem; }
  .hero-stats { gap: 1rem 1.75rem; margin-top: 1.75rem; padding-top: 1.5rem; }
  .hero-stat-item .num { font-size: 1.625rem; }

  /* Buttons mobil: volle Breite */
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Prozessschritte mobil */
  .process-steps { gap: 1.5rem; }
  .process-step { padding: 0 0.5rem; }

  /* Service-Cards mobil kompakter */
  .scv2-image { height: 150px; }
  .scv2-body { padding: 1.25rem; }

  /* Flottenbar 2-spaltig */
  .fleet-stats { grid-template-columns: 1fr 1fr; }

  /* Branchen 3-spaltig */
  .industry-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .industry-chip { padding: 1rem 0.75rem; }
  .industry-chip svg { width: 26px; height: 26px; }
  .industry-chip span { font-size: 0.7rem; }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-contact-card { display: none; }
}

/* ── BILD-LAZYLOAD FADE ────────────────────────────────────── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 400ms ease;
}

img[loading="lazy"].loaded { opacity: 1; }

/* ── PAGE HERO BILD ────────────────────────────────────────── */
.page-hero-bg {
  background-image: url('/web/wp-content/uploads/2023/03/Untitled-design-10-1.png');
}

/* Service-Bilder (sobald hochgeladen) */
.scv2-image[data-bg]::after { opacity: 0.45; }

/* ============================================================
   ALLE VERBESSERUNGEN — vollständige Implementierung
   ============================================================ */

/* ── P1: BROKEN IMAGE FALLBACK ─────────────────────────────── */
.about-image-wrap {
  min-height: 320px;
  background: linear-gradient(135deg, var(--clr-navy-dark), var(--clr-navy));
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-image-wrap img {
  min-height: 320px;
  object-fit: cover;
}

/* img fallback icon — zeigt Flottenicon wenn Bild fehlt */
.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  pointer-events: none;
}

.about-image-placeholder svg {
  width: 64px; height: 64px;
  color: rgba(244,121,32,.35);
}

.about-image-placeholder span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hide placeholder once img loads */
.about-image-wrap.img-loaded .about-image-placeholder { display: none; }

/* ── P1: TELEFON IM MOBILEN HEADER ─────────────────────────── */
/* Überschreibe die media-query aus main CSS */
.header-phone {
  display: flex !important;
}

.header-phone-text {
  display: none;
}

@media (min-width: 768px) {
  .header-phone-text {
    display: inline;
  }
}

/* ── P1: STICKY CALL BUTTON MOBILE ─────────────────────────── */
.sticky-call {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 95;
  display: none;
  text-align: center;
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 0.9375rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(244,121,32,.45);
  transition: background var(--transition);
  text-decoration: none;
}

.sticky-call a:hover { background: var(--clr-orange-dark); }
.sticky-call a svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 767px) {
  .sticky-call { display: block; }
  /* Padding damit Inhalt nicht hinter dem Button verschwindet */
  main { padding-bottom: 80px; }
}

/* ── P1: TESTIMONIALS / REFERENZEN ─────────────────────────── */
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.t-stars {
  color: var(--clr-orange);
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: flex;
  gap: 2px;
}

.t-stars svg {
  width: 16px; height: 16px;
  fill: var(--clr-orange);
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--clr-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(244,121,32,.25);
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}

.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(30,58,95,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-navy);
  flex-shrink: 0;
}

.t-meta cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--clr-navy-dark);
  display: block;
}

.t-meta span {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
}

.t-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: 2rem;
  background: rgba(244,121,32,.08);
  color: var(--clr-orange-dark);
  margin-top: 0.25rem;
}

/* ── P1: ANTWORTZEIT-VERSPRECHEN ────────────────────────────── */
.response-promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(244,121,32,.07);
  border: 1px solid rgba(244,121,32,.2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--clr-orange-dark);
  margin-bottom: 1.25rem;
}

.response-promise svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--clr-orange);
}

.response-promise strong { font-weight: 700; }

/* ── P2: ZEITANGABEN IN PROZESSSCHRITTEN ─────────────────────── */
.process-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
  background: rgba(244,121,32,.1);
  padding: 0.1875rem 0.625rem;
  border-radius: 2rem;
}

/* ── P2: GRID FIX SEHR KLEINE SCREENS ───────────────────────── */
@media (max-width: 479px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .scv2-image { height: 160px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── P2: MOBILE TYPOGRAFIE FIX ──────────────────────────────── */
@media (max-width: 639px) {
  .section-label { font-size: 0.8125rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 0.875rem 1.5rem; }
  .trust-bar-inner { gap: 0.75rem 1.5rem; }
  .cta-inner { gap: 1.5rem; }
}

/* ── P2: FORM TOUCH TARGET FIX (min 44px) ──────────────────── */
.form-control {
  padding: 0.875rem 1rem;
  min-height: 44px;
}

@media (max-width: 639px) {
  .form-submit-row { flex-direction: column; }
  .form-submit-row .btn { width: 100%; justify-content: center; }
}

/* ── P3: ZEITSTRAHL / MEILENSTEINE ──────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-orange), rgba(244,121,32,.1));
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -1.625rem;
  top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-orange);
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-orange);
  flex-shrink: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--clr-orange);
  display: block;
  margin-bottom: 0.25rem;
}

.timeline-item h4 {
  font-size: 1rem;
  color: var(--clr-navy-dark);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ── ZUSATZ: PARTNER/ZERTIFIKAT LOGOS BAR ────────────────────── */
.partners-bar {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-light);
  border-bottom: 1px solid var(--clr-light);
  padding: 1.5rem 0;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.partner-icon {
  width: 48px; height: 48px;
  background: var(--clr-off-white);
  border: 1px solid var(--clr-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-icon svg {
  width: 26px; height: 26px;
  color: var(--clr-text-muted);
}

.partner-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

/* ── ZUSATZ: TRUST BADGES ────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3125rem 0.75rem;
  background: var(--clr-off-white);
  border: 1px solid var(--clr-light);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-navy);
}

.trust-badge svg {
  width: 14px; height: 14px;
  color: var(--clr-orange);
  flex-shrink: 0;
}

/* ── ZUSATZ: FAQ ACCORDION ───────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--clr-light);
}

.faq-item:first-child { border-top: 1px solid var(--clr-light); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--clr-navy-dark);
  gap: 1rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--clr-orange); }

.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--clr-orange);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.125rem;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── ZUSATZ: ANFAHRT KARTE PLACEHOLDER ──────────────────────── */
.map-placeholder {
  background: linear-gradient(135deg, var(--clr-navy-dark), var(--clr-navy-light));
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 32px
  ),
  repeating-linear-gradient(
    90deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 1px, transparent 32px
  );
}

.map-placeholder svg { width: 48px; height: 48px; color: var(--clr-orange); opacity: .7; position: relative; z-index: 1; }
.map-placeholder p { color: rgba(255,255,255,.6); font-size: 0.9375rem; text-align: center; position: relative; z-index: 1; }
