/* =========================================================
   Grüntenwerk IT – Stylesheet
   Konzept: Allgäuer Bergpanorama + Circuit-Topografie
   Dunkler Hero, helle Content-Sections, durchgehende
   Tech/Natur-Symbolik. Navy/Grün-CI.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* Brand */
  --gw-navy:        #001a44;
  --gw-navy-deep:   #050d1f;
  --gw-navy-mid:    #0a1a3a;
  --gw-navy-soft:   #1a2f5f;
  --gw-green:       #68a82d;
  --gw-green-dark:  #4f8f1f;
  --gw-green-glow:  #8bcf48;
  --gw-cyan-glow:   #4dd0ff;

  /* Light surface */
  --gw-bg:          #f7faf5;
  --gw-bg-2:        #eef3ea;
  --gw-card:        #ffffff;
  --gw-text:        #0f1a30;
  --gw-text-soft:   #475573;
  --gw-muted:       #6b7891;
  --gw-border:      rgba(0, 26, 68, 0.10);
  --gw-border-soft: rgba(0, 26, 68, 0.06);

  /* Effects */
  --gw-shadow-sm:   0 2px 8px rgba(0, 26, 68, 0.04);
  --gw-shadow:      0 18px 50px -12px rgba(0, 26, 68, 0.14);
  --gw-shadow-lg:   0 40px 80px -20px rgba(0, 26, 68, 0.22);
  --gw-glow-green:  0 0 24px rgba(139, 207, 72, 0.55);
  --gw-glow-cyan:   0 0 24px rgba(77, 208, 255, 0.55);

  /* Radii */
  --r-sm:  14px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;

  /* Fonts */
  --f-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --f-body:    'Manrope', ui-sans-serif, system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--gw-text);
  background: var(--gw-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Anchor-Targets nicht hinter Sticky-Header verschwinden lassen */
section[id] { scroll-margin-top: 90px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-display);
  color: var(--gw-navy);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 700;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.0vw, 42px); }
h3 { font-size: 20px; letter-spacing: -0.018em; line-height: 1.25; }
h4 { font-size: 15px; letter-spacing: -0.01em; }
p  { margin: 0; }

::selection { background: rgba(104, 168, 45, 0.25); color: var(--gw-navy); }

.container { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }

/* =========================================================
   HEADER (sticky, glassmorphism über hellem BG)
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 250, 245, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--gw-border-soft);
}
.header-inner {
  height: 82px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img {
  height: 48px; width: auto; max-width: 230px; object-fit: contain;
  transition: transform 0.25s ease;
}
.logo:hover img { transform: scale(1.03); }
.nav {
  display: flex; align-items: center; gap: 30px;
  font-size: 14px; font-weight: 600;
  color: var(--gw-text-soft);
}
.nav a {
  position: relative;
  transition: color 0.2s ease;
}
.nav a::after {
  content: ""; position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gw-green), var(--gw-cyan-glow));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover { color: var(--gw-navy); }
.nav a:hover::after { transform: scaleX(1); }

.mobile-toggle {
  display: none; cursor: pointer;
  border: 1px solid var(--gw-border);
  background: #fff; border-radius: 12px;
  padding: 10px 12px;
  color: var(--gw-navy); font-size: 18px;
}
.mobile-nav { display: none; border-top: 1px solid var(--gw-border-soft); padding: 14px 0 18px; }
.mobile-nav a { display: block; padding: 11px 4px; font-weight: 600; color: var(--gw-text-soft); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--f-body);
  font-weight: 700; font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gw-navy) 0%, var(--gw-navy-soft) 100%);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 26, 68, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(0, 26, 68, 0.55), 0 0 0 1px rgba(139, 207, 72, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-outline {
  background: #fff;
  border-color: rgba(0, 26, 68, 0.18);
  color: var(--gw-navy);
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--gw-green);
  color: var(--gw-green-dark);
  box-shadow: 0 12px 24px -8px rgba(104, 168, 45, 0.25);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(139, 207, 72, 0.5);
  transform: translateY(-2px);
}

/* =========================================================
   HERO – Bergpanorama + Circuit-Topografie
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    var(--gw-navy-deep) 0%,
    var(--gw-navy-mid) 45%,
    var(--gw-navy) 100%);
  color: #fff;
  padding: 48px 0 130px;
  isolation: isolate;
}

/* Atmosphäre — sanfter Glow-Gradient hinter allem */
.hero-atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 25%, rgba(77, 208, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 30% 75%, rgba(104, 168, 45, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Subtler Sterne-Layer */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.5) 50%, transparent),
    radial-gradient(1px 1px at 24% 6%, rgba(255,255,255,0.35) 50%, transparent),
    radial-gradient(1px 1px at 56% 18%, rgba(139, 207, 72, 0.6) 50%, transparent),
    radial-gradient(1px 1px at 78% 8%, rgba(255,255,255,0.55) 50%, transparent),
    radial-gradient(1px 1px at 88% 14%, rgba(77, 208, 255, 0.6) 50%, transparent),
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.28) 50%, transparent),
    radial-gradient(1px 1px at 42% 24%, rgba(255,255,255,0.35) 50%, transparent),
    radial-gradient(1px 1px at 92% 28%, rgba(255,255,255,0.4) 50%, transparent),
    radial-gradient(1px 1px at 6% 38%, rgba(255,255,255,0.25) 50%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Mountains: 4 SVG-Layer */
.hero-mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 65%;
  z-index: 1;
  pointer-events: none;
}
.hero-mountains svg {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 100%;
}
.hero-mountains .layer-back  { opacity: 0.55; }
.hero-mountains .layer-back2 { opacity: 0.75; }
.hero-mountains .layer-mid   { opacity: 0.88; }
.hero-mountains .layer-front { opacity: 1; }

/* Circuit overlay – professionelle Topografie */
.hero-circuit {
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
}
.hero-circuit svg { width: 100%; height: 100%; }

/* Unter Tablet-Breite staucht das Circuit zu steil → ausblenden */
@media (max-width: 760px) {
  .hero-circuit { display: none; }
}

.circuit-line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Animierter "Datenfluss" entlang der Hauptbahn */
@keyframes flow-pulse {
  0%   { stroke-dashoffset: 0;    opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { stroke-dashoffset: -400; opacity: 0; }
}
.circuit-flow {
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 392;
}
.circuit-flow-green {
  stroke: rgba(139, 207, 72, 0.9);
  filter: drop-shadow(0 0 4px rgba(139, 207, 72, 0.7));
  animation: flow-pulse 6s linear infinite;
}
.circuit-flow-cyan {
  stroke: rgba(77, 208, 255, 0.9);
  filter: drop-shadow(0 0 4px rgba(77, 208, 255, 0.7));
  animation: flow-pulse 7.5s linear infinite;
  animation-delay: 2s;
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}
.circuit-node-green {
  fill: var(--gw-green-glow);
  filter: drop-shadow(0 0 5px rgba(139, 207, 72, 0.9));
  animation: node-pulse 2.6s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.circuit-node-cyan {
  fill: var(--gw-cyan-glow);
  filter: drop-shadow(0 0 5px rgba(77, 208, 255, 0.9));
  animation: node-pulse 3.2s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

/* Fog layer am Horizont */
.hero-fog {
  position: absolute;
  left: 0; right: 0;
  bottom: 18%;
  height: 32%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(10, 26, 58, 0.4) 35%,
    rgba(10, 26, 58, 0.8) 75%,
    rgba(5, 13, 31, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-logo { margin-bottom: 24px; }
.hero-logo img {
  height: 76px; width: auto; max-width: min(380px, 100%);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gw-green-glow);
  box-shadow: 0 0 10px var(--gw-green-glow);
  animation: node-pulse 2s ease-in-out infinite;
}
.hero h1 {
  color: #fff;
  margin-top: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #c9d7ec 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 590px;
  margin: 26px 0 0;
}
.hero .actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
  max-width: 640px;
}
.stat {
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.stat strong {
  display: block;
  color: #fff;
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}
.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* Hero side panel */
.hero-panel {
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(60% 60% at 50% 40%,
    rgba(139, 207, 72, 0.18) 0%,
    rgba(77, 208, 255, 0.08) 40%,
    transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.panel {
  border-radius: var(--r-xl);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  overflow: hidden;
}
.panel-top {
  padding: 30px 30px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.panel-top::after {
  content: "";
  position: absolute;
  left: 30px; right: 30px; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(139, 207, 72, 0.5) 50%,
    transparent 100%);
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gw-green-glow);
  margin-bottom: 10px;
}
.panel-top h2 {
  color: #fff;
  font-size: 28px;
}
.panel-top p {
  color: rgba(255, 255, 255, 0.7);
  margin: 12px 0 0;
  font-size: 15px;
  max-width: 380px;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.mini-card {
  padding: 22px;
  background: rgba(10, 26, 58, 0.4);
  transition: background 0.25s ease;
}
.mini-card:hover {
  background: rgba(10, 26, 58, 0.7);
}
.mini-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(139, 207, 72, 0.2) 0%, rgba(77, 208, 255, 0.12) 100%);
  border: 1px solid rgba(139, 207, 72, 0.25);
  color: var(--gw-green-glow);
}
.mini-card strong {
  display: block;
  color: #fff;
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
}
.mini-card span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.5;
}

/* =========================================================
   STRIP (zwischen Hero und Leistungen)
   ========================================================= */
.strip {
  background: var(--gw-card);
  border-bottom: 1px solid var(--gw-border-soft);
  position: relative;
  z-index: 3;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
}
.check {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  color: var(--gw-text-soft);
  font-size: 15px;
}
.check::before {
  content: "✓";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gw-green-glow), var(--gw-green));
  box-shadow: 0 0 0 4px rgba(139, 207, 72, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  display: grid; place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--f-body);
}

/* =========================================================
   SECTION foundation
   ========================================================= */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head { max-width: 760px; }
.section-head p {
  font-size: 18px;
  color: var(--gw-text-soft);
  line-height: 1.7;
  margin-top: 18px;
}

.label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(104, 168, 45, 0.25);
  background: rgba(104, 168, 45, 0.08);
  color: var(--gw-green-dark);
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gw-green);
  box-shadow: 0 0 8px var(--gw-green);
}

/* Subtle circuit decoration für helle Sections */
.circuit-bg-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

/* =========================================================
   LEISTUNGEN (service cards)
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: var(--r-lg);
  background: var(--gw-card);
  border: 1px solid var(--gw-border);
  box-shadow: var(--gw-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 26px; left: 0;
  width: 3px; height: 30px;
  background: linear-gradient(180deg, var(--gw-green) 0%, var(--gw-cyan-glow) 100%);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 168, 45, 0.35);
  box-shadow: var(--gw-shadow);
}
.card:hover::before { opacity: 1; }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(104, 168, 45, 0.14) 0%, rgba(0, 26, 68, 0.05) 100%);
  border: 1px solid rgba(104, 168, 45, 0.2);
  color: var(--gw-green-dark);
  font-size: 20px;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p {
  color: var(--gw-text-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* Wide-Card als visueller Abschluss-Banner */
.card.card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 30px 32px;
  background: linear-gradient(135deg, #fff 0%, var(--gw-bg-2) 100%);
}
.card-wide .icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 52px; height: 52px;
}
.card-wide-body { flex: 1; }
.card-wide h3 { margin-bottom: 8px; }
.card-wide p { max-width: 760px; }

/* =========================================================
   DARK SECTION (Positionierung)
   ========================================================= */
.dark {
  background: linear-gradient(135deg, var(--gw-navy) 0%, var(--gw-navy-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 168, 45, 0.18) 0%, transparent 70%);
  filter: blur(40px);
}
.dark::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 208, 255, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}
.dark h2, .dark h3 { color: #fff; }
.dark p { color: rgba(255, 255, 255, 0.74); }
.dark .label {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--gw-green-glow);
}
.dark .label::before { background: var(--gw-green-glow); box-shadow: 0 0 8px var(--gw-green-glow); }

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.highlight {
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.highlight:hover {
  border-color: rgba(139, 207, 72, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.highlight .check { color: rgba(255, 255, 255, 0.92); }
.highlight .check::before {
  background:
    radial-gradient(circle at 30% 30%, var(--gw-green-glow), var(--gw-green-dark));
  box-shadow: 0 0 0 3px rgba(139, 207, 72, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 8px rgba(139, 207, 72, 0.4);
}

/* =========================================================
   ABLAUF (process)
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
.steps {
  display: grid;
  gap: 14px;
  position: relative;
}
/* Vertikale Verbindungslinie zwischen den Steps */
.steps::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(104, 168, 45, 0.25) 12%,
    rgba(104, 168, 45, 0.25) 88%,
    transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.step {
  display: flex;
  gap: 22px;
  padding: 22px 24px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--gw-border);
  position: relative;
  z-index: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.step:hover {
  transform: translateX(4px);
  border-color: rgba(104, 168, 45, 0.35);
  box-shadow: var(--gw-shadow);
}
.step-no {
  flex: 0 0 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gw-navy) 0%, var(--gw-navy-soft) 100%);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  position: relative;
  box-shadow: 0 8px 20px -6px rgba(0, 26, 68, 0.4);
}
.step-no::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 1px solid rgba(139, 207, 72, 0.4);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.step:hover .step-no::after { opacity: 1; }
.step h3 { margin-bottom: 6px; }
.step p {
  margin: 0;
  color: var(--gw-text-soft);
  font-size: 14.5px;
  line-height: 1.65;
}

/* =========================================================
   PACKAGES (Warum wir)
   ========================================================= */
.packages {
  background: linear-gradient(180deg, var(--gw-bg) 0%, var(--gw-bg-2) 100%);
  text-align: center;
}
.packages .section-head { margin-inline: auto; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
  text-align: left;
}
.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(104, 168, 45, 0.1);
  padding: 5px 12px;
  border: 1px solid rgba(104, 168, 45, 0.25);
  color: var(--gw-green-dark);
  font-family: var(--f-mono);
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

/* =========================================================
   CTA Section
   ========================================================= */
.cta {
  padding: 100px 0;
  background: var(--gw-bg);
}
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--gw-navy) 0%, var(--gw-navy-deep) 100%);
  color: #fff;
  padding: 58px;
  box-shadow: var(--gw-shadow-lg);
  isolation: isolate;
}
.cta-mountains {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.cta-mountains svg {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 100%;
}
.cta-box::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(104, 168, 45, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
}
.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 46px;
  align-items: end;
}
.cta-logo {
  display: inline-flex;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 18px;
  margin-bottom: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.cta-logo img { height: 64px; max-width: 320px; }
.cta h2 { color: #fff; }
.cta-box .lead { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin-top: 18px; }

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  padding: 26px;
  backdrop-filter: blur(10px);
}
.contact-row {
  display: flex; gap: 14px; margin-bottom: 18px;
  align-items: flex-start;
}
.contact-row:last-of-type { margin-bottom: 22px; }
.contact-row > .contact-icon {
  flex: 0 0 36px; height: 36px;
  border-radius: 10px;
  background: rgba(139, 207, 72, 0.15);
  border: 1px solid rgba(139, 207, 72, 0.3);
  display: grid; place-items: center;
  color: var(--gw-green-glow);
  font-size: 16px;
}
.contact-row strong {
  display: block;
  color: #fff;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
}
.contact-row span, .contact-row a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-top: 2px;
}
.contact-row a:hover { color: var(--gw-green-glow); }

/* =========================================================
   IMPRESSUM / DATENSCHUTZ
   ========================================================= */
.imprint {
  background: #fff;
  padding-top: 84px;
}
.imprint-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.imprint-box {
  border: 1px solid var(--gw-border);
  background: var(--gw-bg);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.imprint-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--gw-navy) 0%,
    var(--gw-green) 50%,
    var(--gw-cyan-glow) 100%);
}
.imprint-box h3 {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 22px;
}
.imprint-box h3 .icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(104, 168, 45, 0.12);
  color: var(--gw-green-dark);
  font-weight: 700;
}
.imprint-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
}
.imprint-columns h4 {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--gw-navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.imprint-columns p {
  margin: 0;
  color: var(--gw-text-soft);
  line-height: 1.7;
  font-size: 14.5px;
}
.note {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(104, 168, 45, 0.25);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--gw-text-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* Datenschutz */
.privacy-box { background: #fff; }
.privacy-updated {
  margin: 0 0 24px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--gw-muted);
}
.privacy-content {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.privacy-content section {
  padding: 22px 24px;
  border: 1px solid var(--gw-border);
  border-radius: var(--r-md);
  background: var(--gw-bg);
  transition: border-color 0.2s ease;
}
.privacy-content section:hover { border-color: rgba(104, 168, 45, 0.3); }
.privacy-content h4 {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--gw-navy);
}
.privacy-content p {
  margin: 0 0 12px;
  color: var(--gw-text-soft);
  line-height: 1.7;
  font-size: 14.5px;
}
.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content a {
  color: var(--gw-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(104, 168, 45, 0.5);
}
.privacy-content a:hover { color: var(--gw-green-dark); }
.privacy-content ul { padding-left: 22px; margin: 8px 0 0; }
.privacy-content li {
  margin-bottom: 10px;
  color: var(--gw-text-soft);
  line-height: 1.7;
  font-size: 14.5px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(180deg, #fff 0%, var(--gw-bg) 100%);
  border-top: 1px solid var(--gw-border-soft);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gw-green), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--gw-text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0 16px;
  max-width: 320px;
}
.footer-brand .logo img { height: 44px; }
.footer-region {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(104, 168, 45, 0.08);
  border: 1px solid rgba(104, 168, 45, 0.22);
  color: var(--gw-green-dark);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gw-navy);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col li {
  font-size: 14px;
  color: var(--gw-text-soft);
  line-height: 1.5;
}
.footer-col li.muted { color: var(--gw-muted); }
.footer-col a {
  color: var(--gw-text-soft);
  transition: color 0.2s ease;
  position: relative;
}
.footer-col a:hover { color: var(--gw-green-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--gw-border-soft);
}
.copy {
  color: var(--gw-muted);
  font-size: 13px;
  font-family: var(--f-mono);
}
.footer-made {
  color: var(--gw-muted);
  font-size: 13px;
  font-family: var(--f-mono);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-made::before {
  content: "▲";
  color: var(--gw-green);
  font-size: 10px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav, .header .btn-outline { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-nav.open { display: block; }
  .hero { padding: 40px 0 110px; }
  .hero-grid,
  .feature-grid,
  .process-grid,
  .cta-grid,
  .imprint-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid   { grid-template-columns: repeat(2, 1fr); }
  .highlights   { grid-template-columns: 1fr; }
  .hero .stats  { max-width: 100%; }
  .package-grid { grid-template-columns: 1fr; }
  .cta-box      { padding: 38px 30px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .header-inner { height: 72px; }
  .logo img { height: 42px; max-width: 180px; }
  .hero { padding: 36px 0 90px; }
  .hero .actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero .stats  { grid-template-columns: 1fr; }
  .service-grid,
  .panel-grid,
  .imprint-columns { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .section, .cta { padding: 70px 0; }
  .cta-box { padding: 30px 22px; }
  .cta-logo img { height: 52px; }
  .imprint-box { padding: 24px; }
  .privacy-content section { padding: 18px; }
  .card.card-wide { flex-direction: column; gap: 18px; padding: 26px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =========================================================
   ÜBER UNS / TEAM
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}
.team-card {
  background: var(--gw-card);
  border: 1px solid var(--gw-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--gw-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(104, 168, 45, 0.3);
  box-shadow: var(--gw-shadow);
}

/* Photo-Container mit Bergpanorama-Fallback und großer Initiale */
.team-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gw-navy) 0%, var(--gw-navy-soft) 60%, var(--gw-navy-deep) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.team-photo::before {
  /* Subtiler Glow-Spot hinter der Initiale */
  content: "";
  position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(104, 168, 45, 0.18) 0%,
    rgba(77, 208, 255, 0.08) 40%,
    transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.team-photo::after {
  /* Große Initiale als Platzhalter */
  content: attr(data-initial);
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: clamp(80px, 11vw, 150px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.team-photo .team-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%; height: 65%;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
/* Echtes Foto überlagert den Platzhalter, wenn vorhanden.
   Die Portraits sind im Hochformat; top-Ausrichtung verhindert abgeschnittene Köpfe. */
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
}

.team-body { padding: 30px 28px 32px; }
.team-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-green-dark);
  margin-bottom: 12px;
}
.team-role::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gw-green);
  box-shadow: 0 0 8px var(--gw-green);
}
.team-name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gw-navy);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.team-bio {
  color: var(--gw-text-soft);
  font-size: 14.5px;
  line-height: 1.72;
}
.team-bio p {
  margin: 0 0 14px;
}
.team-bio p:last-child { margin-bottom: 0; }
.team-bio ul {
  margin: -4px 0 18px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.team-bio li {
  position: relative;
  padding-left: 20px;
  color: var(--gw-text-soft);
}
.team-bio li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gw-green);
  box-shadow: 0 0 8px rgba(104, 168, 45, 0.45);
  transform: translateY(-50%);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--gw-border-soft);
}
.team-skill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 26, 68, 0.04);
  border: 1px solid rgba(0, 26, 68, 0.08);
  color: var(--gw-text-soft);
  font-size: 12.5px;
  font-weight: 600;
}

/* Gemeinsame Werte */
.team-values {
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid var(--gw-border-soft);
}
.team-values-head { max-width: 760px; margin-bottom: 40px; }
.team-values-head h2 { margin-top: 8px; }
.team-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  padding: 26px 26px 28px;
  background: var(--gw-card);
  border: 1px solid var(--gw-border);
  border-radius: var(--r-lg);
  box-shadow: var(--gw-shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.value:hover {
  transform: translateY(-3px);
  border-color: rgba(104, 168, 45, 0.3);
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(104, 168, 45, 0.14) 0%, rgba(0, 26, 68, 0.05) 100%);
  border: 1px solid rgba(104, 168, 45, 0.2);
  color: var(--gw-green-dark);
  margin-bottom: 16px;
}
.value h3 { margin-bottom: 8px; }
.value p {
  color: var(--gw-text-soft);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* CTA-Block am Ende */
.team-cta {
  margin-top: 70px;
  padding: 50px 40px;
  text-align: center;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--gw-bg) 0%, var(--gw-bg-2) 100%);
  border: 1px solid var(--gw-border-soft);
}
.team-cta h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px;
}
.team-cta p {
  color: var(--gw-text-soft);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.65;
}

/* Mobile Team */
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-values-grid { grid-template-columns: 1fr; }
  .team-values { margin-top: 60px; padding-top: 50px; }
  .team-cta { padding: 36px 24px; margin-top: 50px; }
}
