/* ==========================================================================
   MP Transporte GmbH — Design-Tokens
   ========================================================================== */
:root {
  /* Farben */
  --bg-void: #070b14;
  --bg-panel: #0c1220;
  --bg-panel-alt: #0f1626;
  --surface-glass: rgba(255, 255, 255, 0.045);
  --surface-glass-strong: rgba(255, 255, 255, 0.075);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-glass-strong: rgba(255, 255, 255, 0.16);

  --deep-blue: #16225a;
  --electric-blue: #3b6dff;
  --neon-orange: #ff6a1a;
  --neon-orange-soft: #ffb27a;

  --text-hi: #eef1f7;
  --text-mid: #aab2c5;
  --text-dim: #6b7488;

  /* Typografie */
  --font-display: 'Clash Display', 'General Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'General Sans', 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  /* Sonstiges */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --header-h: 74px;
  --ease: cubic-bezier(.22, .8, .32, 1);
}

/* ==========================================================================
   Reset & Basis
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--bg-void);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); color: var(--text-hi); margin: 0 0 .6em; line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--neon-orange);
  outline-offset: 3px;
}

/* scroll offset so fixed header never covers a jumped-to section */
#leistungen, #ablauf, #konfigurator, #vertrauen, #einsatzgebiet, #ueber-uns {
  scroll-margin-top: var(--header-h);
}

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  color: var(--neon-orange-soft);
  margin: 0 0 1rem;
}
.section-intro {
  max-width: 640px;
  font-size: 1.05rem;
}
.accent-text { color: var(--neon-orange-soft); }

.glass {
  background: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    filter: blur(6px);
    transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
    transition-delay: var(--reveal-delay, 0s);
  }
  [data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Laufband (Ticker)
   ========================================================================== */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(90deg, rgba(59,109,255,.06), rgba(255,106,26,.06));
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: ticker-scroll 34s linear infinite; }
  .ticker:hover .ticker-track { animation-play-state: paused; }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-group { display: flex; flex-shrink: 0; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.4rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--text-mid);
  white-space: nowrap;
}
.ticker-item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--neon-orange);
  box-shadow: 0 0 8px var(--neon-orange);
}

/* ==========================================================================
   Bild-Parallax beim Scrollen
   ========================================================================== */
.parallax-media { overflow: hidden; }
.parallax-media img {
  will-change: transform;
  transform: scale(1.14) translateY(var(--parallax-y, 0px));
}
@media (prefers-reduced-motion: reduce) {
  .parallax-media img { transform: none; }
}

/* ==========================================================================
   Überschriften zeilenweise aufdecken
   ========================================================================== */
.reveal-heading .line-mask { display: block; overflow: hidden; }
.reveal-heading .line-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--line-i, 0) * .09s);
}
.reveal-heading.is-visible .line-inner { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-heading .line-inner { transform: none; transition: none; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .9em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .25s var(--ease);
}
.btn--small { padding: .6em 1.15em; font-size: .85rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--neon-orange), #ff8a3d);
  color: #1a0f04;
  box-shadow: 0 8px 30px -8px rgba(255, 106, 26, .55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(255, 106, 26, .65); }
.btn--primary:disabled {
  background: rgba(255, 255, 255, .12);
  color: var(--text-dim);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.btn--ghost {
  border-color: var(--border-glass-strong);
  color: var(--text-hi);
  background: rgba(255, 255, 255, .03);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .07); transform: translateY(-2px); }

/* ==========================================================================
   Scroll-Fortschritt (Neon-Linie am oberen Rand)
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-orange));
  box-shadow: 0 0 12px rgba(255, 106, 26, .7);
  z-index: 300;
  pointer-events: none;
}

/* ==========================================================================
   Cursor-Spotlight auf Karten
   ========================================================================== */
.spotlight-card {
  position: relative;
  isolation: isolate;
}
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 138, 61, .16),
    rgba(59, 109, 255, .08) 40%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.spotlight-card:hover::after { opacity: 1; }

.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ==========================================================================
   Wortweiser Aufbau der Hero-Überschrift
   ========================================================================== */
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) rotateX(-40deg);
  transform-origin: 50% 100%;
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .word {
    animation: word-in .8s var(--ease) forwards;
    animation-delay: calc(var(--word-i, 0) * .055s + .1s);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .word { opacity: 1; transform: none; }
}
@keyframes word-in {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ==========================================================================
   Zahlen-Leiste
   ========================================================================== */
.stats-band {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(59, 109, 255, .05), transparent);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--text-hi);
  line-height: 1;
  display: block;
}
.stat-value .stat-suffix { color: var(--neon-orange); }
.stat-label {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-top: .8rem;
  display: block;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(7, 11, 20, .35);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 11, 20, .78);
  border-bottom-color: var(--border-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: .6em; }
.logo-image {
  height: 34px;
  width: auto;
  border-radius: 6px;
}
.site-footer .logo-image { height: 42px; }
.nav-list {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: .93rem;
}
.nav-list a { color: var(--text-mid); transition: color .2s; }
.nav-list a:hover { color: var(--text-hi); }
.header-actions { display: flex; align-items: center; gap: 14px; }
/* Telefonnummer im Header erst ab genug Platz zeigen – auf dem Handy
   erreicht man uns ohnehin über den Footer bzw. den Hero-Button. */
.header-call { display: none; }
@media (min-width: 1000px) {
  .header-call { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-glass-strong);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 16px; height: 2px; background: var(--text-hi); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (min-width: 900px) {
  .nav-list { display: flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 899px) {
  .nav-list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(9, 13, 24, .97);
    border-bottom: 1px solid var(--border-glass);
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-list.is-open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav-list li { width: 100%; border-top: 1px solid var(--border-glass); }
  .nav-list a { display: block; padding: 14px 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 24px 100px;
}
.hero-visual { position: absolute; inset: 0; z-index: 0; }
.hero-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(59, 109, 255, .18), transparent 60%),
    radial-gradient(55% 50% at 15% 85%, rgba(255, 106, 26, .14), transparent 60%),
    linear-gradient(180deg, rgba(7,11,20,.55), rgba(7,11,20,.62) 55%, rgba(7,11,20,.92) 100%),
    url('assets/images/hero-bg.jpg') center 42%/cover no-repeat;
}
.hero-fallback::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 60% 40%, black, transparent 75%);
  mask-image: radial-gradient(70% 60% at 60% 40%, black, transparent 75%);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
body.no-webgl #hero-canvas { display: none; }

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.route-tag {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--text-mid);
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  margin: 0 0 1.4rem;
}
.route-tag i { color: var(--neon-orange); font-style: normal; opacity: .8; }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin-bottom: .6em;
}
.hero-sub { font-size: 1.1rem; max-width: 34em; color: var(--text-mid); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }

.scroll-cue {
  position: relative;
  z-index: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--text-dim);
}
.scroll-cue svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ==========================================================================
   Services
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.service-card {
  padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-glass-strong); }
.service-code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--neon-orange-soft);
  border: 1px solid rgba(255, 106, 26, .35);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 1rem;
}
.service-icon { width: 30px; height: 30px; color: var(--electric-blue); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.service-card p { font-size: .93rem; margin: 0; }

/* ==========================================================================
   Ablauf / Process
   ========================================================================== */
.process {
  margin-top: 3rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-glass);
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-glass);
}
.process-number {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--electric-blue);
  min-width: 2.4ch;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .35em; }
.process-step p { margin: 0; font-size: .95rem; max-width: 46em; }

@media (min-width: 720px) {
  .process { grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .process-step { border-bottom: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--border-glass); padding-bottom: 28px; }
}

/* ==========================================================================
   Konfigurator
   ========================================================================== */
.configurator {
  margin-top: 3rem;
  padding: 32px;
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .configurator { grid-template-columns: 1.15fr .85fr; padding: 40px; }
}

.configurator-form fieldset { border: none; padding: 0; margin: 0 0 1.6rem; }
.configurator-form legend { font-weight: 600; color: var(--text-hi); margin-bottom: .8em; padding: 0; font-size: .96rem; }

.chip-group-label {
  display: block;
  font-weight: 600;
  color: var(--text-hi);
  margin-bottom: .8em;
  font-size: .96rem;
}
.service-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.service-chip {
  padding: .7em 1.2em;
  border-radius: 999px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, .04);
  color: var(--text-hi);
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.service-chip:hover { transform: translateY(-1px); }
.service-chip.is-active {
  border-color: var(--neon-orange);
  background: rgba(255, 106, 26, .14);
}

.service-panel {
  border-top: 1px solid var(--border-glass);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}
.service-panel[hidden] { display: none; }
.panel-label { font-weight: 600; color: var(--text-hi); margin-bottom: 1rem; font-size: .96rem; }

.form-row--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-row--3 { grid-template-columns: repeat(3, 1fr); } }

.flag-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 0 0 1.4rem;
}
.flag-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: .87rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.flag-check:has(input:checked) {
  border-color: var(--neon-orange);
  background: rgba(255, 106, 26, .08);
}
.flag-check input { accent-color: var(--neon-orange); width: 16px; height: 16px; flex-shrink: 0; }

.checkbox-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: .89rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.check-card:has(input:checked) {
  border-color: var(--neon-orange);
  background: rgba(255, 106, 26, .08);
}
.check-card input { accent-color: var(--neon-orange); width: 16px; height: 16px; flex-shrink: 0; }
.check-code {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--neon-orange-soft);
  border: 1px solid rgba(255, 106, 26, .3);
  border-radius: 6px;
  padding: 1px 6px;
  flex-shrink: 0;
}

.form-row { display: grid; gap: 18px; margin-bottom: 1.4rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 1.4rem; }
.form-field label { display: block; font-size: .85rem; color: var(--text-hi); margin-bottom: .5em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: .8em 1em;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-hi);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--electric-blue); }
.form-field textarea { resize: vertical; }

.form-hint { font-size: .82rem; color: var(--text-dim); margin-top: 1rem; }
.form-hint a { color: var(--neon-orange-soft); }

.preview-panel { display: flex; flex-direction: column; }
.preview-label { font-size: .85rem; color: var(--text-hi); margin-bottom: .8em; }
.preview-bubble {
  flex: 1;
  background: var(--bg-panel-alt);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}
.preview-bubble::before {
  content: "";
  position: absolute;
  top: 18px; left: -8px;
  width: 16px; height: 16px;
  background: var(--bg-panel-alt);
  border-left: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  transform: rotate(45deg);
  display: none;
}
@media (min-width: 960px) { .preview-bubble::before { display: block; } }
.preview-bubble pre {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-mid);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  min-height: 220px;
}

/* ==========================================================================
   Vertrauen / Trust
   ========================================================================== */
.widget-placeholder,
.trustindex-widget,
.trustlocal-reviews {
  margin-top: 3rem;
}
.trustlocal-reviews {
  margin-top: 1.5rem;
  background: #f4f5f7;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.widget-placeholder {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-style: dashed;
  flex-wrap: wrap;
}
.widget-placeholder .stars { color: var(--neon-orange); font-size: 1.3rem; letter-spacing: 2px; }
.widget-placeholder p { margin: 0; font-size: .92rem; color: var(--text-mid); }

.testimonial-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.testimonial-card { padding: 26px; margin: 0; }
.testimonial-card p { font-size: .98rem; color: var(--text-hi); margin: 0 0 1em; }
.testimonial-card cite { font-style: normal; font-size: .82rem; color: var(--text-dim); }
.testimonial-note { font-size: .78rem; color: var(--text-dim); margin: 1rem 0 0; }

.promise-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-glass);
}
.promise-item svg { width: 26px; height: 26px; color: var(--neon-orange); margin-bottom: .8em; }
.promise-item h3 { font-size: .95rem; margin: 0; }

/* ==========================================================================
   Warum MP Transporte / FAQ-Akkordeon
   ========================================================================== */
.faq-accordion {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item[open] { border-color: var(--border-glass-strong); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-hi);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--neon-orange);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-mid);
  font-size: .95rem;
}

/* ==========================================================================
   Einsatzgebiet
   ========================================================================== */
.section-inner--split {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .section-inner--split { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.coverage-map { padding: 20px; aspect-ratio: 400 / 260; }
.map-label { font-family: var(--font-mono); font-size: 11px; fill: var(--text-mid); }
.map-label--main { fill: var(--text-hi); font-weight: 600; }
.map-route {
  stroke-dasharray: 4 5;
  stroke-dashoffset: 0;
}
.map-node--stop {
  transform-box: fill-box;
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .map-route { animation: map-route-flow 2.2s linear infinite; }
  .map-node--stop { animation: map-node-pulse 2.4s ease-in-out infinite; }
  .map-node--stop:nth-of-type(2) { animation-delay: .2s; }
  .map-node--stop:nth-of-type(3) { animation-delay: .4s; }
  .map-node--stop:nth-of-type(4) { animation-delay: .6s; }
  .map-node--stop:nth-of-type(5) { animation-delay: .8s; }
  .map-node--stop:nth-of-type(6) { animation-delay: 1s; }
  .map-node--stop:nth-of-type(7) { animation-delay: 1.2s; }
}
@keyframes map-route-flow { to { stroke-dashoffset: -18; } }
@keyframes map-node-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

/* ==========================================================================
   Einblicke / Gallery
   ========================================================================== */
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.gallery-card:hover { transform: translateY(-6px); border-color: var(--border-glass-strong); }
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 14px 16px;
  font-size: .85rem;
  color: var(--text-mid);
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.rating-badge {
  padding: 22px 24px;
  text-align: center;
}
.rating-score {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-hi);
  display: block;
  line-height: 1;
}
.rating-max { font-size: .95rem; color: var(--text-dim); font-weight: 400; }
.rating-source {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--neon-orange-soft);
  margin-top: .7rem;
  display: block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.2rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  color: var(--text-mid);
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.social-links a:hover {
  color: var(--neon-orange);
  border-color: rgba(255, 106, 26, .5);
  transform: translateY(-2px);
}
.social-links svg { width: 19px; height: 19px; }

.footer-trustlocal {
  display: flex;
  justify-content: center;
  padding: 0 24px 28px;
}
.footer-trustlocal .trustlocal-widget {
  background: #f4f5f7;
  border-radius: 14px;
  padding: 12px 16px;
  max-width: 100%;
  overflow: hidden;
}

.instagram-feed {
  margin-top: 2.5rem;
  background: #f4f5f7;
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* ==========================================================================
   Über uns
   ========================================================================== */
.about-band { padding: 96px 0; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-glass); }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 72px 0 32px; border-top: 1px solid var(--border-glass); }
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 48px;
}
.footer-address { font-size: .9rem; margin: 1.2rem 0 .6rem; }
.footer-hours {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: .8rem;
}
.footer-heading { font-size: .85rem; color: var(--text-hi); margin-bottom: 1rem; }
.footer-links li { margin-bottom: .6rem; font-size: .9rem; }
.footer-links a:hover, .footer-address + p a:hover { color: var(--neon-orange-soft); }
.footer-copyright {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border-glass);
  font-size: .8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   E-Mail-Kopieren-Toast
   ========================================================================== */
.email-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 12px);
  background: var(--bg-panel-alt);
  border: 1px solid var(--border-glass-strong);
  color: var(--text-hi);
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 200;
  white-space: nowrap;
}
.email-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--neon-orange), #ff8a3d);
  color: #1a0f04;
  box-shadow: 0 10px 30px -8px rgba(255, 106, 26, .6);
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 106, 26, .5);
}
@media (prefers-reduced-motion: no-preference) {
  .whatsapp-float::before { animation: pulse-ring 2.4s ease-out infinite; }
}
@keyframes pulse-ring {
  0% { transform: scale(.9); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
