/* ════════════════════════════════════════════
   AGRARSERVICE WIDMANN – Hauptstylesheet
   ════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --green-900: #0f2e14;
  --green-800: #1a4520;
  --green-700: #1e5c2e;
  --green-600: #2a7a3e;
  --green-500: #3a9650;
  --green-100: #e8f5ec;
  --green-50:  #f3faf5;

  --gold-600:  #b88b0a;
  --gold-500:  #d4a017;
  --gold-400:  #e8b82a;
  --gold-100:  #fdf6e0;

  --neutral-900: #111816;
  --neutral-800: #1c2620;
  --neutral-700: #2d3c33;
  --neutral-500: #556b5c;
  --neutral-400: #7a9485;
  --neutral-200: #d4e0d8;
  --neutral-100: #eef4f0;
  --neutral-50:  #f7faf8;
  --white:       #ffffff;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --max-w: 1200px;
  --nav-h: 72px;

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -.02em; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-family: var(--font-serif); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { color: var(--neutral-600, #475c50); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,92,46,.25);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,92,46,.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; color: var(--neutral-900); }
.section-sub { font-size: 1.05rem; color: var(--neutral-500); }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -.01em;
}
.logo-text span {
  font-size: .78rem;
  color: var(--neutral-500);
  font-weight: 500;
  letter-spacing: .02em;
}

.site-header:not(.scrolled) .logo-text strong { color: var(--white); }
.site-header:not(.scrolled) .logo-text span { color: rgba(255,255,255,.65); }

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.site-header.scrolled .main-nav a { color: var(--neutral-700); }
.site-header.scrolled .main-nav a:not(.nav-cta):hover {
  background: var(--green-50);
  color: var(--green-700);
}
.site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled) .main-nav a:not(.nav-cta):hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.nav-cta {
  background: var(--green-700) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  box-shadow: 0 4px 14px rgba(30,92,46,.3);
}
.nav-cta:hover {
  background: var(--green-600) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,92,46,.4) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--neutral-800); }

.nav-toggle:hover { background: rgba(255,255,255,.1); }
.site-header.scrolled .nav-toggle:hover { background: var(--neutral-100); }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px 0 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 0 16px;
  }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block;
    padding: 13px 16px;
    color: var(--neutral-800) !important;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  .main-nav a:not(.nav-cta):hover {
    background: var(--green-50) !important;
    color: var(--green-700) !important;
  }
  .nav-cta {
    margin-top: 8px;
    border-radius: var(--radius-sm) !important;
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--green-900);
}

/* ── Video Background ── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  /* Subtle slow-zoom on load */
  animation: heroZoom 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Nacht-Dramatik: tiefdunkle Vignette + grüner Colour-Cast */
  background:
    linear-gradient(
      to bottom,
      rgba(5, 15, 8, .72) 0%,
      rgba(10, 28, 14, .55) 40%,
      rgba(5, 15, 8, .80) 100%
    ),
    radial-gradient(
      ellipse 120% 80% at 50% 50%,
      transparent 30%,
      rgba(0, 0, 0, .55) 100%
    );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(212,160,23,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(30,92,46,.10) 0%, transparent 45%);
  z-index: 2;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding-top: 48px;
  padding-bottom: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
}
.hero-title .highlight {
  color: var(--gold-400);
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
}
.stat span { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,.9); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════
   VERTRAUEN
   ════════════════════════════════════════════ */
.vertrauen {
  background: var(--white);
  padding: 0;
  margin-top: -1px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 36px 32px;
  border-right: 1px solid var(--neutral-100);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--green-50); }

.trust-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 6px;
}
.trust-item p { font-size: .875rem; color: var(--neutral-500); line-height: 1.55; }

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--neutral-100); }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--neutral-100); }
  .trust-item:last-child { border-bottom: none; }
  .trust-item:nth-child(2) { border-right: none; }
}

/* ════════════════════════════════════════════
   LEISTUNGEN
   ════════════════════════════════════════════ */
.leistungen { background: var(--neutral-50); }

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

.leistung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}

.leistung-card h3 { margin-bottom: 12px; color: var(--neutral-900); }
.leistung-card p { font-size: .92rem; color: var(--neutral-500); margin-bottom: 20px; }

.card-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-list li {
  font-size: .85rem;
  color: var(--neutral-600, #475c50);
  padding-left: 18px;
  position: relative;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

.leistung-card--cta {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leistung-card--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30,92,46,.35);
}
.card-cta-content { text-align: center; }
.leistung-card--cta h3 { color: var(--white); margin-bottom: 12px; }
.leistung-card--cta p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 28px; }
.leistung-card--cta .btn-primary {
  background: var(--white);
  color: var(--green-700);
  box-shadow: none;
}
.leistung-card--cta .btn-primary:hover { background: var(--gold-100); }

@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung-card { padding: 28px 24px; }
}

/* ════════════════════════════════════════════
   ÜBER UNS
   ════════════════════════════════════════════ */
.ueber-uns { background: var(--white); }

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber-img-frame { position: relative; }

.ueber-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.ueber-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--green-50);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--green-200, #b5d9be);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-400, #5ab36e);
}
.ueber-img-placeholder span { font-size: .85rem; font-weight: 500; }

.ueber-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.ueber-badge-float strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.ueber-badge-float span { font-size: .78rem; color: rgba(255,255,255,.75); }

.ueber-text .section-label { margin-bottom: 12px; }
.ueber-text h2 { margin-bottom: 20px; color: var(--neutral-900); }

.lead-text {
  font-size: 1.08rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: 450;
}

.ueber-text > p { font-size: .95rem; margin-bottom: 32px; }

.ueber-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.fact {
  flex: 1;
  min-width: 140px;
  padding: 16px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
}
.fact strong { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green-700); margin-bottom: 4px; }
.fact span { font-size: .88rem; color: var(--neutral-700); font-weight: 500; }

@media (max-width: 900px) {
  .ueber-grid { grid-template-columns: 1fr; gap: 48px; }
  .ueber-badge-float { bottom: -16px; right: 16px; }
}

/* ════════════════════════════════════════════
   VORTEILE
   ════════════════════════════════════════════ */
.vorteile {
  background: var(--neutral-900);
  position: relative;
  overflow: hidden;
}

.vorteile::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,92,46,.2) 0%, transparent 70%);
  pointer-events: none;
}

.vorteile .section-label {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--gold-400);
}
.vorteile h2 { color: var(--white); }
.vorteile .section-sub { color: rgba(255,255,255,.55); }

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.vorteil {
  background: rgba(255,255,255,.03);
  padding: 40px 36px;
  transition: background var(--transition);
}
.vorteil:hover { background: rgba(255,255,255,.07); }

.vorteil-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.vorteil h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.vorteil p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; }

@media (max-width: 900px) {
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vorteile-grid { grid-template-columns: 1fr; }
  .vorteil { padding: 28px 24px; }
}

/* ════════════════════════════════════════════
   ABLAUF
   ════════════════════════════════════════════ */
.ablauf { background: var(--white); }

.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(30,92,46,.3);
  position: relative;
  z-index: 1;
}

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--green-200, #b5d9be), var(--neutral-200));
  margin-left: 16px;
}
.step:last-child .step-line { display: none; }

.step-content {
  padding-right: 32px;
}
.step-content h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--neutral-900); }
.step-content p { font-size: .88rem; color: var(--neutral-500); line-height: 1.65; }

@media (max-width: 900px) {
  .ablauf-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step { flex-direction: row; gap: 24px; margin-bottom: 32px; }
  .step:last-child { margin-bottom: 0; }
  .step-indicator {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .step-line {
    width: 2px;
    height: 100%;
    min-height: 40px;
    background: linear-gradient(to bottom, var(--green-200, #b5d9be), var(--neutral-200));
    margin-left: 0;
    margin-top: 8px;
    flex: 1;
  }
  .step-content { padding-right: 0; padding-top: 8px; }
}

/* ════════════════════════════════════════════
   STANDORT
   ════════════════════════════════════════════ */
.standort { background: var(--neutral-50); }

.standort-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.standort-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  margin-bottom: 20px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--green-100);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--green-200, #b5d9be);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-500);
  margin-bottom: 20px;
}
.map-placeholder span { font-size: .85rem; font-weight: 500; }

.map-btn { width: 100%; justify-content: center; }

.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}
.info-card h3 { margin-bottom: 24px; color: var(--neutral-900); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail svg { color: var(--green-600); flex-shrink: 0; margin-top: 1px; }
.contact-detail span,
.contact-detail a {
  font-size: .92rem;
  color: var(--neutral-700);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--green-700); text-decoration: underline; }

@media (max-width: 900px) {
  .standort-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════ */
.kontakt { background: var(--white); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.kontakt-info h3 { color: var(--neutral-900); margin-bottom: 12px; }
.kontakt-info p { font-size: .92rem; color: var(--neutral-500); margin-bottom: 28px; }

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--green-50);
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-700);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.contact-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateX(4px);
}
.contact-btn svg { flex-shrink: 0; }

/* Form */
.kontakt-form {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--neutral-800);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(30,92,46,.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23556b5c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--neutral-600, #475c50);
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--green-700);
}
.form-checkbox a { color: var(--green-700); text-decoration: underline; }

.form-status {
  padding: 0;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}
.form-status.success {
  background: #d4edda;
  color: #155724;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  background: #f8d7da;
  color: #721c24;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid #f5c6cb;
}

.form-note {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--neutral-400);
  text-align: center;
}

@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.logo-footer .logo-text strong { color: var(--white); }
.logo-footer .logo-text span { color: rgba(255,255,255,.4); }

.footer-tagline {
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

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

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copy { font-size: .85rem; color: rgba(255,255,255,.35); }

.wowobot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.wowobot-badge:hover { color: rgba(255,255,255,.6); }
.wowobot-name {
  color: #22b8e0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .wowobot-badge { justify-content: center; }
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .badge-dot { animation: none; }
  .hero-scroll { animation: none; }
}

/* ════════════════════════════════════════════
   SUBPAGES (Impressum / Datenschutz)
   ════════════════════════════════════════════ */
.subpage-header {
  background: var(--green-900);
  padding: calc(var(--nav-h) + 48px) 0 64px;
  color: var(--white);
}
.subpage-header h1 { color: var(--white); font-family: var(--font-sans); font-size: 2rem; }

.subpage-content {
  padding: 80px 0;
  max-width: 760px;
}

.subpage-content h2 { font-size: 1.3rem; margin: 40px 0 12px; color: var(--neutral-900); }
.subpage-content p { margin-bottom: 16px; font-size: .95rem; }
.subpage-content .placeholder {
  display: inline-block;
  background: #fff3cd;
  border: 1.5px dashed #ffc107;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .85rem;
  color: #856404;
  font-weight: 600;
}
