/* ═══════════════════════════════════════════════
   VELTIN – Hauptstylesheet
   Design: Editorial × Brutalist × Modern Agricultural
   ═══════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────── */
:root {
  --c-forest:   #1a3528;      /* Tiefes Waldgrün – Hauptfarbe */
  --c-forest-2: #243f32;
  --c-forest-light: #2d5040;
  --c-sand:     #f5f0e8;      /* Warmer Sandton – Hintergrund */
  --c-sand-dark:#ede7d9;
  --c-orange:   #e8700a;      /* Leuchtendes Orange – CTA */
  --c-orange-h: #ff8c1a;      /* Hover-Ton */
  --c-cream:    #fffdf7;
  --c-dark:     #0f1f18;
  --c-text:     #1c2b22;
  --c-muted:    #6b7c73;
  --c-border:   rgba(26,53,40,0.12);
  --c-white:    #ffffff;

  --font-head:  'DM Sans', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     1.25rem;
  --radius-sm:  0.75rem;
  --shadow-soft: 0 8px 40px rgba(26,53,40,0.12);
  --shadow-deep: 0 20px 60px rgba(26,53,40,0.22);

  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-sand);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ─── Typography ────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--c-orange);
}
.section-label.light {
  color: var(--c-orange-h);
}
.section-label.light::before {
  background: var(--c-orange-h);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-forest);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: normal;
  color: var(--c-orange);
  position: relative;
  display: inline-block;
}

.section-title.centered { text-align: center; }

.section-desc {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--c-muted);
  max-width: 48ch;
  line-height: 1.75;
}
.section-desc.centered {
  text-align: center;
  margin-inline: auto;
  margin-top: 1rem;
}
.section-desc.light {
  color: rgba(245,240,232,0.72);
}

/* ─── Buttons ───────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--c-orange);
  color: var(--c-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--c-orange-h);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(232,112,10,0.38);
  outline: none;
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-sand);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid rgba(245,240,232,0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--c-sand);
  background: rgba(245,240,232,0.1);
  outline: none;
}


/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
#main-nav.scrolled {
  background: rgba(26,53,40,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem var(--gutter);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 4.8rem;
  width: auto;
  display: block;
}

.nav-slogan {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--c-white);
  background: rgba(255,255,255,0.1);
  outline: none;
}
.nav-links .nav-cta {
  background: var(--c-orange);
  color: var(--c-white) !important;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--c-orange-h);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,53,40,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  padding: 6rem var(--gutter) 2rem;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover {
  color: var(--c-orange);
  padding-left: 0.75rem;
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: var(--gutter);
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
.mobile-close:hover {
  color: var(--c-orange);
}

@media (max-width: 768px) {
  .nav-slogan {
    display: none;
  }
}


/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 16, 0.78) 0%,
    rgba(15, 30, 22, 0.55) 50%,
    rgba(10, 22, 16, 0.35) 100%
  );
  z-index: 1;
}

/* Film grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 9rem var(--gutter) 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,112,10,0.18);
  border: 1px solid rgba(232,112,10,0.45);
  color: var(--c-orange-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--c-orange);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,240,232,0.78);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--gutter) 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat-item strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(245,240,232,0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
.scroll-line {
  display: block;
  width: 1.5px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  border-radius: 2px;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}


/* ═══════════════════════════════════════════════
   INTRO BAND (Marquee)
═══════════════════════════════════════════════ */
.intro-band {
  background: var(--c-forest);
  color: rgba(245,240,232,0.6);
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.band-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 22s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.band-track .dot {
  color: var(--c-orange);
  font-size: 0.5rem;
  opacity: 0.8;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   FUHRPARK SECTION (Bento Grid)
═══════════════════════════════════════════════ */
.section-fuhrpark {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-sand);
}

.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
@media (max-width: 768px) {
  .section-header-split {
    grid-template-columns: 1fr;
  }
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-dark);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bento-card:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-4px);
}
.bento-card:focus-within {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
}

.bento-large  { grid-column: 1 / 8; grid-row: 1; min-height: 460px; }
.bento-medium { grid-column: 8 / 13; grid-row: 1; min-height: 460px; }
.bento-medium-alt { grid-column: 1 / 7; grid-row: 2; min-height: 340px; }
.bento-feature { grid-row: 2; border-radius: var(--radius); }
.bento-feature-price { grid-column: 7 / 10; }
.bento-feature-avail { grid-column: 10 / 13; }

.bento-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}
.bento-card:hover .bento-img-wrap img {
  transform: scale(1.08);
}

.bento-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Overlay with details – visible on hover */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,53,40,0) 40%,
    rgba(26,53,40,0.97) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.bento-card:hover .bento-overlay {
  opacity: 1;
}
.bento-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.bento-details li {
  color: rgba(245,240,232,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bento-details li i {
  color: var(--c-orange);
  font-size: 0.8rem;
  width: 1rem;
  flex-shrink: 0;
}

.bento-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    0deg,
    rgba(10,22,16,0.9) 0%,
    rgba(10,22,16,0.5) 60%,
    transparent 100%
  );
  z-index: 3;
  transition: opacity 0.3s ease;
}
.bento-card:hover .bento-info {
  opacity: 0;
}

.bento-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,112,10,0.2);
  border: 1px solid rgba(232,112,10,0.4);
  color: var(--c-orange-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}
.bento-info h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 0.3rem;
}
.bento-info p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0.75rem;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.bento-link:hover { gap: 0.7rem; }

/* Feature boxes */
.bento-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  min-height: 200px;
}
.bento-feature-price {
  background: var(--c-orange);
  color: var(--c-white);
}
.bento-feature-price .feature-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bento-feature-price strong {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  display: block;
}
.bento-feature-price .feature-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

.bento-feature-avail {
  background: var(--c-forest);
  color: var(--c-sand);
}
.bento-feature-avail i {
  color: var(--c-orange);
  margin-bottom: 0.6rem;
}
.bento-feature-avail strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}
.bento-feature-avail span {
  font-size: 0.88rem;
  opacity: 0.7;
}


/* ═══════════════════════════════════════════════
   WERTE SECTION
═══════════════════════════════════════════════ */
.section-werte {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-forest);
}
.section-werte .section-label { color: var(--c-orange-h); }
.section-werte .section-label::before { background: var(--c-orange-h); }
.section-werte .section-title { color: var(--c-sand); }
.section-werte .section-title em { color: var(--c-orange); }
.section-werte .section-desc { color: rgba(245,240,232,0.65); }

.werte-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-top: clamp(3.5rem, 6vw, 5rem);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.wert-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}
.wert-card:nth-child(3) {
  background: rgba(255,255,255,0.04);
}

.wert-icon-wrap {
  margin-bottom: 1.5rem;
}
.wert-icon {
  width: 4rem;
  height: 4rem;
  color: var(--c-orange);
}

.wert-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(245,240,232,0.04);
  line-height: 1;
  user-select: none;
}

.wert-card h3 {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--c-sand);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.wert-card p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.wert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wert-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.82);
  font-weight: 500;
}
.wert-list li i {
  color: var(--c-orange);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.wert-divider {
  width: 1px;
  background: rgba(245,240,232,0.1);
  margin: 2rem 0;
}


/* ═══════════════════════════════════════════════
   EINSATZGEBIETE SECTION
═══════════════════════════════════════════════ */
.section-einsatz {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-sand);
  overflow: hidden;
}

.einsatz-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
@media (max-width: 768px) {
  .einsatz-header { grid-template-columns: 1fr; }
}

.einsatz-tiles-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-forest) transparent;
}
.einsatz-tiles-wrap::-webkit-scrollbar { height: 4px; }
.einsatz-tiles-wrap::-webkit-scrollbar-track { background: transparent; }
.einsatz-tiles-wrap::-webkit-scrollbar-thumb { background: var(--c-forest); border-radius: 2px; }

.einsatz-tiles {
  display: flex;
  gap: 1.25rem;
  padding: 1rem var(--gutter) 0.5rem;
  min-width: max-content;
}

.einsatz-tile {
  flex: 0 0 280px;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.einsatz-tile:hover {
  box-shadow: var(--shadow-deep);
  transform: translateY(-6px);
  border-color: var(--c-orange);
}

.tile-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(232,112,10,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--c-orange);
  transition: background 0.3s, transform 0.3s;
}
.einsatz-tile:hover .tile-icon {
  background: var(--c-orange);
  color: var(--c-white);
  transform: rotate(-5deg) scale(1.1);
}

.einsatz-tile h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-forest);
  margin-bottom: 0.6rem;
}
.einsatz-tile p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.tile-tag {
  display: inline-block;
  background: rgba(26,53,40,0.08);
  color: var(--c-forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

/* Big Quote */
.einsatz-quote-wrap {
  margin-top: clamp(4rem, 7vw, 6rem);
}
.big-quote {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--c-forest);
  border-radius: var(--radius);
  overflow: hidden;
}
.big-quote::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(232,112,10,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.quote-mark {
  display: block;
  font-family: var(--font-head);
  font-size: 8rem;
  line-height: 0.8;
  color: var(--c-orange);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  user-select: none;
}
.big-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--c-sand);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.big-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.06em;
}


/* ═══════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════ */
.section-process {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-sand-dark);
}
.section-process .section-title { color: var(--c-forest); }
.section-process .section-desc { color: var(--c-muted); }

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  position: relative;
}

.process-step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  position: relative;
  transition: background var(--transition);
}
.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.process-step:hover { background: var(--c-cream); }

.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(26,53,40,0.08);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.25rem;
  user-select: none;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-forest);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
}
.step-arrow {
  position: absolute;
  right: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  background: var(--c-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(232,112,10,0.4);
}


/* ═══════════════════════════════════════════════
   KONTAKT / CTA SECTION
═══════════════════════════════════════════════ */
.section-kontakt {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}

.kontakt-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.kontakt-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(26,53,40,0.7);
  top: -150px; left: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(232,112,10,0.12);
  bottom: -100px; right: -80px;
}

.kontakt-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .kontakt-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.section-kontakt .section-title {
  color: var(--c-sand);
  margin-bottom: 1rem;
}
.section-kontakt .section-title em { color: var(--c-orange); }

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.kontakt-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(245,240,232,0.82);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.kontakt-link:hover { color: var(--c-sand); }
.kontakt-link-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(245,240,232,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange);
  flex-shrink: 0;
  transition: background 0.2s;
}
.kontakt-link:hover .kontakt-link-icon {
  background: rgba(232,112,10,0.2);
}
.kontakt-link span {
  display: block;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.kontakt-link strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-sand);
}

/* Contact Form */
.contact-form {
  background: var(--c-forest-2);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid rgba(245,240,232,0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10,22,16,0.6);
  border: 1.5px solid rgba(245,240,232,0.12);
  border-radius: var(--radius-sm);
  color: var(--c-sand);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-orange);
  background: rgba(10,22,16,0.8);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e85555;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  background-image: none;
}
.form-group select option {
  background: var(--c-forest);
  color: var(--c-sand);
}

.select-wrap {
  position: relative;
}
.select-wrap i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245,240,232,0.4);
  font-size: 0.8rem;
  pointer-events: none;
}

.form-footer {
  margin-top: 1.5rem;
}
.form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(26,53,40,0.8);
  border: 1px solid rgba(232,112,10,0.4);
  color: var(--c-sand);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-success i {
  color: var(--c-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.form-success[hidden] { display: none !important; }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#site-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(245,240,232,0.07);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem 2rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}

.footer-brand .logo-img {
  height: 5rem;
}
.footer-brand p {
  color: rgba(245,240,232,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 28ch;
}

.footer-nav-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav-col a {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--c-orange); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.06);
  padding: 1.25rem var(--gutter);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
}
.footer-made { color: rgba(232,112,10,0.6) !important; }


/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }


/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento-large  { grid-column: 1 / 7; }
  .bento-medium { grid-column: 7 / 13; }
  .bento-medium-alt { grid-column: 1 / 7; }
  .bento-feature-price { grid-column: 7 / 10; }
  .bento-feature-avail { grid-column: 10 / 13; }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large,
  .bento-medium,
  .bento-medium-alt,
  .bento-feature-price,
  .bento-feature-avail {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
  }
  .bento-feature { min-height: 160px; }

  .werte-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 1px;
  }
  .wert-divider { display: none; }
  .wert-card {
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: var(--radius-sm);
  }

  .process-steps {
    flex-direction: column;
    gap: 1px;
  }
  .process-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .process-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-content { padding-top: 7rem; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2.5px solid var(--c-orange);
  outline-offset: 3px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-sand-dark); }
::-webkit-scrollbar-thumb { background: var(--c-forest); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-orange); }

/* ═══════════════════════════════════════════════
   SELECTION STYLE
═══════════════════════════════════════════════ */
::selection {
  background: rgba(232,112,10,0.25);
  color: var(--c-forest);
}

/* ═══════════════════════════════════════════════
   DECORATIVE ELEMENTS
═══════════════════════════════════════════════ */

/* Subtle corner accent on section labels */
.section-werte .section-label,
.section-fuhrpark .section-label,
.section-einsatz .section-label,
.section-process .section-label {
  position: relative;
}

/* Orange line accent under hero headline */
.hero-headline::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3.5px;
  background: var(--c-orange);
  border-radius: 2px;
  margin-top: 1rem;
  opacity: 0.85;
}

/* Hover line on nav links */
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--c-orange);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════
   SECTION TRANSITIONS (Diagonal / Wave)
═══════════════════════════════════════════════ */

/* Diagonal clip between fuhrpark and werte sections */
.section-fuhrpark {
  position: relative;
}
.section-fuhrpark::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-forest);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.section-werte::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--c-sand);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
.section-werte {
  position: relative;
}

/* ═══════════════════════════════════════════════
   ADDITIONAL HOVER IMPROVEMENTS
═══════════════════════════════════════════════ */

/* Process step hover: orange accent */
.process-step:hover .step-content h3 {
  color: var(--c-orange);
}
.process-step {
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover {
  border-color: rgba(232,112,10,0.25);
}

/* Einsatz tile: slide-in icon */
.tile-icon {
  will-change: transform, background, color;
}

/* Footer link hover: slide left effect */
.footer-nav-col a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s, gap 0.2s;
}
.footer-nav-col a:hover {
  gap: 0.35rem;
  color: var(--c-orange);
}
.footer-nav-col a::before {
  content: '→';
  font-size: 0.7em;
  opacity: 0;
  transform: translateX(-0.4rem);
  transition: opacity 0.2s, transform 0.2s;
  color: var(--c-orange);
  flex-shrink: 0;
}
.footer-nav-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   LOADING STATE: Skeleton pulse (for slow images)
═══════════════════════════════════════════════ */
.bento-img-wrap {
  background: var(--c-forest-2);
  position: relative;
}
.bento-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: skeleton-shimmer 1.8s infinite;
  z-index: 1;
}
@keyframes skeleton-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.bento-img-wrap img {
  position: relative;
  z-index: 2;
}
