/* Seitenspezifische Styles für /business
 * Ausgelagert am 2026-07-28 aus pages/business.php (dort waren es 1.071 Zeilen
 * im <style>-Block). Muster wie css/pages/booking.css, gaming.css, shop.css …
 * WICHTIG: Diese Datei MUSS nach components.css geladen werden — mehrere
 * Selektoren (u.a. .form-group, .container, .hero) existieren dort auch und
 * die seitenspezifische Fassung muss gewinnen.
 */

/* Safari-Fix: overflow-x:hidden auf html/body (aus style.css) verursacht
   in WebKit einen Bug, bei dem die scrollbare Höhe falsch berechnet wird
   und der untere Seitenbereich abgeschnitten wird. */
html, body {
  overflow-x: clip !important;  /* clip statt hidden — verhindert horizontales Scrollen ohne Scroll-Bug */
}

/* Universal-Reset NUR innerhalb der Business-Page — Footer + Header bleiben unberührt */
.biz-page, .biz-page *, .biz-page *::before, .biz-page *::after { box-sizing: border-box; }
.biz-page h1, .biz-page h2, .biz-page h3, .biz-page h4, .biz-page h5, .biz-page h6,
.biz-page p, .biz-page ul, .biz-page ol, .biz-page li, .biz-page figure { margin: 0; padding: 0; }
.biz-page ul, .biz-page ol { list-style: none; }

:root {
/* Nur was style.css NICHT hat. Die übrigen 26 Tokens (--primary, --secondary,
   Radien, Schatten …) waren wertgleiche Kopien und sind entfernt — sonst wirkt
   eine zentrale Farbänderung in style.css auf dieser Seite nicht. */
  /* 1:1 aus pme-mobil.de übernommen */
  --ff-head: 'Poppins', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

.biz-page {
  font-family: var(--ff-body);
  background: transparent; /* Canvas-Netzwerk im Hintergrund sichtbar */
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
}
body { background: var(--bg); }

/* Animiertes Netzwerk-Canvas im Hintergrund */
#bizBgCanvas {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.biz-page section, .biz-page .container { position: relative; }
@media (prefers-reduced-motion: reduce) {
  #bizBgCanvas { display: none; }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px; width: auto; display: block;
}
.nav-logo-badge {
  background: var(--primary); color: white;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: var(--radius-sm); text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .active { color: var(--primary); font-weight: 600; }

.nav-cta {
  background: var(--primary); color: white; border: none; cursor: pointer;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-md);
  font-family: var(--ff-body); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5rem 0; }

/* ─── HERO ─── */
.hero {
  /* style.css erzwingt min-height:100vh — gedacht für die Startseite mit
     Vollbild-Slideshow. Hier ist der Hero eine Karte von 595px Höhe; 100vh
     erzeugte bis zu 630px Leerraum und schob die ganze Seite nach unten. */
  min-height: 0;
  padding: 7rem 2rem 4rem;
}
.hero-card {
  max-width: 1200px; margin: 0 auto;
  background: var(--secondary);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  color: white;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
  box-shadow: var(--shadow-xl);
}
.hero-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(227,6,19,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(37,99,235,0.06) 0%, transparent 50%);
}
.hero-inner { position: relative; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: #7AA5F0; padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-blue); box-shadow: 0 0 8px var(--accent-blue);
}

h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: white;
}
h1 em { font-style: normal; color: var(--primary); }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 520px; margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--primary); color: white; border: none; cursor: pointer;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all var(--duration) var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all var(--duration) var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* Light ghost button (auf weißem BG) */
.btn-ghost-light {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border); cursor: pointer;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-md);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all var(--duration) var(--ease);
}
.btn-ghost-light:hover { border-color: var(--primary); color: var(--primary); }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem;
}
.badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: var(--radius-full);
}
.badge-check { color: var(--success); font-size: 0.85rem; font-weight: 700; }

/* Hero Card Right */
.hero-stats-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--text-primary);
  position: relative;
  box-shadow: var(--shadow-xl);
}
.hero-stats-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.25rem;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem;
}
.hero-stat {
  background: var(--surface);
  border-radius: var(--radius-md); padding: 1rem;
}
.hero-stat-val {
  font-family: var(--ff-head); font-size: 1.6rem; font-weight: 800;
  color: var(--text-primary);
}
.hero-stat-val span { color: var(--primary); }
.hero-stat-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.partner-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0.9rem 1rem;
  background: var(--surface); border-radius: var(--radius-md);
}
.partner-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.partner-text { font-size: 0.82rem; color: var(--text-secondary); }
.partner-text strong { color: var(--text-primary); font-weight: 600; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 2.5rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; white-space: nowrap;
}
.trust-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

/* ─── SECTION HELPERS ─── */
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--ff-head); font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 0.75rem; color: var(--text-primary);
}
.section-sub { color: var(--text-secondary); font-size: 1.05rem; max-width: 640px; }

/* ─── SERVICES ─── */
.services { background: var(--surface); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: rgba(227,6,19,0.3); }

.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--text-primary);
}
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── TARGETS ─── */
.targets-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.target-card {
  position: relative;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  text-align: left;
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.9rem;
  overflow: hidden;
  cursor: default;
}
.target-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.target-card:hover {
  border-color: rgba(227,6,19,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.target-card:hover::after { transform: scaleX(1); }
.target-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.target-card-title {
  font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary); line-height: 1.3;
}
.target-card-sub {
  font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
  margin-top: -0.3rem;
}

/* ─── KUNDENPORTAL ─── */
.portal-section { background: var(--surface); }

.portal-benefits-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2.5rem 0 3rem;
}
.portal-benefit {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.pb-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pb-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.pb-text span { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.portal-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

.portal-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.1); color: var(--success);
  padding: 5px 12px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.portal-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.portal-left h3 {
  font-family: var(--ff-head); font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.portal-left h3 em { font-style: normal; color: var(--primary); }
.portal-left > p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; }

.portal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
  align-items: stretch;
}
@media (max-width: 720px) {
  .portal-features { grid-template-columns: 1fr; }
}
.portal-feature {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  height: 100%;
  transition: all var(--duration) var(--ease);
}
.portal-feature:hover { border-color: rgba(227,6,19,0.3); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.portal-feature-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.portal-feature-text { display: flex; flex-direction: column; justify-content: center; }
.portal-feature-text h4 { font-size: 0.925rem; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); line-height: 1.3; }
.portal-feature-text p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Portal Mockups */
.portal-mockups-wrap {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 20rem;
}
@media (max-width: 960px) {
  .portal-mockups-wrap { margin-top: 0; }
}

.portal-mockup {
  background: var(--secondary); border-radius: var(--radius-xl);
  overflow: hidden; flex: 1;
  box-shadow: var(--shadow-lg);
}
.pm-topbar {
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.pm-topbar-left { display: flex; align-items: center; gap: 6px; }
.pm-dot { width: 9px; height: 9px; border-radius: 50%; }
.pm-dot.red { background: #ff5f57; }
.pm-dot.yellow { background: #febc2e; }
.pm-dot.green { background: #28c840; }
.pm-topbar-title { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-left: 6px; }
.pm-topbar-badge {
  font-size: 0.62rem; background: rgba(227,6,19,0.2); color: #ff8a93;
  padding: 2px 8px; border-radius: var(--radius-full);
  font-weight: 600; letter-spacing: 0.05em;
}

.pm-body { padding: 1.1rem; color: white; }
.pm-greeting { margin-bottom: 1rem; }
.pm-greeting-text { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.pm-greeting-name { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 700; }

.pm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.pm-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 0.7rem; text-align: center;
}
.pm-stat-val {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: white; line-height: 1;
}
.pm-stat-val.red { color: var(--primary); }
.pm-stat-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.5); margin-top: 3px; }

.pm-section-title {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 0.5rem;
}

.pm-contracts { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.pm-contract {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 0.65rem 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.pm-contract-icon { font-size: 0.95rem; flex-shrink: 0; }
.pm-contract-info { flex: 1; min-width: 0; }
.pm-contract-name { font-size: 0.74rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-contract-detail { font-size: 0.62rem; color: rgba(255,255,255,0.5); }
.pm-contract-price { font-size: 0.75rem; font-weight: 600; color: white; flex-shrink: 0; }
.pm-status {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 2px 6px; border-radius: var(--radius-full); flex-shrink: 0;
}
.pm-status.aktiv { background: rgba(16,185,129,0.15); color: #5ce5b8; }
.pm-status.laeuft-aus { background: rgba(245,158,11,0.15); color: #fbc56d; }

.pm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.pm-action-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 0.55rem;
  font-size: 0.68rem; color: rgba(255,255,255,0.8); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.pm-action-btn.primary-action {
  background: rgba(227,6,19,0.15); border-color: rgba(227,6,19,0.3); color: #ff8a93;
}

/* Phone Mockup */
.phone-mockup {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  flex-shrink: 0; width: 190px;
}
.phone-frame {
  width: 190px; background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column;
  max-height: 420px;
}
.rp-statusbar {
  background: #fff; display: flex; justify-content: space-between;
  padding: 6px 12px 2px; font-size: 0.6rem; color: #333; font-weight: 600;
}
.rp-header {
  background: #fff; display: flex; align-items: center;
  justify-content: space-between; padding: 4px 10px 6px;
  border-bottom: 1px solid #eee;
}
.rp-logo-wrap { display: flex; align-items: center; gap: 4px; }
.rp-logo-icon { font-size: 0.9rem; }
.rp-logo-text { font-family: var(--ff-head); font-size: 0.65rem; font-weight: 800; color: #333; }
.rp-logo-text span { color: var(--primary); }
.rp-header-right { display: flex; align-items: center; gap: 5px; }
.rp-user-pill {
  display: flex; align-items: center; gap: 3px;
  background: #f3f4f6; border-radius: var(--radius-full); padding: 2px 7px;
  font-size: 0.55rem; color: #333;
}
.rp-user-name { font-weight: 600; }
.rp-icon-btn { font-size: 0.75rem; color: #666; }

.rp-tabs {
  background: #fff; display: flex;
  border-bottom: 1px solid #eee; overflow-x: auto;
  scrollbar-width: none;
}
.rp-tabs::-webkit-scrollbar { display: none; }
.rp-tab {
  display: flex; flex-direction: column; align-items: center;
  gap: 1px; padding: 5px 6px; position: relative; flex-shrink: 0;
}
.rp-tab-icon { font-size: 0.75rem; }
.rp-tab span { font-size: 0.45rem; color: #999; white-space: nowrap; }
.rp-tab.active span { color: var(--primary); font-weight: 700; }
.rp-tab-line {
  position: absolute; bottom: 0; left: 4px; right: 4px; height: 2px;
  background: var(--primary); border-radius: 2px 2px 0 0;
}

.rp-content {
  flex: 1; overflow-y: auto; background: #f5f5f7; padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
  scrollbar-width: none;
}
.rp-content::-webkit-scrollbar { display: none; }

.rp-ansp-card { background: #fff; border-radius: 10px; padding: 8px; border: 1px solid #eee; }
.rp-ansp-label {
  font-size: 0.45rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--primary); margin-bottom: 5px;
  display: flex; align-items: center; gap: 4px;
}
.rp-ansp-label::before { content: '👤'; font-size: 0.6rem; }
.rp-ansp-body { display: flex; gap: 6px; align-items: flex-start; margin-bottom: 6px; }
.rp-ansp-photo {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  object-position: top; flex-shrink: 0; border: 1px solid #eee;
}
.rp-ansp-name { font-size: 0.65rem; font-weight: 700; color: #111; }
.rp-ansp-role { font-size: 0.5rem; color: #777; }
.rp-ansp-addr { font-size: 0.48rem; color: #999; }
.rp-ansp-btns { display: flex; gap: 4px; margin-bottom: 4px; }
.rp-btn-call { flex: 1; background: var(--primary); color: white; text-align: center; padding: 4px; border-radius: 5px; font-size: 0.5rem; font-weight: 600; }
.rp-btn-wa { flex: 1; background: #25d366; color: white; text-align: center; padding: 4px; border-radius: 5px; font-size: 0.5rem; font-weight: 600; }
.rp-ansp-email { text-align: center; font-size: 0.5rem; color: #555; border: 1px solid #eee; border-radius: 5px; padding: 3px; margin-bottom: 6px; }
.rp-kd-label { font-size: 0.45rem; color: #999; letter-spacing: 0.05em; font-weight: 600; }
.rp-kd-num { font-size: 0.65rem; font-weight: 800; color: var(--primary); }

.rp-warn-banner {
  background: #fffbeb; border: 1px solid #fbbf24;
  border-radius: 8px; padding: 7px 8px;
  display: flex; flex-direction: column; gap: 5px;
}
.rp-warn-text { font-size: 0.52rem; color: #92400e; line-height: 1.4; }
.rp-warn-text strong { color: #78350f; }
.rp-warn-btn { background: var(--warning); color: #fff; text-align: center; padding: 4px; border-radius: 5px; font-size: 0.52rem; font-weight: 700; }

.rp-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.rp-stat-box { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 6px; }
.rp-stat-label { font-size: 0.42rem; color: #999; font-weight: 600; margin-bottom: 2px; }
.rp-stat-val { font-size: 0.7rem; font-weight: 800; color: #111; }
.rp-stat-val span { font-size: 0.42rem; color: #999; font-weight: 400; display: block; }
.rp-stat-val.big { font-size: 0.6rem; }

.rp-contract-tabs { display: flex; gap: 4px; }
.rp-ctab {
  flex: 1; background: #fff; border: 1px solid #eee;
  border-radius: 7px; padding: 5px 6px; font-size: 0.48rem;
  color: #999; text-align: center; display: flex; align-items: center;
  justify-content: center; gap: 3px;
}
.rp-ctab.active { background: #fff5f5; border-color: rgba(227,6,19,0.3); color: var(--primary); font-weight: 700; }
.rp-ctab-badge { background: var(--primary); color: white; border-radius: var(--radius-full); font-size: 0.42rem; padding: 1px 4px; font-weight: 700; }
.rp-ctab:not(.active) .rp-ctab-badge { background: #ccc; }

.rp-contract-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 8px; }
.rp-contract-head { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.rp-vf-logo { font-size: 0.55rem; font-weight: 700; color: #111; }
.rp-biz-tag { background: #f3f4f6; color: #555; font-size: 0.42rem; font-weight: 600; padding: 1px 5px; border-radius: 4px; }
.rp-aktiv-tag { background: #dcfce7; color: #166534; font-size: 0.42rem; font-weight: 700; padding: 1px 5px; border-radius: 4px; margin-left: auto; }
.rp-contract-name { font-size: 0.62rem; font-weight: 700; color: #111; margin-bottom: 2px; }
.rp-contract-phone { font-size: 0.5rem; color: var(--primary); margin-bottom: 6px; }
.rp-contract-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 7px; border-top: 1px solid #f0f0f0; padding-top: 5px; }
.rp-cg-item.full { grid-column: 1 / -1; }
.rp-cg-label { font-size: 0.4rem; color: #aaa; font-weight: 600; }
.rp-cg-val { font-size: 0.55rem; font-weight: 600; color: #111; }
.rp-cg-val.bold { font-size: 0.62rem; font-weight: 800; }
.rp-expired { background: #fef3c7; color: #d97706; font-size: 0.4rem; padding: 1px 4px; border-radius: 3px; font-weight: 600; }
.rp-contract-extend { background: var(--primary); color: white; text-align: center; padding: 5px; border-radius: 6px; font-size: 0.52rem; font-weight: 700; }

.rp-bottom-nav { background: #fff; border-top: 1px solid #eee; display: flex; justify-content: space-around; padding: 5px 4px; }
.rp-bnav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 0.8rem; color: #888; }
.rp-bnav-item span { font-size: 0.42rem; color: #999; }
.phone-label { font-size: 0.72rem; color: var(--text-muted); text-align: center; line-height: 1.4; }

/* ─── KOSTENCHECK ─── */
/* Aufräumen 2026-07-28: Die Karte war 800px breit und linksbündig ohne auto-Margin,
   während Überschrift und alle anderen Sektionskarten 1136px breit sind — daher das
   Loch rechts. Jetzt volle Containerbreite wie .ausd-wrapper / .services-grid /
   .usps-grid / .portal-wrapper. Neue Karten bitte genauso: keine eigene max-width. */
.kostencheck-section { background: white; }
.kcheck-wrapper {
  margin-top: 3rem;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kcheck-body { padding: 2rem 2.5rem 2.5rem; }

/* Schritt 1 hat genau drei Felder → eine saubere Reihe */
.kcheck-fields {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
/* Mini-Formular hat vier Felder → 2×2 statt 3+1 */
.kcheck-fields--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── Gemeinsame Formular-Basis für Kostencheck UND Anfrageformular ──
   Vorher hatte jedes Formular eigene Kopf-, Label- und Feldstile: roter Gradient
   gegen dunklen Kopf, Labels einmal in Großbuchstaben einmal nicht, und Selects
   ohne appearance:none — die rendert das Betriebssystem, wodurch sie deutlich
   flacher und anders aussahen als die Textfelder direkt daneben.
   Alles Neue in Formularen bitte hier ergänzen, nicht pro Formular duplizieren. */
.kcheck-header, .form-header {
  background: var(--secondary); color: white;
  padding: 1.75rem 2.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.kcheck-header-icon, .form-header-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(227,6,19,0.22); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
/* color explizit: style.css setzt eine globale Heading-Farbe (var(--secondary)),
   die das color:white des Kopfes überschreibt — der Titel war deshalb unsichtbar
   (vorher dunkel auf Rot, jetzt wäre er dunkel auf Dunkelblau). Nicht entfernen. */
.kcheck-header h3, .form-header h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; color: #fff; }
.kcheck-header p, .form-header p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 2px; }

.field-group, .form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
/* .group-label sieht aus wie ein Label, ist aber keins: Beschriftungen von
   Checkbox-/Radio-Gruppen dürfen kein <label> sein, weil ein <label> genau ein
   Feld referenzieren muss. Die Gruppe trägt stattdessen role="group" +
   aria-labelledby auf diese ID. */
/* Nur direkte Kinder: .checkbox-item und .radio-item sind ebenfalls <label>
   und liegen in .form-group — die dürfen diese Feldbeschriftungs-Stile nicht erben. */
.field-group > label, .form-group > label, .form-group > .group-label {
  display: block;
  font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.01em;
}
.field-group input, .field-group select,
.form-group input, .form-group select, .form-group textarea {
  background-color: white; border: 1px solid var(--border);
  color: var(--text-primary); padding: 0.75rem 1rem; border-radius: var(--radius-md);
  font-family: var(--ff-body); font-size: 0.95rem; line-height: 1.4;
  outline: none; transition: all var(--duration) var(--ease); width: 100%;
}
.field-group input:focus, .field-group select:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
/* Selects wie Textfelder aussehen lassen — gleicher Pfeil wie in components.css */
.field-group select, .form-group select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 42px;
}
/* Spinner am Zahlenfeld weg — passt sonst nicht zu den anderen Feldern */
.field-group input[type="number"], .form-group input[type="number"] { appearance: textfield; -webkit-appearance: textfield; }
.field-group input[type="number"]::-webkit-outer-spin-button,
.field-group input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.sim-slider-wrap { display: flex; flex-direction: column; gap: 10px; grid-column: 1 / -1; }
.sim-slider-row { display: flex; align-items: center; gap: 1rem; }
.sim-slider {
  flex: 1; -webkit-appearance: none; height: 6px;
  background: linear-gradient(to right, var(--primary) 0%, var(--surface-alt) 0%);
  border-radius: 3px; outline: none;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer; border: 3px solid white;
  box-shadow: var(--shadow-md);
}
.sim-count {
  font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800;
  color: var(--text-primary); min-width: 70px; text-align: right;
}
.sim-count span { font-size: 0.75rem; color: var(--text-muted); font-family: var(--ff-body); font-weight: 500; }

/* Vorher nur opacity:0 — der Block blieb im Fluss und hat unter dem Button rund
   380px leere weiße Fläche reserviert. Jetzt display:none bis er gebraucht wird. */
.kcheck-result {
  display: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.kcheck-result.show { display: block; opacity: 1; transform: translateY(0); }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.result-row:last-of-type { border-bottom: none; }
.result-row .lbl { color: var(--text-secondary); }
.result-row .val { font-weight: 600; color: var(--text-primary); }

.result-saving {
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-md); padding: 1.25rem; margin: 1rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.saving-label { font-size: 0.9rem; color: var(--text-secondary); }
.saving-month { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--success); }
.saving-year { font-size: 0.78rem; color: var(--text-muted); text-align: right; }

.kcheck-mini-form { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1rem; display: none; }
.kcheck-mini-form.show { display: block; }
.kcheck-mini-form h4 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }

.success-box {
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; display: none;
}
.success-box.show { display: block; }
.success-box .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.success-box h4 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.success-box p { font-size: 0.9rem; color: var(--text-secondary); }

/* ─── USPs ─── */
.usps { background: var(--surface); }
.usps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.usp-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
}
.usp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: rgba(227,6,19,0.3); }
.usp-num {
  font-family: var(--ff-head); font-size: 3.5rem; font-weight: 800;
  color: var(--primary-light); position: absolute; top: 0.5rem; right: 1.25rem;
  line-height: 1;
}
.usp-card h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); position: relative; }
.usp-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; position: relative; }

/* ─── AUSSENDIENST ─── */
.aussendienst { background: white; }
/* ACHTUNG Klassennamen: NICHT auf "ad-*" zurückbenennen!
   Ursache des Bugs "Box fehlt in Safari" (2026-04 und 2026-07): EasyList enthält
   GENERISCHE, domain-unabhängige Regeln — u.a. ##.ad-wrapper, ##.ad-right,
   ##.ad-tag, ##.ad-location. Jeder Content-Blocker setzt Elemente mit diesen
   Klassen auf display:none, deshalb hatte die Box 0px Höhe. Chrome ohne Blocker
   zeigte sie, Safari mit Blocker nicht — es war NIE ein WebKit-Rendering-Bug.
   Prefix ist jetzt "ausd-" (Außendienst). Neue Klassen nie ad-, banner-, sponsor-,
   promo- oder newsletter-artig benennen. */
.ausd-wrapper {
  margin-top: 3rem;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
/* Kopfbereich über die volle Breite */
.ausd-top { padding: 3rem; border-bottom: 1px solid var(--border); }
/* Drei Ansprechpartner nebeneinander */
.ausd-people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--surface);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.ausd-person {
  min-width: 0;
  padding: 2.25rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid var(--border);
}
.ausd-person:last-child { border-right: none; }
.ausd-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary-light); color: var(--primary);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
/* unsichtbarer Platzhalter, damit die drei Fotos auf einer Höhe sitzen */
.ausd-badge--ghost { visibility: hidden; }

.ausd-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ausd-top h3 {
  font-family: var(--ff-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.ausd-top h3 em { font-style: normal; color: var(--primary); }
.ausd-top > p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 62ch; }

/* Kopfbereich ist jetzt volle Breite → Vorteile mehrspaltig statt als lange Liste */
.ausd-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem 2rem; margin-bottom: 2rem;
}
.ausd-feature { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-secondary); }
.ausd-feature-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
}
.ausd-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ausd-photo-container { position: relative; width: 120px; height: 120px; margin-bottom: 1.5rem; }
.ausd-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 4px solid white; box-shadow: var(--shadow-lg); display: block;
}
.ausd-photo-fallback {
  display: none;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--surface-alt); border: 4px solid white;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.ausd-photo-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: rgba(227,6,19,0.3);
  animation: spin 6s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ausd-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 800; margin-bottom: 3px; color: var(--text-primary); }
.ausd-role { font-size: 0.7rem; color: var(--primary); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.ausd-location { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.ausd-contact-cards { width: 100%; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.25rem; }
.ausd-contact-card {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.65rem 0.9rem;
  text-decoration: none; color: var(--text-primary); font-size: 0.85rem;
  transition: all var(--duration) var(--ease);
}
.ausd-contact-card:hover { border-color: var(--primary); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.ausd-contact-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.ausd-contact-info { flex: 1; text-align: left; }
.ausd-contact-info small { display: block; font-size: 0.68rem; color: var(--text-muted); }
.ausd-contact-info span { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.ausd-contact-arrow { color: var(--text-muted); font-size: 0.8rem; margin-left: auto; }

.ausd-availability {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--text-muted);
  border-top: 1px solid var(--border); padding-top: 1rem; width: 100%;
  justify-content: center;
}
.ausd-avail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 6px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ─── LEAD FORM ─── */
/* Aufräumen 2026-07-28: war 860px und zentriert, die Überschrift daneben aber
   linksbündig auf 1136px — die Kanten lagen 138px auseinander. Jetzt volle
   Containerbreite, Kopf- und Feldstile kommen aus der gemeinsamen Basis oben. */
.anfrage-section { background: var(--surface); }
.form-wrapper {
  margin-top: 3rem;
  background: white; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.form-body { padding: 2.5rem; }

.form-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group, .radio-group { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.checkbox-item, .radio-item {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: white; border: 2px solid var(--border);
  padding: 0.75rem 1.1rem; border-radius: 999px;
  font-size: 0.9rem; color: var(--text-primary); font-weight: 600;
  transition: all 0.18s cubic-bezier(.2,.8,.2,1);
  user-select: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  position: relative;
}
.checkbox-item:hover, .radio-item:hover {
  border-color: rgba(227,6,19,0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227,6,19,0.08);
}
.checkbox-item:has(input:checked), .radio-item:has(input:checked) {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #c70510 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(227,6,19,0.25);
  transform: translateY(-1px);
}
.checkbox-item input, .radio-item input { display: none; }

.checkbox-dot {
  width: 20px; height: 20px; border-radius: 6px; border: 2px solid #cbd5e1;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: transparent; background: #fff;
  flex-shrink: 0; transition: all 0.18s;
  font-weight: 900;
}
.checkbox-item:has(input:checked) .checkbox-dot {
  background: white; border-color: white; color: var(--primary);
}

.radio-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #cbd5e1; background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.18s;
  position: relative;
}
.radio-item:has(input:checked) .radio-dot {
  border-color: white; background: white;
}
.radio-item:has(input:checked) .radio-dot::after {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--primary);
}

.form-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.privacy-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary); cursor: pointer; margin-bottom: 1.5rem;
}
.privacy-row input { margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }
.privacy-row a { color: var(--primary); text-decoration: none; }
.privacy-row a:hover { text-decoration: underline; }

.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.form-info {
  display: flex; align-items: center; justify-content: center; gap: 1.75rem;
  margin-top: 1.5rem; flex-wrap: wrap;
}
.form-info-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }

/* Biz-CTA Block (vor dem globalen Footer) */
.biz-cta {
  background: var(--secondary);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.biz-cta__inner { max-width: 800px; margin: 0 auto; }
.biz-cta__title { color: #fff; font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
.biz-cta__text { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1rem; line-height: 1.6; }
.biz-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.biz-cta__btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.biz-cta__btn--primary {
  background: var(--primary); color: #fff;
}
.biz-cta__btn--primary:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(227,6,19,0.35);
}
.biz-cta__btn--ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.biz-cta__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
@media (max-width: 640px) {
  .biz-cta { padding: 3rem 1.5rem; }
  .biz-cta__title { font-size: 1.4rem; }
  .biz-cta__btn { width: 100%; text-align: center; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .phone-mockup { display: none; }
  /* Kostencheck von drei auf zwei Spalten, bevor die Felder zu schmal werden */
  .kcheck-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; gap: 2rem; }
  .hero-stats-card { display: none; }
  .form-grid, .kcheck-fields, .kcheck-fields--2 { grid-template-columns: 1fr; }
  .kcheck-header, .form-header { padding: 1.5rem 1.75rem; }
  .kcheck-body { padding: 1.75rem; }
  .usps-grid { grid-template-columns: 1fr; }
  .portal-benefits-row { grid-template-columns: 1fr; }
  .portal-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .ausd-top { padding: 2rem; }
  /* ab hier zwei Karten pro Reihe, dritte darunter */
  .ausd-people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ausd-person { padding: 2rem 1.25rem; }
  .ausd-person:nth-child(2n) { border-right: none; }
  .ausd-person:not(:last-child) { border-bottom: 1px solid var(--border); }
  nav .nav-links { display: none; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1rem 3rem; }
  .container { padding: 0 1rem; }
  .form-body, .kcheck-body { padding: 1.5rem; }
  /* auf dem Handy alle drei untereinander */
  .ausd-people { grid-template-columns: 1fr; }
  .ausd-person { border-right: none; }
  .ausd-person:not(:last-child) { border-bottom: 1px solid var(--border); }
  /* Platzhalter-Badge weg — untereinander muss nichts ausgerichtet werden */
  .ausd-badge--ghost { display: none; }
}
