/* =========================================================
   MAB Logistik — Stylesheet
   Aesthetic: Deep midnight navy with warm amber accent
   ========================================================= */

:root {
  /* Colors */
  --bg: #0F1922;
  --bg-elevated: #182331;
  --bg-card: #1A2533;
  --bg-soft: #1F2C3C;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);

  --text: #F2F4F7;
  --text-muted: #9AAAB8;
  --text-soft: #6B7B8C;

  --accent: #E8B86C;
  --accent-bright: #F4C97A;
  --accent-dim: rgba(232, 184, 108, 0.15);

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle ambient background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 184, 108, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(232, 184, 108, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-large { padding: 18px 32px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #1A1206;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 184, 108, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(15, 25, 34, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--border);
  background: rgba(15, 25, 34, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--text);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 16px;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav a:hover {
  color: var(--text);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 200px 0 140px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('images/einladen.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(0.85) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Strong fade on the left where the text sits */
    linear-gradient(90deg,
      rgba(15, 25, 34, 0.96) 0%,
      rgba(15, 25, 34, 0.85) 35%,
      rgba(15, 25, 34, 0.55) 65%,
      rgba(15, 25, 34, 0.4) 100%),
    /* Vertical depth at the top/bottom for header & section blend */
    linear-gradient(180deg,
      rgba(15, 25, 34, 0.6) 0%,
      transparent 25%,
      transparent 70%,
      rgba(15, 25, 34, 0.9) 100%);
}
.hero-glow {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 184, 108, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

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

.hero-content {
  max-width: 720px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.02);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}
.accent-text {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.55;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

/* =========================================================
   Showcase (between Services and About)
   ========================================================= */
.showcase {
  padding: 60px 0 40px;
  position: relative;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.showcase-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}
.showcase-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 0%,
    transparent 60%,
    rgba(15, 25, 34, 0.4) 100%);
}

.showcase-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-content .section-tag {
  align-self: flex-start;
  margin-bottom: 18px;
}
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 18px;
}
.showcase-content > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.showcase-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.showcase-list strong {
  color: var(--text);
  font-weight: 600;
}

/* =========================================================
   Stats
   ========================================================= */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, transparent 100%);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: left;
  padding: 8px 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
/* Text-only stat values need slightly tighter scaling */
.stat-value-text {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* =========================================================
   Sections (general)
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   Services
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  background: var(--bg-soft);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card-featured {
  background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-soft) 100%);
  border-color: var(--border-strong);
}
.service-card-featured::before {
  opacity: 0.6;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.service-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* =========================================================
   About
   ========================================================= */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.015) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto;
  gap: 64px 72px;
  align-items: start;
}

.about-text { grid-column: 1; grid-row: 1; }
.about-features { grid-column: 2; grid-row: 1; }
.about-image { grid-column: 1; grid-row: 2; }
.route-visual { grid-column: 2; grid-row: 2; align-self: stretch; }

.about-text .section-tag { margin-bottom: 18px; }
.about-text .section-title { text-align: left; }

.about-lead {
  font-size: 22px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 8px;
}
.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.65;
}
.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.about-image {
  margin-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 60%,
    rgba(15, 25, 34, 0.5) 100%);
  pointer-events: none;
}
.about-image:hover img {
  transform: scale(1.03);
}

/* Animated route card — transparent, atmospheric */
.route-visual {
  position: relative;
  padding: 24px 0 12px;
  /* No background, no border — blends with section */
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.route-visual::before {
  /* Soft atmospheric glow behind the map */
  content: '';
  position: absolute;
  inset: -20px -10px;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%,
      rgba(232, 184, 108, 0.05) 0%,
      transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 50%,
      rgba(255, 255, 255, 0.012) 0%,
      transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.route-visual-label {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 12px;
  padding-left: 4px;
  position: relative;
  z-index: 1;
}

.route-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(232, 184, 108, 0.08));
  position: relative;
  z-index: 1;
}
.austria-map-svg {
  max-width: 100%;
}

/* City labels on the Austria map */
.city-label {
  fill: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.city-label-hq {
  fill: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.route-line {
  stroke-dashoffset: 0;
  animation: dash 30s linear infinite;
}
/* Varied speeds for organic movement — keine zwei Linien synchron */
.route-line-1 { animation-duration: 28s; }
.route-line-2 { animation-duration: 32s; animation-direction: reverse; }
.route-line-3 { animation-duration: 30s; }
.route-line-4 { animation-duration: 34s; animation-direction: reverse; }
.route-line-5 { animation-duration: 36s; }
.route-line-6 { animation-duration: 24s; animation-direction: reverse; }
.route-line-7 { animation-duration: 26s; }
.route-line-8 { animation-duration: 38s; animation-direction: reverse; }

/* Pulsing rings on city nodes — gestaffelt */
.node circle:nth-child(2) {
  transform-origin: center;
  transform-box: fill-box;
  animation: ring 3s ease-out infinite;
}
.node-wien circle:nth-child(1),
.node-wien circle:nth-child(2) {
  transform-origin: center;
  transform-box: fill-box;
  animation: ring 3.5s ease-out infinite;
}
.node-wien circle:nth-child(1) { animation-delay: 0.5s; }
.node-linz circle:nth-child(2) { animation-delay: 0.4s; }
.node-salzburg circle:nth-child(2) { animation-delay: 0.9s; }
.node-innsbruck circle:nth-child(2) { animation-delay: 1.4s; }
.node-graz circle:nth-child(2) { animation-delay: 1.9s; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.feature:hover {
  background: var(--bg-card);
  border-color: var(--border);
}
.feature-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  font-feature-settings: "tnum";
}
.feature h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-card {
  background:
    radial-gradient(ellipse at top right, rgba(232, 184, 108, 0.08) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.contact-header .section-tag {
  margin-bottom: 18px;
}
.contact-lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ---- Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.req {
  color: var(--accent);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: rgba(15, 25, 34, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: all 0.2s ease;
  width: 100%;
  outline: none;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.5;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-soft);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239AAAB8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-field select option {
  background: var(--bg-elevated);
  color: var(--text);
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--border-strong);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(15, 25, 34, 0.85);
  box-shadow: 0 0 0 3px rgba(232, 184, 108, 0.12);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  /* keep neutral by default; only show errors when form was submitted */
}

/* Show validation styling after submit attempt */
.contact-form.submitted .form-field input:invalid,
.contact-form.submitted .form-field select:invalid,
.contact-form.submitted .form-field textarea:invalid {
  border-color: #d4715c;
}

/* ---- Custom checkbox ---- */
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: rgba(15, 25, 34, 0.6);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}
.form-checkbox input[type="checkbox"]:hover {
  border-color: var(--accent);
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #1A1206;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 184, 108, 0.2);
}
.form-checkbox label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.form-checkbox label a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.form-checkbox label a:hover {
  border-bottom-color: var(--accent);
}

/* Honeypot — hidden from users, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit {
  margin-top: 8px;
  align-self: flex-start;
  min-width: 220px;
  justify-content: center;
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.form-status {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: none;
  margin-top: 4px;
  line-height: 1.5;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(232, 184, 108, 0.08);
  border-color: rgba(232, 184, 108, 0.3);
  color: var(--accent-bright);
}
.form-status.error {
  background: rgba(212, 113, 92, 0.08);
  border-color: rgba(212, 113, 92, 0.3);
  color: #e89282;
}

/* ---- Contact info (right column) ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 8px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.contact-info-lead {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}
a.contact-info-item:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 17px;
  height: 17px;
}
.contact-label {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-value {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
  background: var(--bg-card);
}
.faq-item.open { border-color: var(--border-strong); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease;
}
.faq-q:hover { background: rgba(255, 255, 255, 0.02); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   Driver / Karriere
   ========================================================= */
.driver-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  background:
    radial-gradient(ellipse at bottom left, rgba(232, 184, 108, 0.06) 0%, transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.driver-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.4;
}
.driver-content .section-tag { margin-bottom: 18px; }
.driver-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.driver-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.driver-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.driver-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.driver-point svg { width: 16px; height: 16px; flex-shrink: 0; }
.driver-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.driver-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.driver-stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  background: rgba(0, 0, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-seo {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  max-width: 300px;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h5 {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-soft);
  flex-wrap: wrap;
}

/* =========================================================
   Impressum / Legal page
   ========================================================= */
.legal-page {
  padding: 160px 0 100px;
  min-height: 80vh;
}
.legal-page .container {
  max-width: 800px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.legal-page .section-tag {
  margin-bottom: 16px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page strong {
  color: var(--text);
}
.legal-page a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.legal-page a:hover {
  border-bottom-color: var(--accent);
}
.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 24px 0;
}
.legal-block p { margin-bottom: 6px; }
.legal-block p:last-child { margin-bottom: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 32px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--accent); }

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-dim); }
  50% { box-shadow: 0 0 0 6px rgba(232, 184, 108, 0.08); }
}
@keyframes dash {
  to { stroke-dashoffset: -1000; }
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Reveal-on-scroll (handled via JS adding .visible) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }
  .about-text,
  .about-features,
  .about-image,
  .route-visual {
    grid-column: 1;
    grid-row: auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    grid-template-columns: 1fr;
  }
  .showcase-image {
    min-height: 320px;
  }
  .showcase-content {
    padding: 48px 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    padding-left: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-image {
    background-position: center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 25, 34, 0.85) 0%,
        rgba(15, 25, 34, 0.7) 50%,
        rgba(15, 25, 34, 0.95) 100%);
  }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .hero { padding: 140px 0 80px; min-height: auto; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }

  .showcase { padding: 40px 0 20px; }
  .showcase-image { min-height: 260px; }
  .showcase-content { padding: 36px 28px; }

  .contact-card { padding: 40px 24px; }
  .contact-header { margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .form-submit { width: 100%; }

  .driver-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
  .driver-visual { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 28px; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .driver-stat { flex: 1; min-width: 80px; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
