/* ============================================================
   FRADES THEME – Design aligned to Dashboard
   ============================================================ */

:root {
  --teal:        #106457;
  --teal-hover:  #0d5349;
  --teal-pale:   #f0f7f5;
  --teal-light:  #1aa88d;
  --dark:        #0a0e0d;
  --text:        #0f1a18;
  --text-mid:    #4a5e59;
  --muted:       #8a9e99;
  --border:      #e8edeb;
  --border-mid:  #d4ddd9;
  --bg:          #ffffff;
  --surface:     #f8faf9;
  --surface-2:   #f0f4f2;
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08), 0 3px 8px rgba(0,0,0,.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* iOS Zoom Fix - Inputs müssen mindestens 16px sein */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  font-size: 16px !important;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl { font-family: var(--font-display); font-size: clamp(3rem,6vw,6rem); font-weight: 800; line-height: 1.0; letter-spacing: -.03em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,4rem); font-weight: 700; line-height: 1.08; letter-spacing: -.025em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.5rem,2.8vw,2.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.5rem); font-weight: 600; line-height: 1.2; letter-spacing: -.015em; }

.label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.label.teal { color: var(--teal); }

.text-muted { color: var(--text-mid); }
.text-center { text-align: center; }

.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container      { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2.5rem; }

/* Header Container - Logo und Hamburger symmetrisch am Rand */
#site-header .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}
#site-header .nav-wrapper {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
@media (min-width: 769px) {
  #site-header .nav-wrapper {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* Hero Badge AUSBLENDEN */
.hero-badge {
  display: none !important;
  visibility: hidden !important;
}

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: .75rem; }
.w-full { width: 100%; }

/* ============================================================
   BUTTONS – exactly like dashboard
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font-body);
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-outline:hover { background: var(--surface); border-color: #b0bfbb; }

.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover { background: #1a2320; }

.btn-sm  { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg  { padding: .8rem 1.75rem; font-size: .95rem; }

/* ============================================================
   CHIPS / BADGES
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  background: var(--teal-pale);
  color: var(--teal);
  border: 1px solid rgba(16,100,87,.12);
}

/* ============================================================
   FRADES ICONS
   ============================================================ */
.frades-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -.125em; flex-shrink: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
#site-header.scrolled { box-shadow: var(--shadow-sm); }

/* WordPress Admin-Bar Kompatibilität */
.admin-bar #site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar #site-header {
    top: 46px;
  }
}
/* Mobile Nav unter Admin-Bar */
.admin-bar .mobile-nav {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar .mobile-nav {
    top: 32px;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 115px;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--teal); }
/* Fix für WordPress Custom Logo - alle möglichen Selektoren */
.nav-logo img,
.nav-logo .custom-logo,
.nav-logo .custom-logo-link img,
.custom-logo-link img,
#site-header img {
  height: 38px !important;
  width: auto !important;
  max-height: 38px !important;
  object-fit: contain;
}

.nav-main {
  display: flex;
  align-items: center;
  margin-left: auto; /* Nach rechts schieben */
  flex: 0; /* Nicht mehr expandieren */
}
.nav-item { position: static; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem .875rem;
  font-size: .825rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
  cursor: pointer;
  user-select: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface);
}
.nav-link svg { width: 12px; height: 12px; transition: transform .2s; opacity: .6; }
.nav-item.menu-open .nav-link svg { transform: rotate(180deg); }

/* ── Mega Menu – exakt wie frades Platform ──────────────────────────────── */

/* Overlay */
.mega-overlay {
  position: fixed;
  top: 115px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 998;
  pointer-events: none;
}
.mega-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.admin-bar .mega-overlay { top: 147px; }
@media screen and (max-width:782px) { .admin-bar .mega-overlay { top: 161px; } }

/* Mega-Menu Panel – position:fixed wie Platform */
.mega-menu {
  position: fixed;
  top: 115px;
  left: 0;
  right: 0;
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
  z-index: 1999;
}
.admin-bar .mega-menu { top: 147px; }
@media screen and (max-width:782px) { .admin-bar .mega-menu { top: 161px; } }
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.mega-menu.wide { /* kein extra Stil nötig */ }

/* Inner Container – zentriert, wie frades-mega-inner */
.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px;
}

/* Spalten */
.mega-col { display: flex; flex-direction: column; }
.mega-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 0 .5rem .75rem;
  margin-bottom: .25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Links – wie frades-mega-link */
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem .625rem;
  border-radius: 8px;
  transition: background .2s;
  margin-top: .25rem;
  text-decoration: none;
}
.mega-link:hover { background: rgba(255,255,255,.08); }
.mega-link-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #1dc9a8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-link-icon svg { width: 16px; height: 16px; }
.mega-link-title { font-size: .875rem; font-weight: 500; color: #fff; display: block; margin-bottom: .2rem; }
.mega-link-desc  { font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.4; display: block; }

/* Promo (mega-featured) */
.mega-featured { display: flex; align-items: flex-start; }
.mega-featured > div {
  background: linear-gradient(135deg,rgba(16,100,87,.25) 0%,rgba(16,100,87,.08) 100%);
  border: 1px solid rgba(16,100,87,.35);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  width: 100%;
}
.mega-featured h4 { font-size: 1rem; font-weight: 600; color: #fff; margin: 0 0 .5rem; }
.mega-featured p  { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0 0 1rem; }

.nav-right { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }

/* Mobile Toggle */
.nav-toggle { 
  display: none; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  gap: 5px; 
  width: 40px; 
  height: 40px; 
  cursor: pointer; 
  padding: 8px;
  margin-left: auto;
  background: transparent;
  border: none;
  border-radius: var(--r-sm);
  transition: background .15s;
  position: relative;
  z-index: 10;
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle span { 
  display: block; 
  width: 20px;
  height: 2px; 
  background: var(--text); 
  border-radius: 2px; 
  transition: all .3s; 
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Panel - KOMPLETT VERSTECKT wenn geschlossen */
.mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important; /* Dynamic viewport height für Mobile */
  background: #fff !important;
  z-index: 999999 !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important; /* Scroll erzwingen */
  -webkit-overflow-scrolling: touch !important; /* Smooth scroll iOS */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-nav.open { 
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mobile-nav-inner { 
  padding: 0;
  padding-top: 5rem;
  padding-bottom: 120px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100%;
}
.mobile-nav-logo { 
  font-family: var(--font-display); 
  font-size: 1.6rem; 
  font-weight: 800; 
  letter-spacing: -.04em; 
  display: block; 
  margin-bottom: 1.5rem; 
  margin-top: 0;
  padding: 0 1.5rem;
}
.mobile-nav-logo span { color: var(--teal); }
.mobile-nav-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
  margin-bottom: 0; 
  padding: 0;
  width: 100%;
}
.mobile-nav-list li { 
  list-style: none; 
  width: 100%; 
  margin: 0;
  padding: 0;
}
/* GRÜNE BUTTONS - EDGE TO EDGE */
.mobile-nav-list a { 
  display: block; 
  width: 100%;
  padding: 1.25rem 1.5rem; 
  border-radius: 0 !important;
  font-size: 1rem; 
  font-weight: 600; 
  color: #fff !important;
  background: var(--teal) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  text-align: center;
  transition: background .15s;
  margin: 0;
}
.mobile-nav-list li:first-child a {
  border-top: 1px solid rgba(255,255,255,0.15) !important;
}
.mobile-nav-list a:hover,
.mobile-nav-list a:active { 
  background: var(--teal-hover) !important;
}
.mobile-nav-actions { 
  display: flex; 
  flex-direction: column; 
  gap: .75rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
}
.mobile-nav-actions .btn {
  text-align: center !important;
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
  width: 100%;
}
/* Close Button */
.mobile-nav-close {
  position: fixed !important;
  top: 1rem !important;
  right: 1rem !important;
  width: 48px;
  height: 48px;
  background: #fff !important;
  border: 2px solid var(--border) !important;
  border-radius: 50%;
  cursor: pointer !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text);
  z-index: 9999999 !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto !important;
}
.mobile-nav-close:hover,
.mobile-nav-close:active { 
  background: var(--surface) !important; 
  border-color: var(--teal) !important;
}

/* Overlay - nicht mehr nötig, aber falls gewünscht */
.mobile-nav-overlay {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-home {
  padding-top: 170px;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
  /* overflow: hidden entfernt – damit mockup-float & mockup-float-2 ausserhalb des Blocks sichtbar sind */
}
/* Mehr Padding wenn Admin-Bar aktiv */
.admin-bar .hero-home {
  padding-top: 202px;
}
@media screen and (max-width: 782px) {
  .admin-bar .hero-home {
    padding-top: 216px;
  }
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,100,87,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,100,87,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg-dot {
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,100,87,.06) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .875rem .35rem .5rem;
  background: var(--teal-pale);
  border: 1px solid rgba(16,100,87,.12);
  border-radius: 100px;
  font-size: .775rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.8); } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-headline .accent { color: var(--teal); }
.hero-headline .dot   { color: var(--teal); }

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: var(--text-mid);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid #fff;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px;
}
.hero-trust-avatars .hero-trust-avatar:first-child { margin-left: 0; }

/* Hero mockup */
.hero-right { position: relative; }

.mockup-float {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .875rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  font-size: .8rem;
  white-space: nowrap;
  animation: float-in 3s ease-in-out infinite;
}
@keyframes float-in { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.mockup-float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.mockup-float-title { font-weight: 600; color: var(--text); font-size: .8rem; }
.mockup-float-sub { font-size: .7rem; color: var(--muted); }

.mockup-float-2 {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-md);
  padding: .875rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  text-align: center;
  animation: float-in 3s ease-in-out infinite .5s;
}
.mockup-float-2-label { font-size: .65rem; opacity: .7; margin-bottom: .15rem; }
.mockup-float-2-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.mockup-float-2-sub { font-size: .65rem; opacity: .7; margin-top: .15rem; }

.hero-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mockup-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .625rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }
.mockup-url-bar {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .25rem .75rem;
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  margin: 0 .5rem;
}
.mockup-body { padding: 1rem; }
.mockup-nav-strip { display: flex; gap: .375rem; margin-bottom: 1rem; }
.mockup-nav-pill {
  padding: .3rem .7rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  cursor: default;
}
.mockup-nav-pill.active {
  background: var(--teal);
  color: #fff;
}
.mockup-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1rem; }
.mockup-stat {
  background: var(--surface);
  border-radius: 8px;
  padding: .625rem;
}
.mockup-stat-label { font-size: .65rem; color: var(--muted); margin-bottom: .25rem; }
.mockup-stat-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.mockup-stat-value.teal { color: var(--teal); }
.mockup-table { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.mockup-table-header {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: .375rem .75rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mockup-th { font-size: .65rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.mockup-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.mockup-row:last-child { border-bottom: none; }
.mockup-cell { font-size: .72rem; color: var(--text); }
.mockup-cell.muted { color: var(--muted); }
.mockup-badge {
  display: inline-block;
  padding: .15rem .45rem;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 600;
}
.mockup-badge.green  { background: #dcfce7; color: #166534; }
.mockup-badge.orange { background: #fff7ed; color: #9a3412; }
.mockup-badge.blue   { background: #eff6ff; color: #1d4ed8; }

/* ============================================================
   STATS BAR - Karten-Style wie Shop
   ============================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1rem; 
}
.stat-item { 
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.03em;
  margin-bottom: 0.25rem;
}
.stat-label { 
  font-size: .75rem; 
  color: var(--muted); 
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Stats Grid Mobile - 2x2 Karten */
@media (max-width: 768px) {
  .stats-bar {
    padding: 1.25rem 0;
  }
  .stats-grid { 
    grid-template-columns: 1fr 1fr !important; 
    gap: 0.75rem !important;
  }
  .stat-item {
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }
  .stat-number {
    font-size: 1.5rem !important;
  }
  .stat-label {
    font-size: 0.65rem !important;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-section.teal { background: var(--teal); border-color: transparent; }
.marquee-section.dark { background: var(--dark); border-color: transparent; }

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track.reverse { animation-direction: reverse; }

@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .4rem 2rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.7);
}
.marquee-section.teal .marquee-item { color: rgba(255,255,255,.85); }
.marquee-star { color: rgba(255,255,255,.4); font-size: .5rem; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label-row { margin-bottom: 1rem; }
.section-label-row .label { display: inline-flex; align-items: center; gap: .4rem; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.problem-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a1a16 0%, #0d2920 100%);
  position: relative;
}
.route-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--teal-light); box-shadow: 0 0 16px rgba(26,168,141,.5); }
.route-dot.origin { top: 30%; left: 15%; }
.route-dot.dest   { bottom: 25%; right: 15%; }
.route-truck { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 2rem; animation: truck-move 4s ease-in-out infinite; color: var(--teal-light); }
@keyframes truck-move { 0%,100% { transform: translate(-60%,-50%); } 50% { transform: translate(-40%,-60%); } }
.problem-info-card {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: .875rem 1.125rem;
  color: #fff;
}
.problem-info-card-label { font-size: .65rem; opacity: .6; margin-bottom: .2rem; }
.problem-info-card-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--teal-light); }
.problem-info-card-sub { font-size: .68rem; opacity: .65; }

.problem-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.problem-item {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .2s, border-color .2s;
}
.problem-item:hover { box-shadow: var(--shadow-sm); border-color: var(--border-mid); }
.problem-item-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.problem-item-icon svg { width: 16px; height: 16px; }
.problem-item-title { font-weight: 600; font-size: .875rem; margin-bottom: .2rem; }
.problem-item-text { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--surface); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.step-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  letter-spacing: -.05em;
  pointer-events: none;
}
.step-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 20px; height: 20px; }
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step-text { font-size: .825rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   SPLIT SECTION (Verlader / Spediteure)
   ============================================================ */
.split-section { background: var(--dark); }
.split-grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0; }
.split-divider { background: rgba(255,255,255,.08); }
.split-col { padding: 5rem 4rem; }
.split-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.split-icon svg { width: 22px; height: 22px; }
.split-label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.split-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.split-text { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 1.75rem; }
.split-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.split-list-item { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: inherit; }
/* Dunkler Hintergrund (Standard in split-section) */
.split-col .split-list-item { color: rgba(255,255,255,.8); }
/* Heller Hintergrund */
section:not(.split-section) .split-list-item,
.section .split-list-item { color: var(--text); }
.split-check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(16,100,87,.4);
  color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.split-check svg { width: 12px; height: 12px; }
.split-btn-col {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s;
}
.split-btn-col:hover { background: rgba(255,255,255,.18); }
.split-btn-col svg { width: 15px; height: 15px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { background: #fff; }
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.grid-3 .feature-card { }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); transform: translateY(-2px); }
.feature-card.featured {
  background: var(--teal);
  color: #fff;
  border-color: transparent;
}
.feature-card.featured .feature-icon  { background: rgba(255,255,255,.15); color: #fff; }
.feature-card.featured .feature-title { color: #fff; }
.feature-card.featured .feature-text  { color: rgba(255,255,255,.72); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; }
.feature-text  { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--surface); }
.testimonials-header { margin-bottom: 2.5rem; }
.testimonial-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card.highlight {
  background: var(--teal);
  border-color: transparent;
  color: #fff;
}
.testimonial-card.highlight .testimonial-name,
.testimonial-card.highlight .testimonial-quote { color: #fff; }
.testimonial-card.highlight .testimonial-role { color: rgba(255,255,255,.65); }
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: #f59e0b; }
.testimonial-stars svg { width: 14px; height: 14px; }
.testimonial-card.highlight .testimonial-stars { color: rgba(255,255,255,.8); }
.testimonial-quote { font-size: .875rem; line-height: 1.75; color: var(--text); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-card.highlight .testimonial-avatar { background: rgba(255,255,255,.2); color: #fff; }
.testimonial-name { font-size: .8rem; font-weight: 600; }
.testimonial-role { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.testimonial-card.highlight .testimonial-role { color: rgba(255,255,255,.6); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 0;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question:hover { color: var(--teal); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--muted); transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--teal); }
.faq-answer { padding-bottom: 1.125rem; font-size: .85rem; color: var(--text-mid); line-height: 1.75; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(16,100,87,.2) 0%, transparent 60%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.8rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .875rem; }
.cta-sub { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: .875rem; align-items: flex-start; }
.cta-note {
  display: flex; align-items: center; gap: .375rem;
  font-size: .775rem; color: rgba(255,255,255,.4);
}
.cta-note svg { width: 12px; height: 12px; color: var(--teal-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Admin-Bar Kompatibilität */
.admin-bar .page-hero {
  padding-top: 172px;
}
@media screen and (max-width: 782px) {
  .admin-bar .page-hero {
    padding-top: 186px;
  }
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(16,100,87,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(16,100,87,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-inner { position: relative; z-index: 1; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .775rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { opacity: .4; }

/* ============================================================
   FOOTER - Clean Dark Style
   ============================================================ */
#site-footer {
  background: #0a0a0a;
  padding: 0;
  margin: 0;
}
.footer-inner {
  background: #0a0a0a;
  border-radius: 0;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  display: block;
  margin-bottom: 1.25rem;
}
.footer-logo span { color: var(--teal); }
.footer-brand-text { 
  font-size: .85rem; 
  line-height: 1.7; 
  margin-bottom: 2rem; 
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.footer-newsletter-wrap {
  margin-top: 1.5rem;
}
.footer-nl-label { 
  font-size: .7rem; 
  font-weight: 600; 
  color: rgba(255,255,255,.5); 
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-newsletter { 
  display: flex !important; 
  flex-direction: row !important;
  align-items: center !important;
  position: relative !important;
  width: 100% !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  gap: 0 !important;
  padding: 5px !important;
  padding-left: 0 !important;
}
.footer-input {
  flex: 1 !important;
  padding: .85rem 1rem !important;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: .9rem !important;
  font-family: var(--font-body);
  outline: none !important;
  min-width: 0 !important;
}
.footer-input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter:focus-within { 
  border-color: var(--teal) !important; 
  background: rgba(16,100,87,.12) !important; 
}
.footer-nl-btn {
  padding: .75rem 1.5rem !important;
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  border: none !important;
  font-family: var(--font-body);
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: background .15s;
}
.footer-nl-btn:hover { background: var(--teal-hover) !important; }

.footer-col-title { 
  font-size: .7rem; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: 1rem; 
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* Titel nach Links brauchen Abstand oben */
.footer-links + .footer-col-title {
  margin-top: 2rem;
}
.footer-links { 
  display: flex; 
  flex-direction: column; 
  gap: .5rem; 
}
.footer-links:last-child {
  margin-bottom: 0;
}
.footer-link { 
  font-size: .85rem; 
  color: rgba(255,255,255,.5); 
  transition: color .15s; 
}
.footer-link:hover { color: #fff; }
.footer-contact-item {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.mt-6 { margin-top: 2rem; }

.footer-bottom { 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { 
  font-size: .8rem; 
  color: rgba(255,255,255,.35); 
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.footer-legal a:hover { color: #fff; }

.footer-socials { display: flex; gap: .625rem; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .2s ease;
  background: transparent;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { 
  background: rgba(255,255,255,.1); 
  color: #fff; 
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .3s ease;
  max-width: 340px;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.toast-icon { color: var(--teal-light); flex-shrink: 0; }
.toast-title { font-size: .875rem; font-weight: 600; }
.toast-sub { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ============================================================
   INNER PAGE TEMPLATES
   ============================================================ */
/* Benefit rows */
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-number { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: var(--surface-2); line-height: 1; margin-bottom: .5rem; }
.benefit-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }
.benefit-text { font-size: .875rem; color: var(--text-mid); line-height: 1.75; }
.benefit-icon-display {
  aspect-ratio: 1;
  border-radius: var(--r-2xl);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

/* Exchange preview */
.exchange-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.exchange-filters {
  display: flex; gap: .375rem;
  padding: .875rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  flex-wrap: wrap;
}
.exchange-filter-pill {
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: default;
  background: #fff;
}
.exchange-filter-pill.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.exchange-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .875rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .12s;
}
.exchange-card:first-child { border-radius: var(--r-xl) var(--r-xl) 0 0; }
.exchange-card:last-child { border-bottom: none; border-radius: 0 0 var(--r-xl) var(--r-xl); }
.exchange-card:only-child { border-radius: var(--r-xl); }
.exchange-card:hover { background: var(--surface); }
.exchange-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.exchange-route { font-size: .825rem; font-weight: 600; }
.exchange-meta { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.exchange-price { font-size: .875rem; font-weight: 700; text-align: right; }
.exchange-price-sub { font-size: .68rem; color: var(--muted); text-align: right; }
.bid-btn {
  padding: .35rem .75rem;
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background .15s;
  white-space: nowrap;
}
.bid-btn:hover { background: var(--teal-hover); }

/* Exchange Card Mobile */
@media (max-width: 600px) {
  .exchange-preview {
    border-radius: 12px;
  }
  .exchange-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem;
    padding: 1rem;
  }
  .exchange-card-icon {
    display: none;
  }
  .exchange-card-info {
    grid-column: 1 / -1;
  }
  .exchange-route {
    font-size: 0.95rem;
    font-weight: 600;
  }
  .exchange-meta {
    font-size: 0.75rem;
  }
  .exchange-card-price {
    display: flex;
    flex-direction: column;
  }
  .exchange-price {
    font-size: 1rem;
    text-align: left;
  }
  .exchange-price-sub {
    text-align: left;
    font-size: 0.7rem;
  }
  .bid-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    align-self: center;
  }
}

/* Process flow */
.process-flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 2.5rem; }
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 22px; right: -50%;
  width: 100%; height: 1px;
  background: var(--border);
}
.process-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  position: relative; z-index: 1;
}
.process-title { font-size: .8rem; font-weight: 600; margin-bottom: .3rem; }
.process-text  { font-size: .72rem; color: var(--muted); line-height: 1.6; }

/* Pricing */
.pricing-section { padding-top: 100px; }
.pricing-hero { text-align: center; margin-bottom: 4rem; }
.pricing-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 100px;
  font-size: .8rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.pricing-big { font-family: var(--font-display); font-size: 6rem; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -.05em; }
.pricing-explain { font-size: .9rem; color: var(--text-mid); max-width: 520px; margin: 1rem auto 0; line-height: 1.75; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.popular { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.pricing-card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: .7rem; font-weight: 600;
  padding: .25rem .875rem; border-radius: 100px;
  white-space: nowrap;
}
.pricing-card-name { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.pricing-card-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.pricing-card-price span { font-size: .875rem; font-weight: 400; color: var(--muted); }
.pricing-card-desc { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-card-features { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.pricing-feature { display: flex; align-items: center; gap: .625rem; font-size: .825rem; }
.pricing-check { color: var(--teal); flex-shrink: 0; }
.pricing-check svg { width: 14px; height: 14px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-title { font-size: .775rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.contact-info-text { font-size: .875rem; line-height: 1.65; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.125rem; }
.form-label { font-size: .78rem; font-weight: 500; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .6rem .875rem;
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(16,100,87,.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-result { font-size: .825rem; padding: .625rem .875rem; border-radius: var(--r-sm); margin-bottom: .75rem; }
.form-result.success { background: #dcfce7; color: #166534; }
.form-result.error   { background: #fee2e2; color: #991b1b; }

/* About page */
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
}
.value-number { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--teal); margin-bottom: .5rem; letter-spacing: -.03em; }
.value-title { font-size: .875rem; font-weight: 600; margin-bottom: .5rem; }
.value-text { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.team-name { font-size: .875rem; font-weight: 600; margin-bottom: .25rem; }
.team-role { font-size: .775rem; color: var(--muted); }

/* Stats bar in inner pages */
.stats-bar .stats-grid { grid-template-columns: repeat(4,1fr); }

/* CTA inline section */
.cta-section { padding: 80px 0; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays für Karten */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Fallback: Falls JS nicht lädt, zeige alles */
.no-js .reveal,
.reveal.no-animate {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE - KOMPLETT ÜBERARBEITET
   ============================================================ */

/* TABLET */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-divider { display: none; }
  .split-col { padding: 2rem 1.5rem; }
  .process-flow { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
  /* Navigation */
  .nav-main, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  #site-header { top: 0; }
  
  /* Hero Section */
  .hero-home { 
    padding-top: 100px !important; 
    padding-bottom: 60px !important;
    min-height: auto !important;
  }
  .hero-headline {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    word-wrap: break-word !important;
  }
  .hero-sub {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  .hero-actions { 
    flex-direction: column !important; 
    gap: 0.75rem !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  
  /* Page Hero */
  .page-hero { 
    padding-top: 80px !important; 
    padding-bottom: 32px !important;
  }
  .page-hero h1 {
    font-size: 1.75rem !important;
  }
  
  /* Hero Home */
  .hero-home {
    padding-top: 90px !important;
  }
  
  /* Main Content Padding für Seiten ohne Hero */
  main {
    padding-top: 70px;
  }
  .page-hero + main,
  .hero-home + main,
  .stats-bar + main {
    padding-top: 0;
  }
  
  /* Sections */
  .section { padding: 48px 0 !important; }
  .section-sm { padding: 32px 0 !important; }
  
  /* Container */
  .container { padding: 0 1rem !important; }
  .container-wide { padding: 0 1rem !important; }
  
  /* Grids */
  .grid-2 { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .grid-3 { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  
  /* Stats */
  .stats-grid { 
    grid-template-columns: 1fr 1fr !important; 
    gap: 1rem !important;
  }
  .stat-number {
    font-size: 1.75rem !important;
  }
  .stat-label {
    font-size: 0.75rem !important;
  }
  
  /* Steps */
  .steps-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .step-card {
    padding: 1.5rem !important;
  }
  
  /* Features */
  .features-header { grid-template-columns: 1fr !important; }
  .feature-cards { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .feature-card {
    padding: 1.25rem !important;
  }
  
  /* Testimonials */
  .testimonial-cards { grid-template-columns: 1fr !important; }
  
  /* FAQ */
  .faq-grid { grid-template-columns: 1fr !important; }
  
  /* CTA */
  .cta-grid { grid-template-columns: 1fr !important; text-align: center !important; }
  .cta-section .btn { width: 100% !important; justify-content: center !important; }
  
  /* Footer */
  #site-footer {
    margin: 0 !important;
  }
  .footer-inner {
    border-radius: 0 !important;
    padding: 3rem 0 2rem !important;
  }
  .footer-grid { 
    grid-template-columns: 1fr !important; 
    gap: 0 !important; 
  }
  .footer-brand {
    text-align: left !important;
    margin-bottom: 2.5rem !important;
    padding-bottom: 2rem !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }
  .footer-brand-text {
    max-width: 100% !important;
  }
  .footer-col { 
    text-align: left !important;
    margin-bottom: 2rem !important;
  }
  .footer-col:last-child {
    margin-bottom: 0 !important;
  }
  .footer-col-title {
    margin-top: 0 !important;
  }
  .footer-col-contact {
    margin-top: 0.5rem !important;
  }
  .footer-bottom { 
    flex-direction: column !important; 
    gap: 1.5rem !important; 
    text-align: center !important;
    align-items: center !important;
    padding-top: 2rem !important;
    margin-top: 1rem !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
  }
  .footer-legal {
    order: 2 !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
  }
  .footer-copy {
    order: 3 !important;
  }
  .footer-socials {
    order: 1 !important;
  }
  
  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr !important; }
  
  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }
  
  /* Process Flow */
  .process-flow { grid-template-columns: 1fr !important; gap: 1rem !important; }
  
  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  
  /* About Values */
  .about-values { grid-template-columns: 1fr !important; }
  
  /* Typography Mobile */
  h1 { font-size: 1.75rem !important; line-height: 1.2 !important; }
  h2 { font-size: 1.5rem !important; line-height: 1.25 !important; }
  h3 { font-size: 1.25rem !important; }
  h4 { font-size: 1.1rem !important; }
  
  /* Section Headers */
  .section-eyebrow { font-size: 0.75rem !important; }
  .section-title { font-size: 1.5rem !important; margin-bottom: 0.75rem !important; }
  .section-desc { font-size: 0.95rem !important; }
  
  /* Split Section */
  .split-col {
    padding: 2rem 1rem !important;
  }
  .split-col h2 {
    font-size: 1.5rem !important;
  }
  
  /* Problem Section */
  .problem-grid { grid-template-columns: 1fr !important; }
  
  /* Social Proof */
  .social-proof { 
    flex-direction: column !important; 
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  
  /* Cards allgemein */
  .card {
    padding: 1.25rem !important;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
  }
  .btn-lg {
    padding: 0.875rem 1.5rem !important;
  }
  
  /* Marquee */
  .marquee-section {
    padding: 1rem 0 !important;
  }
  
  /* Integrations */
  .integrations-logos {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  
  /* Exchange Preview Mobile */
  .exchange-preview {
    border-radius: 12px !important;
  }
  .exchange-card {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    padding: 0.75rem !important;
  }
  .exchange-card-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .exchange-route {
    font-size: 0.8rem !important;
  }
  .exchange-meta {
    font-size: 0.7rem !important;
    width: 100% !important;
  }
  .exchange-price {
    font-size: 0.85rem !important;
  }
  .bid-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.75rem !important;
  }
  
  /* Process Steps Mobile */
  .process-step-num {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  .process-step h3 {
    font-size: 1rem !important;
  }
  .process-step p {
    font-size: 0.85rem !important;
  }
  
  /* CTA Section Text sichtbar */
  .cta-section {
    padding: 3rem 0 !important;
  }
  .cta-title {
    font-size: 1.5rem !important;
    color: #fff !important;
  }
  .cta-sub {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.7) !important;
  }
  .cta-note {
    color: rgba(255,255,255,0.6) !important;
  }
  .cta-right {
    align-items: center !important;
    width: 100% !important;
  }
  .cta-right .btn {
    width: 100% !important;
  }
  
  /* Buttons in Hero */
  .hero-actions,
  .page-hero .flex {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .hero-actions .btn,
  .page-hero .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .container { padding: 0 0.875rem !important; }
  
  .hero-headline {
    font-size: 1.625rem !important;
  }
  
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.25rem !important; }
  
  .stats-grid { 
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .stat-number {
    font-size: 1.5rem !important;
  }
  
  .grid-4 { grid-template-columns: 1fr !important; }
  
  .team-grid { grid-template-columns: 1fr !important; }
  
  .form-row { grid-template-columns: 1fr !important; }
  
  .integrations-logos {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ============================================================
   MOBILE FIX - Alle Sektionen
   ============================================================ */
@media (max-width: 768px) {
  /* Route Visual verstecken auf Mobile */
  .route-visual,
  .problem-visual,
  .route-visual-container {
    display: none !important;
  }
  
  /* Problem Grid - eine Spalte */
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Problem Items */
  .problem-list {
    gap: 0.75rem !important;
  }
  .problem-item {
    padding: 1rem !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .problem-item-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .problem-item-title {
    font-size: 0.9rem !important;
  }
  .problem-item-text {
    font-size: 0.8rem !important;
  }
  
  /* Stats Bar */
  .stats-bar {
    padding: 1.5rem 0 !important;
  }
  .stat-item {
    padding: 0.5rem !important;
  }
  
  /* Steps Cards */
  .step-card {
    padding: 1.25rem !important;
  }
  .step-number {
    font-size: 2.5rem !important;
    top: 0.75rem !important;
    right: 1rem !important;
  }
  .step-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .step-title {
    font-size: 1rem !important;
  }
  .step-desc {
    font-size: 0.85rem !important;
  }
  
  /* Feature Cards */
  .feature-card {
    padding: 1.25rem !important;
  }
  .feature-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .feature-title {
    font-size: 1rem !important;
  }
  .feature-desc {
    font-size: 0.85rem !important;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem !important;
  }
  .testimonial-text {
    font-size: 0.9rem !important;
  }
  
  /* CTA Section */
  .cta-box {
    padding: 2rem 1.25rem !important;
    text-align: center !important;
  }
  .cta-box h2 {
    font-size: 1.35rem !important;
  }
  .cta-box p {
    font-size: 0.9rem !important;
  }
  
  /* FAQ */
  .faq-item {
    padding: 1rem !important;
  }
  .faq-question {
    font-size: 0.95rem !important;
  }
  .faq-answer {
    font-size: 0.85rem !important;
  }
  
  /* Split Section */
  .split-section {
    padding: 0 !important;
  }
  .split-grid {
    grid-template-columns: 1fr !important;
  }
  .split-col {
    padding: 2rem 1rem !important;
  }
  .split-col h2 {
    font-size: 1.25rem !important;
  }
  
  /* Integrations */
  .integration-card {
    padding: 1rem !important;
  }
  
  /* General overflow fix */
  body {
    overflow-x: hidden !important;
  }
  .container,
  .container-wide,
  section {
    overflow-x: hidden !important;
  }
  
  /* Display Typography fix */
  .display-lg,
  .display-md,
  .display-sm {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Process Flow */
  .process-flow {
    grid-template-columns: 1fr !important;
  }
  .process-step {
    padding: 1rem !important;
  }
  
  /* Labels */
  .label {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.6rem !important;
  }
}

/* ============================================================
   HIDE ALL OTHER FOOTERS - Nur #site-footer anzeigen
   ============================================================ */
footer:not(#site-footer),
.footer:not(#site-footer),
.site-footer:not(#site-footer),
.woocommerce-footer,
.storefront-footer,
#colophon:not(#site-footer),
.footer-widgets,
.footer-widget-area,
.secondary-footer,
.below-footer,
.sub-footer,
.bottom-footer,
.footer-bottom-area,
.footer-container:not(#site-footer *),
div[class*="footer"]:not(#site-footer):not(#site-footer *):not(.footer-grid):not(.footer-col):not(.footer-brand):not(.footer-links):not(.footer-link):not(.footer-logo):not(.footer-newsletter):not(.footer-bottom):not(.footer-copy):not(.footer-socials):not(.footer-social):not(.footer-col-title):not(.footer-brand-text):not(.footer-nl-label):not(.footer-nl-btn):not(.footer-input):not(.footer-newsletter-wrap) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Unser Footer bleibt sichtbar */
#site-footer,
#site-footer * {
  display: revert;
  visibility: visible !important;
  opacity: 1 !important;
}
#site-footer {
  display: block !important;
}
