/* ==============================
   RANMO LANDING — Pixel-genau nach ranmo.ai
   Background dunkel #2F2E2E · Akzent #00D1C2
   Font: Barlow (DIN Next Alternative)
   ============================== */

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

:root {
  color-scheme: dark;            /* native Controls (Date-Picker, Scrollbars, Selects) konsistent dunkel */
  --bg-dark:    #1A1A1A;
  --bg:         #2F2E2E;
  --bg-2:       #3A3939;  /* Karten / Dropdowns (solide) */
  --bg-3:       #454343;
  --bg-4:       #504D4D;
  --bg-card:    #353434;
  --bg-card-2:  rgba(83, 81, 81, 0.59);
  --border:     #403B3B;
  --border-2:   #504D4D;
  --accent:     #00D1C2;
  --accent-2:   #00AFA3;
  --accent-3:   #00877C;
  --accent-soft: rgba(0,209,194,0.43);
  --text:       #FFFFFF;
  --text-2:     #D1CAC9;
  --text-3:     #B0AAA9;
  --text-dim:   #9E9897;   /* AA-Kontrast auf --bg (~5:1; vorher #6E6968 ~2,4:1, fiel durch WCAG AA) */
  /* Status-Farben (für Marketplace/Listing) */
  --green:      #00D1C2;
  --blue:       #66E9E0;
  --red:        #FF5C5C;
  --yellow:     #FFD166;
}

html { scroll-behavior: smooth; background: var(--bg); scroll-padding-top: 104px; }
/* ^ scroll-padding-top = Höhe der fixen Navbar: Anker-Sprünge (Menüpunkte)
   landen dadurch sauber UNTER der Navbar statt dahinter. */

body {
  font-family: 'Barlow', 'DIN Next', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== BUTTONS — exakt wie ranmo.ai: BG #2F2E2E, Border türkis, 10px radius ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; font-size: 13px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  border: 1.5px solid transparent; background: transparent;
  font-family: inherit; border-radius: 10px;
}
.btn-primary {
  background: var(--bg); color: var(--text); border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent); color: var(--bg);
}
.btn-outline {
  color: var(--text); border-color: var(--accent); background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }
.btn-ghost { color: var(--text); border-color: transparent; }
.btn-ghost:hover { color: var(--accent); }
.btn-lg { padding: 16px 40px; font-size: 14px; }

/* ===== NAVBAR — dark grey bar, weisse Caps Links ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; background: var(--bg);
  border-bottom: 1px solid rgba(64,59,59,0.5);
}
/* Navbar darf die volle Breite nutzen (luftiger als der schmale Content-Container) */
.navbar .container { max-width: 1500px; }
/* 3-Spalten Grid statt Center + Absolute → verhindert Overlapping */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
}
.nav-links {
  display: flex; align-items: center; gap: 42px; list-style: none;
  grid-column: 2;
  justify-content: center;
}
.nav-links a {
  color: var(--text); text-decoration: none; font-size: 13px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative; /* nicht mehr absolute */
}
.nav-cta .btn { padding: 9px 22px; font-size: 11px; }

/* MARKETPLACE-Link als Türkis-Pill (deutlich anders als Login-Outline-Button) */
.nav-mp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px 8px 14px;
  background: rgba(0, 209, 194, 0.10);
  border: 1px solid rgba(0, 209, 194, 0.30);
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-mp-link::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 209, 194, 0.7);
  animation: mpPulse 2.4s infinite;
}
@keyframes mpPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 209, 194, 0.7); }
  50%      { opacity: 0.5; box-shadow: 0 0 4px rgba(0, 209, 194, 0.3); }
}
.nav-mp-link:hover,
.nav-mp-link.active {
  background: rgba(0, 209, 194, 0.20);
  border-color: var(--accent);
  color: var(--text);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; position: absolute; right: 24px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); }

/* ===== HERO mit echtem Truck-Image ===== */
.hero {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
  background: #0A0F14;
  overflow: hidden;
  padding-top: 80px; /* Platz für die Navbar */
}

/* Das echte Truck-Bild als <img> — bleibt IMMER komplett sichtbar
   (kein max-height, kein object-fit cover → nichts wird abgeschnitten) */
.hero-truck-image {
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}

.hero-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 700px at 50% 30%, rgba(10,15,20,0.65) 0%, rgba(10,15,20,0.30) 50%, transparent 100%),
    linear-gradient(180deg, rgba(10,15,20,0.50) 0%, rgba(10,15,20,0.25) 40%, rgba(10,15,20,0.50) 80%, rgba(47,46,46,0.98) 100%);
}

.hero-inner {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Logo nach oben */
  padding: 110px 24px 40px; /* mehr Abstand zur Navbar */
}

.hero-logo-big {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  margin-bottom: 18px;
}
.logo-circle-wrap {
  position: relative;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark-svg {
  width: 160px; height: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* schwarzes SVG → weiss */
}
.logo-wordmark {
  font-size: 76px; font-weight: 200; letter-spacing: 10px;
  color: var(--text); line-height: 1;
  font-family: 'Barlow', sans-serif;
}
.hero-tagline {
  font-size: 18px; font-weight: 300; letter-spacing: 6px;
  text-transform: uppercase; color: var(--text); margin-top: 12px;
}

.hero-cta-row {
  margin-top: 56px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ===== SEKTIONEN ===== */
section { padding: 110px 0; position: relative; background: var(--bg); }

/* „Was ist Ranmo?" endet mit den 3 Pillars; der folgende „Für wen?"-Block
   schliesst enger an, damit zwischen den Abschnitten keine tote Fläche steht. */
#was-ist-ranmo { padding-top: 56px; padding-bottom: 56px; }
#vorteile { padding-top: 64px; }

/* Zentrierter Intro-/Übergangs-Block über den Zielgruppen-Karten */
.section-intro {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.section-intro .section-tag-h { margin-bottom: 12px; }
.section-intro h2 {
  font-size: 42px; font-weight: 300; line-height: 1.15;
  color: var(--text); letter-spacing: -0.5px; font-family: 'Barlow', sans-serif;
  margin: 0 0 16px;
}
.section-intro p {
  font-size: 17px; line-height: 1.7; color: var(--text-2, #b9c0c7);
  font-weight: 300; max-width: 560px; margin: 0 auto;
}
/* dezente Akzentlinie als sichtbares Übergangs-Signal */
.section-intro::after {
  content: ''; display: block; width: 56px; height: 3px; border-radius: 2px;
  background: var(--accent); margin: 28px auto 0; opacity: 0.9;
}
@media (max-width: 720px) {
  .section-intro h2 { font-size: 32px; }
  #was-ist-ranmo { padding-top: 40px; padding-bottom: 40px; }
  #vorteile { padding-top: 48px; }
}

.section-tag-h {
  font-size: 28px; font-weight: 400; letter-spacing: normal;
  color: var(--accent); margin-bottom: 32px; display: block;
  font-family: 'Barlow', sans-serif;
}
.section-title-big {
  font-size: 56px; font-weight: 300; line-height: 1.1;
  color: var(--text); letter-spacing: -0.5px;
  font-family: 'Barlow', sans-serif;
}

/* ===== WAS IST RANMO — 2-spaltig ===== */
.what-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
  padding-bottom: 100px;
}
.what-text {
  font-size: 19px; line-height: 1.8; color: var(--text);
  font-weight: 300;
}

/* 3 Pillars mit grossen Türkis-Kreis-Icons */
.feature-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
  padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.06);
}
.pillar { text-align: center; }
.pillar-icon, .pillar-icon-circle {
  width: 140px; height: 140px; border: 1.5px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 36px; color: var(--accent);
  transition: all 0.3s; background: transparent;
}
.pillar:hover .pillar-icon, .pillar:hover .pillar-icon-circle {
  background: rgba(0,209,194,0.06);
  box-shadow: 0 0 50px rgba(0,209,194,0.2);
}
/* Original-Icons als <img>: gleiche Grösse wie die SVG-Variante */
.pillar-icon-img {
  width: 140px; height: 140px; display: block;
  margin: 0 auto 36px;
  object-fit: contain;
  transition: all 0.3s;
}
.pillar:hover .pillar-icon-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(0,209,194,0.4));
}
.pillar h3 {
  font-size: 20px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text); margin-bottom: 24px;
  font-family: 'Barlow', sans-serif;
}
.pillar p {
  font-size: 16px; color: var(--text); font-weight: 300;
  line-height: 1.7; max-width: 280px; margin: 0 auto;
}

/* ===== ZIELGRUPPEN — 2 grosse Karten mit Gradient + PNG-Bleed rechts ===== */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.audience-card {
  background: linear-gradient(135deg, #3A3939 0%, #2F2E2E 60%, rgba(47,46,46,0.85) 100%);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 0 28px 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 320px;
  position: relative;
  overflow: hidden; /* Bild darf bis zur Card-Kante gehen, aber nicht raus */
  transition: all 0.3s;
}
.audience-card:hover { border-color: var(--accent); }
.audience-content {
  position: relative; z-index: 2;
  padding-right: 24px;
}
.audience-card h2 {
  font-size: 38px; font-weight: 300; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 32px; font-family: 'Barlow', sans-serif;
  line-height: 1.1;
}
.audience-card ul {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.audience-card ul li {
  position: relative; padding-left: 22px;
  color: var(--text); font-size: 17px; font-weight: 300; line-height: 1.4;
}
.audience-card ul li::before {
  content: '•'; position: absolute; left: 4px; top: 0;
  color: var(--text); font-size: 20px; line-height: 1.2;
}

/* PNG-Bilder rechts in der Karte — bleeden bis an die Kante */
.audience-image {
  height: 100%;
  max-height: 460px;
  width: auto;
  object-fit: contain;
  object-position: right center;
  justify-self: end;
  align-self: stretch;
  position: relative;
  z-index: 1;
}
.audience-image-truck { object-position: right bottom; }
.audience-image-figure { object-position: right center; }
.audience-card .btn { align-self: flex-start; }

/* ===== TRENNSTREIFEN-BILD (Vollbreite zwischen Sektionen) ===== */
.section-divider-band {
  width: 100%;
  height: 420px;
  background-color: #0A1419;       /* Fallback, falls Bild fehlt */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .section-divider-band { height: 240px; }
}
@media (max-width: 480px) {
  .section-divider-band { height: 180px; }
}

/* ===== SO FUNKTIONIERTS — 01 02 03 mit Pfeilen ===== */
.how-it-works { padding-top: 64px; padding-bottom: 64px; }
.how-it-works h2 {
  font-size: 36px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 48px;
  font-family: 'Barlow', sans-serif;
}
.steps-row { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr; gap: 28px; align-items: flex-start; }
.step-col { text-align: left; }
.step-num {
  font-size: 38px; font-weight: 300; color: var(--accent);
  letter-spacing: 1px; line-height: 1; margin-bottom: 12px; display: block;
  font-family: 'Barlow', sans-serif;
}
.step-icon-svg, .step-icon-line {
  width: 132px; height: 108px; color: var(--accent);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: flex-start;
}
/* Eigene Step-Icons als PNG (linksbündig wie die SVG-Variante) */
.step-icon-img {
  max-width: 132px; max-height: 108px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.step-col h3 {
  font-size: 19px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  font-family: 'Barlow', sans-serif;
}
.step-col p {
  font-size: 16px; color: var(--text); font-weight: 300; line-height: 1.7;
  max-width: 320px;
}
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-top: 110px;
}

/* ===== YOUR BRAND ON THE MOVE — Stats-Sektion mit Skyline-Hintergrund ===== */
.brand-move-section {
  position: relative;
  background-color: #0A0F14;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center; padding: 80px 0;
  overflow: hidden;
}
.brand-move-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,15,20,0.7) 0%,
    rgba(10,15,20,0.55) 50%,
    rgba(10,15,20,0.85) 100%);
}
.brand-move-section h2 {
  font-size: 48px; font-weight: 300; color: var(--text);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px;
  font-family: 'Barlow', sans-serif;
}
.brand-move-sub {
  color: var(--text); font-size: 18px; max-width: 580px; margin: 0 auto 48px;
  font-weight: 300;
}

/* ===== „Your Brand on the Move" — Kasten-Variante (Headline links, Truck rechts) ===== */
.brand-move-card {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, #34373b 0%, #26282b 55%, rgba(20,22,25,0.92) 100%);
  border: 1px solid var(--border); border-radius: 22px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  min-height: 440px; overflow: hidden;
  padding: 56px 0 56px 64px;
  margin-bottom: 80px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  text-align: left;
}
.brand-move-card-text { position: relative; z-index: 2; padding-right: 24px; }
.brand-move-card-text h2 {
  font-size: 52px; font-weight: 700; line-height: 1.05;
  letter-spacing: 0; text-transform: none; color: var(--text);
  margin: 0 0 22px; font-family: 'Barlow', sans-serif;
}
.brand-move-card-text h2 .accent { color: var(--accent); }
.brand-move-card-text p {
  font-size: 18px; line-height: 1.7; color: var(--text);
  font-weight: 300; max-width: 380px; margin: 0 0 36px;
}
/* Freigestellter Truck (transparentes PNG) → contain, grösser dargestellt */
.brand-move-card-truck {
  position: absolute; right: 0; top: 0; bottom: 0;
  height: 100%; width: 68%;
  object-fit: contain; object-position: center right;
  padding: 8px 12px 8px 0;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
}
@media (max-width: 860px) {
  .brand-move-card { grid-template-columns: 1fr; min-height: 0; padding: 40px 28px; text-align: center; }
  .brand-move-card-text { padding-right: 0; }
  .brand-move-card-text h2 { font-size: 38px; }
  .brand-move-card-text p { margin-left: auto; margin-right: auto; }
  .brand-move-card-truck { position: relative; width: 100%; height: auto; max-height: 240px;
    padding: 0; margin-top: 28px; object-position: center; }
}
/* Einleitung über den drei Kennzahlen — gibt dem Block Kontext */
.brand-stats-intro { text-align: center; max-width: 640px; margin: 0 auto 8px; }
.brand-stats-intro .section-tag-h { margin-bottom: 10px; font-size: 22px; }
.brand-stats-intro h3 {
  font-size: 34px; font-weight: 300; line-height: 1.15; color: var(--text);
  font-family: 'Barlow', sans-serif; margin: 0 0 16px; letter-spacing: -0.3px;
}
.brand-stats-intro p {
  font-size: 16px; line-height: 1.7; color: var(--text); font-weight: 300; margin: 0;
}
.brand-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: none; margin: 48px 0 0;   /* volle Containerbreite → bündig mit Karten darüber */
}
.brand-stat .stat-icon {
  width: 90px; height: 90px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: rgba(0,209,194,0.03);
  transition: all 0.3s;
}
.brand-stat:hover .stat-icon {
  background: rgba(0,209,194,0.10);
  box-shadow: 0 0 40px rgba(0,209,194,0.25);
}
/* Kennzahlen als dezente Karten — wirken „geerdet" statt frei schwebend */
.brand-stat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.brand-stat:hover {
  border-color: rgba(0,209,194,0.45);
  background: rgba(0,209,194,0.04);
  transform: translateY(-4px);
}
.brand-stat .stat-num {
  font-size: 42px; font-weight: 300; color: var(--accent);
  letter-spacing: 0.5px; line-height: 1; margin-bottom: 10px; display: block;
  font-family: 'Barlow', sans-serif;
}
.brand-stat .stat-label {
  font-size: 13px; color: var(--text); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; display: block;
}
.brand-stat .stat-desc {
  font-size: 14px; line-height: 1.6; color: var(--text-2, #aab2ba);
  font-weight: 300; margin: 14px 0 0; max-width: 280px;
  margin-left: auto; margin-right: auto;
}

/* ===== FAQ ===== */
.faq { padding-top: 64px; }
.faq h2 {
  font-size: 36px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
  font-family: 'Barlow', sans-serif;
}
.faq-tabs {
  display: flex; gap: 0; max-width: 880px; margin: 0 auto 40px;
  border-bottom: 1px solid var(--border);
}
.faq-tab {
  flex: 1; padding: 14px; background: none; border: none;
  color: var(--text); font-size: 14px; font-weight: 400;
  letter-spacing: 1.5px; cursor: pointer; font-family: inherit;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.faq-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 17px; color: var(--text); font-weight: 300;
  gap: 16px;
}
.faq-q .faq-num { color: var(--accent); font-weight: 400; min-width: 28px; }
.faq-q .plus { color: var(--accent); font-size: 24px; font-weight: 300; transition: transform 0.2s; }
.faq-a {
  display: none; padding: 16px 0 0 44px; color: var(--text-2); font-weight: 300;
  font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--accent); }

/* ===== KONTAKT — 2-spaltig mit Hintergrundbild + Türkis-Panel ===== */
.kontakt {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 110px 0;
  overflow: hidden;
}
.kontakt-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  background-color: #0A1419; /* Fallback wenn Bild fehlt */
}
.kontakt-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(11,13,16,0.92) 0%, rgba(11,13,16,0.78) 40%, rgba(11,13,16,0.55) 100%);
}

.kontakt-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}

/* LINKS: Text-Spalte */
.kontakt-text { text-align: left; }
.kontakt-tag {
  color: var(--accent); font-size: 18px;
  letter-spacing: 1px; font-weight: 400;
  margin-bottom: 18px; text-align: left;
}
.kontakt h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300; color: var(--text);
  line-height: 1.1; letter-spacing: -0.5px;
  margin-bottom: 32px; text-align: left;
  font-family: 'Barlow', sans-serif;
}
.kontakt h2 .accent { color: var(--accent); }
.kontakt-sub {
  color: var(--text); font-size: 17px;
  max-width: 460px; margin: 0; text-align: left;
  font-weight: 300; line-height: 1.65;
}

/* RECHTS: Türkis-getöntes Form-Panel */
.kontakt-form-panel {
  background: linear-gradient(135deg, rgba(0,175,163,0.80) 0%, rgba(0,135,124,0.68) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,209,194,0.30);
  border-radius: 22px;
  padding: 44px 44px 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.kontakt-form-title {
  font-size: 22px; font-weight: 400;
  letter-spacing: 1.5px; color: var(--text);
  margin-bottom: 28px;
  font-family: 'Barlow', sans-serif;
}

/* Formfelder im Panel */
.contact-form {
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .field {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-form label {
  font-size: 14px; color: var(--text);
  font-weight: 300; letter-spacing: 0.3px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border: none; border-radius: 6px;
  color: #1a1a1a;
  font-size: 15px; font-family: inherit; font-weight: 400;
  outline: none; transition: all 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 0 0 3px rgba(0,209,194,0.25);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text); font-size: 13px; font-weight: 300; line-height: 1.5;
  margin-top: 4px;
}
.contact-form .checkbox-row input {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--accent);
  background: white; appearance: auto;
  margin-top: 2px;
}
.contact-form .checkbox-row a {
  color: var(--text); text-decoration: underline;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
  background: rgba(11,13,16,0.85);
  color: var(--text);
  border: 1px solid rgba(11,13,16,0.6);
}
.contact-form button:hover {
  background: var(--bg);
  border-color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
}
.footer-brand .logo-mini {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.footer-mark { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand .logo-mini-text {
  font-size: 24px; font-weight: 300; letter-spacing: 5px; color: var(--text);
  font-family: 'Barlow', sans-serif;
}
.footer-brand p {
  color: var(--text-3); font-size: 14px; line-height: 1.7; max-width: 280px; font-weight: 300;
}
.footer-col h5 {
  font-size: 12px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
}
.footer-col a {
  display: block; color: var(--text); text-decoration: none;
  font-size: 14px; padding: 6px 0; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-3); font-size: 13px; font-weight: 300;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  /* Navbar als Flex-Zeile; offenes Menü stapelt sauber untereinander (kein Overlap) */
  .nav-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0; }
  .hamburger { display: flex; order: 1; margin-left: auto; position: static; right: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; order: 2; flex-basis: 100%; width: 100%; flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 0 6px; }
  .nav-cta.open { display: flex; order: 3; flex-basis: 100%; width: 100%; flex-direction: column; align-items: stretch; gap: 12px; padding: 8px 0 6px; border-top: 1px solid var(--border); }
  .nav-cta.open .btn, .nav-cta.open .nav-mp-link { width: 100%; text-align: center; justify-content: center; }
  .what-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-pillars { grid-template-columns: 1fr; gap: 60px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand-stats { grid-template-columns: 1fr; }
  .logo-wordmark { font-size: 56px; letter-spacing: 5px; }
  .section-title-big { font-size: 36px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-text { text-align: center; }
  .kontakt h2, .kontakt-tag { text-align: center; }
  .kontakt-sub { margin: 0 auto; }
  .kontakt-form-panel { padding: 32px 28px 28px; }
}
@media (max-width: 540px) {
  .logo-circle { width: 130px; height: 130px; }
  .logo-circle svg { width: 80px; height: 80px; }
  .logo-wordmark { font-size: 44px; letter-spacing: 4px; }
  .hero-tagline { font-size: 14px; letter-spacing: 4px; }
  .footer-inner { grid-template-columns: 1fr; }
  .brand-move-section h2 { font-size: 32px; letter-spacing: 2px; }
  .kontakt h2 { font-size: 32px; }
}

/* ===== Sichtbarer Tastatur-Fokus (a11y) — nur bei Keyboard-Nutzung, nicht bei Maus-Klick. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible, summary:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
