/* ============================================================
   EA Energieberatung — Professionelles Design-System
   Schriften: Outfit (Überschriften) + Inter (Fließtext)
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Farben */
  --bg:          #07100A;
  --bg-alt:      #0C1610;
  --bg-card:     rgba(255,255,255,0.03);
  --bg-card-h:   rgba(34,197,94,0.05);

  --green:       #22C55E;
  --green-lt:    #4ADE80;
  --green-dk:    #16A34A;
  --green-glow:  rgba(34,197,94,0.18);
  --green-dim:   rgba(34,197,94,0.07);

  --gold:        #F59E0B;
  --gold-dim:    rgba(245,158,11,0.10);

  --text:        #ECFDF5;
  --text-2:      #A7F3D0;
  --text-3:      rgba(167,243,208,0.45);

  --border:      rgba(34,197,94,0.08);
  --border-2:    rgba(34,197,94,0.20);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Spacing / Layout */
  --topbar-h: 38px;
  --nav-h:    68px;
  --max-w:    1240px;
  --px:       clamp(1.25rem, 4vw, 2.5rem);
  --section:  clamp(3.5rem, 7vw, 6rem);

  /* Animation */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tr:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a     { color: inherit; text-decoration: none; }
img   { display: block; max-width: 100%; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.125rem, 5vw, 4rem);   font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.0625rem, 1.8vw, 1.375rem); }
h4 { font-size: 1rem; }
p  { line-height: 1.72; color: var(--text-2); font-size: 0.9375rem; }

/* Section label */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.875rem;
}
.label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
section          { padding: var(--section) 0; }
.section-alt     { background: var(--bg-alt); }

/* ── Scroll reveal ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

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

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: var(--tr);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--green);
  color: #031A09;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  box-shadow: 0 4px 18px rgba(34,197,94,0.28);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-lt);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(34,197,94,0.07);
  color: var(--green-lt);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(34,197,94,0.12);
  border-color: var(--border-2);
}

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  height: var(--topbar-h);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-3);
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.topbar-contact a:hover { color: var(--green-lt); }
.topbar-contact svg { width: 12px; height: 12px; }
.topbar-cert {
  font-size: 0.75rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-cert span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7,16,10,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

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

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-hex { flex-shrink: 0; }
.logo-text .brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
  display: block;
  line-height: 1.1;
}
.logo-text .brand-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover        { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--green-lt); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.28s, width 0.28s;
}
.nav-toggle span:last-child { width: 65%; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: calc(var(--topbar-h) + var(--nav-h)) 0 0;
  background: rgba(7,16,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a:not(.btn) {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-2);
  transition: color 0.2s;
}
.mobile-menu a:not(.btn):hover { color: var(--green-lt); }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  padding: 3.5rem 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .label { margin-bottom: 0.625rem; }
.page-hero h1 { font-size: clamp(1.875rem, 4vw, 3rem); margin-bottom: 0.625rem; }
.page-hero p  { max-width: 520px; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-lt); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.4; }

/* ════════════════════════════════════════
   HOMEPAGE HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg,
      rgba(7,16,10,0.96) 0%,
      rgba(7,16,10,0.80) 55%,
      rgba(7,16,10,0.55) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 0% 50%, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 3rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(34,197,94,0.07);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xs);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-lt);
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}
.hero h1 { margin-bottom: 1.375rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero > .container > .hero-content > p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; align-items: center; gap: 0.875rem; flex-wrap: wrap; }
.hero-note {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-note-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.hero-note-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.stats { padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  text-align: center;
  padding: 1.25rem;
  position: relative;
}
.stat-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.stat-lbl { font-size: 0.8125rem; color: var(--text-3); font-weight: 500; }

/* ════════════════════════════════════════
   SERVICE CARDS (shared)
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.625rem;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34,197,94,0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34,197,94,0.08), 0 8px 24px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.svc-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 1.125rem;
  transition: background 0.25s, color 0.25s;
  border: 1px solid var(--border);
}
.svc-icon svg { width: 20px; height: 20px; }
.service-card:hover .svc-icon { background: rgba(34,197,94,0.12); color: var(--green-lt); }

.svc-cat {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: block;
  margin-bottom: 0.25rem;
}
.svc-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.svc-desc {
  font-size: 0.8375rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: block;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: var(--r-xs);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
}
.price-tag.fixed   { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(245,158,11,0.15); }
.price-tag.anfrage { background: var(--green-dim); color: var(--green-lt); border: 1px solid var(--border); }

/* ════════════════════════════════════════
   WARUM (WHY EA) — With image
════════════════════════════════════════ */
.warum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.warum-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.warum-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.warum-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,16,10,0.7) 100%);
}
.warum-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  background: rgba(7,16,10,0.85);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 1rem 1.375rem;
  backdrop-filter: blur(12px);
}
.warum-img-badge .big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
}
.warum-img-badge .big-lbl {
  font-size: 0.8125rem;
  color: var(--text-2);
  display: block;
  margin-top: 3px;
}
.warum-content .label { margin-bottom: 0.75rem; }
.warum-content h2 { margin-bottom: 1rem; }
.warum-content > p { margin-bottom: 2rem; }

.feat-list { display: grid; gap: 1.25rem; }
.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s, background 0.25s;
}
.feat-item:hover { border-color: var(--border-2); background: var(--bg-card-h); }
.feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.feat-icon svg { width: 18px; height: 18px; }
.feat-body h4  { margin-bottom: 0.2rem; font-size: 0.9375rem; }
.feat-body p   { font-size: 0.85rem; }

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(34,197,94,0.15) 100%);
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--green);
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.process-step:hover .step-num {
  background: var(--green);
  color: #031A09;
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}
.process-step h4 { font-size: 0.9375rem; margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.8375rem; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-wrap {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-2); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--green-lt); }
.faq-chevron {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.faq-chevron svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-chevron { background: var(--green); color: #031A09; border-color: var(--green); }
.faq-item.open .faq-chevron svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-body { max-height: 300px; }
.faq-body-inner {
  padding: 0 1.375rem 1.375rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(34,197,94,0.07) 0%, transparent 100%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p  { max-width: 480px; margin-inline: auto; margin-bottom: 2.25rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 0.875rem; flex-wrap: wrap; }

/* ════════════════════════════════════════
   KONTAKT PAGE
════════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: start;
}
.form-head h2 { font-size: clamp(1.375rem, 2.5vw, 2rem); margin-bottom: 0.375rem; }
.form-head p  { margin-bottom: 2rem; }
.form-row2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.8125rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A7F3D0' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: #0C1610; color: var(--text); }
.form-submit { width: 100%; justify-content: center; border-radius: var(--r-sm); padding: 0.9375rem 1rem; font-size: 0.9375rem; }
.form-success { display: none; text-align: center; padding: 3.5rem 2rem; }
.form-success.active { display: block; }
.form-success .check-icon {
  width: 60px; height: 60px;
  background: var(--green-dim);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green);
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.9375rem; }

.contact-info-head h3 { margin-bottom: 0.5rem; }
.contact-info-head p  { margin-bottom: 1.75rem; }
.contact-cards { display: grid; gap: 0.875rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s, transform 0.25s var(--ease);
  text-decoration: none;
}
.contact-card:hover { border-color: var(--border-2); transform: translateX(3px); }
.cc-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.25s;
}
.contact-card:hover .cc-icon { background: rgba(34,197,94,0.12); }
.cc-icon svg { width: 18px; height: 18px; }
.cc-lbl  { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; font-family: 'Outfit', sans-serif; display: block; margin-bottom: 2px; }
.cc-val  { font-size: 0.9rem; font-weight: 600; color: var(--text); display: block; }

/* ════════════════════════════════════════
   STATIC TEXT PAGES (Impressum / Datenschutz)
════════════════════════════════════════ */
.text-page {
  max-width: 800px;
  padding-top: 1rem;
}
.text-page h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.text-page h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.text-page p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.text-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.text-page ul li {
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: 0.375rem;
}
.text-page a {
  color: var(--green-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-page a:hover { color: var(--green); }
.text-page .info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.text-page .info-box p { margin-bottom: 0.25rem; }
.text-page .info-box p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.footer-contact-list { display: grid; gap: 0.625rem; }
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--green-lt); }
.footer-contact-list svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.625rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-2); }

.footer-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--green-dim);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}
.cert-badge svg { width: 11px; height: 11px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.8125rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: var(--text-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--green-lt); }

/* ════════════════════════════════════════
   LEISTUNGEN PAGE (categories)
════════════════════════════════════════ */
.category-section { margin-bottom: 3.5rem; }
.category-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cat-icon {
  width: 38px; height: 38px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.cat-icon svg { width: 18px; height: 18px; }
.category-header h3 { font-size: 1.125rem; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .warum-grid { grid-template-columns: 1fr; gap: 3rem; }
  .warum-img-wrap { max-height: 420px; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid  { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .topbar-cert { display: none; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2)::after { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row2 { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-note { flex-direction: column; gap: 0.625rem; }
  .cta-btns  { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:last-child::after { display: none; }
}
