/* Business website – wie Screenshot: Grün–Lila-Gradienten, Orange-CTAs, Teal */
/* Lokale Schriften: Nunito + Assistant (bereits im Projekt) */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/nunito/nunito-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/nunito/nunito-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/nunito/nunito-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/nunito/nunito-latin-800.woff2") format("woff2");
}
@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/assistant/assistant-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Assistant";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/assistant/assistant-latin-700.woff2") format("woff2");
}

:root {
  --business-font-heading: "Nunito", sans-serif;
  --business-font-body: "Assistant", sans-serif;

  /* Gradient-Farben (Teal/Grün → Lila) */
  --business-teal: #0d9488;
  --business-teal-dark: #0f766e;
  --business-green: #10b981;
  --business-green-light: #6ee7b7;
  --business-purple: #7c3aed;
  --business-purple-light: #a78bfa;
  --business-lavender: #c4b5fd;

  /* Hero: kräftiger Gradient Smaragd/Teal → Dunkelblau-Lila (Ziel-Look) */
  --business-hero-start: #059669;
  --business-hero-end: #4c1d95;

  /* Warum-Section: diagonaler Gradient (dunkler) */
  --business-why-start: #0f766e;
  --business-why-end: #5b21b6;

  /* CTAs */
  --business-cta-orange: #ffa500;
  --business-cta-orange-hover: #e59400;
  --business-btn-green: #49AC90;
  --business-btn-green-hover: #3d9377;

  /* Footer Gradient: Teal → Dunkelblau-Grün (ohne Lila) */
  --business-footer-bg: #374151;
  --business-footer-start: #0f766e;
  --business-footer-end: #134e4a;

  /* Text & UI */
  --business-text: #1e293b;
  --business-text-muted: #64748b;
  --business-section-alt: #f1f5f9;
  --business-border: #e2e8f0;

  /* Typography – consolidated heading styles */
  --business-heading-font: "Nunito", sans-serif;
  --business-heading-font-h2: "Nunito", sans-serif;
  --business-heading-h1-size: 3rem;
  --business-heading-h2-size: 2.5rem;
  --business-heading-h3-size: 2rem;
  --business-heading-h2-color: #49ac90;
  --business-heading-color: var(--business-text);
}

/* Skip-Link: nur bei Fokus sichtbar (WCAG 2.4.1 Bypass Blocks) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--business-teal);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.5rem;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Sichtbarer Fokus für alle fokussierbaren Elemente (WCAG 2.4.7 / BFSG) */
#app a:focus-visible,
#app button:focus-visible,
#app .btn:focus-visible,
#app .navbar-toggler:focus-visible,
#app .dropdown-toggle:focus-visible,
#app .btn-close:focus-visible {
  outline: 3px solid var(--business-teal);
  outline-offset: 2px;
}
#app .btn-primary:focus-visible,
#app .btn-portal:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--business-font-body);
  color: var(--business-text);
}

/* Main content: minimum body text size 1rem (footer/header excluded) */
#app main {
  font-size: 1rem;
}

/* Alle Buttons: Border-Radius 0, etwas größer, Nunito */
#app .btn,
#app button {
  border-radius: 0;
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
}
#app .btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.95rem;
}
#app .btn-lg {
  padding: 0.65rem 1.5rem;
  font-size: 1.1rem;
}

/* CTA-Farbe für alle .btn.btn-primary */
#app .btn.btn-primary,
#app .btn-primary,
#app .btn-cta-orange {
  background-color: var(--business-cta-orange);
  border-color: var(--business-cta-orange);
  color: #fff;
}
#app .btn.btn-primary:hover,
#app .btn-primary:hover,
#app .btn-cta-orange:hover {
  background-color: var(--business-cta-orange-hover);
  border-color: var(--business-cta-orange-hover);
  color: #fff;
}
/* Grüner Button nur wo .btn-portal (Zum Vertriebsportal, Zum Vergleich) */
#app .btn-portal {
  background-color: var(--business-btn-green) !important;
  border-color: var(--business-btn-green) !important;
  color: #fff !important;
}
#app .btn-portal:hover {
  background-color: var(--business-btn-green-hover) !important;
  border-color: var(--business-btn-green-hover) !important;
  color: #fff !important;
}
#app .text-primary {
  color: var(--business-teal) !important;
}
#app .btn-outline-primary {
  color: var(--business-teal);
  border-color: var(--business-teal);
}
#app .btn-outline-primary:hover {
  background-color: var(--business-teal);
  border-color: var(--business-teal);
  color: #fff;
}

/* ========== Typography – Headings (consolidated) ========== */
#app h1,
#app h2,
#app h3,
#app h4,
#app h5,
#app h6,
.vp-stat-label {
  hyphens: auto;
}
#app h1,
#app h3,
.card-title,
.navbar-brand {
  font-family: var(--business-heading-font);
  color: var(--business-heading-color);
  font-style: normal;
  font-weight: 500;
}
#app h4,
#app h5,
#app h6 {
  font-family: var(--business-heading-font);
  color: var(--business-heading-color);
  font-style: normal;
  font-weight: 700;
}
#app h1 {
  font-size: var(--business-heading-h1-size);
  line-height: 1.2;
}

/* Pages without hero: h1 in primary color */
#app .business-section h1 {
  color: var(--business-teal);
}
#app h2,
.business-section h2 {
  font-family: var(--business-heading-font-h2);
  font-size: var(--business-heading-h2-size);
  font-weight: 500;
  font-style: normal;
  color: var(--business-heading-h2-color);
}
#app h3 {
  font-size: var(--business-heading-h3-size);
}

/* h3 on white background: use primary color */
#app .business-section h3 {
  color: var(--business-teal);
}

/* Hero: headings white on background */
.business-hero h1,
.business-hero h2 {
  color: #fff;
  font-family: var(--business-heading-font);
}
.business-hero h2 {
  font-family: var(--business-heading-font-h2);
}

/* Dark / gradient sections: headings white */
.business-section.gradient h1,
.business-section.gradient h2,
.business-section.gradient h3,
.business-section.gradient h4,
.business-section.gradient h5,
.business-section.gradient h6 {
  color: #fff !important;
}
.business-section.dark h1,
.business-section.dark h2,
.business-section.dark h3,
.business-section.dark h4,
.business-section.dark h5,
.business-section.dark h6,
.business-section.dark p,
.business-section.dark li,
.business-section.dark .intro {
  color: #fff !important;
}
.business-section.dark a:not(.btn) {
  color: #fff;
}

.business-navbar {
  font-family: var(--business-font-body);
  background: #fff !important;
  border-bottom: 1px solid var(--business-border);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
/* Center nav items and add spacing between them */
.business-navbar .navbar-collapse {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.business-navbar .navbar-nav {
  flex: 1;
  justify-content: center;
  gap: 0.25rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.business-navbar .nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.business-navbar .nav-link {
  color: var(--business-text) !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
.business-navbar .nav-link:hover,
.business-navbar .nav-link:focus {
  color: var(--business-teal) !important;
}
.business-navbar .dropdown-menu {
  border-color: var(--business-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.business-navbar .dropdown-item:hover {
  background-color: var(--business-section-alt);
  color: var(--business-teal);
}
.business-navbar .navbar-brand {
  color: var(--business-teal-dark) !important;
}
.business-navbar .btn-primary {
  font-weight: 600;
}
/* Grüner Pill-Button „Kontakt“ in der Navbar (Ziel-Look) */
.business-navbar .btn-kontakt-pill {
  background-color: var(--business-btn-green) !important;
  border-color: var(--business-btn-green) !important;
  color: #fff !important;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.business-navbar .btn-kontakt-pill:hover {
  background-color: var(--business-btn-green-hover) !important;
  border-color: var(--business-btn-green-hover) !important;
  color: #fff !important;
}
.business-navbar .navbar-brand img {
  height: 36px;
  width: auto;
}
.business-navbar .navbar-brand img.business-logo-header {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
/* Footer: Gradient Teal → Dunkellila */
.business-footer {
  margin-top: auto;
  background: var(--business-footer-bg);
  color: #e2e8f0;
  font-family: var(--business-font-body);
}
.business-footer .row > .col-md-3:first-of-type img {
  height: 24px;
  width: auto;
  max-height: 24px;
}
.business-footer a {
  color: #fff;
  text-decoration: underline;
}
.business-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.business-footer .btn-footer-kontakt,
.business-footer .footer-social-icons a {
  text-decoration: none;
}
.business-footer .btn-footer-kontakt:hover,
.business-footer .footer-social-icons a:hover {
  text-decoration: none;
}
.business-footer h6 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.business-footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.business-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.business-footer .footer-bottom-copy {
  margin: 0;
}
.business-footer .footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.business-footer .footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.business-footer .footer-social-icons a {
  color: #fff;
  opacity: 0.9;
  font-size: 1.25rem;
  line-height: 1;
}
.business-footer .footer-social-icons a:hover {
  opacity: 1;
  color: #fff;
}
.business-footer .btn-footer-kontakt {
  background: var(--business-btn-green);
  border-color: var(--business-btn-green);
  color: #fff;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.business-footer .btn-footer-kontakt:hover {
  background: var(--business-btn-green-hover);
  border-color: var(--business-btn-green-hover);
  color: #fff;
}
.business-footer .btn-newsletter {
  background: var(--business-btn-green);
  border-color: var(--business-btn-green);
  color: #fff;
}
.business-footer .btn-newsletter:hover {
  background: var(--business-btn-green-hover);
  border-color: var(--business-btn-green-hover);
  color: #fff;
}

/* Hero: Hintergrundbild (ersetzt Gradient) */
.business-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40vh;
  color: #fff;
  padding: 5rem 0;
  background: url("/images/business/hero-bg.jpg") center / cover no-repeat;
}
.business-hero .container-lg {
  position: relative;
  z-index: 1;
  text-align: left;
}
.business-hero h1 {
  color: #fff !important;
  margin-bottom: 1.25rem;
  max-width: 20em;
}
.business-hero .lead {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 36em;
  margin-bottom: 1.5rem;
}
/* Hero: Standard Bootstrap btn-outline-light btn-lg (optional Overrides) */
.business-hero .btn-outline-light {
  border-radius: 0;
}
.business-hero h2 {
  margin-bottom: 1rem;
}
/* Sektionen: Standard weiß, bg-light hellgrau, Hero eigenes Bild */
.business-section {
  padding: 4.5rem 0;
  font-family: var(--business-font-body);
  color: var(--business-text);
  font-size: 1.05rem;
  line-height: 1.65;
  background-color: #fff;
}
.business-section h2 {
  margin-bottom: 1.75rem;
}
.business-section h2.business-offer-heading {
  color: var(--business-hero-start) !important;
}
.business-section h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.business-section h4,
.business-section h5 {
  color: var(--business-heading-color);
}
.business-section .text-muted {
  color: var(--business-text-muted) !important;
}
.business-section.bg-light {
  background-color: var(--business-section-alt) !important;
}

/* Unser Angebot: eine Karte mit dezentem Vertikal-Gradient (Grün → Lila) */
.business-offer-card {
  background: linear-gradient(to bottom, rgba(110, 231, 183, 0.12), rgba(167, 139, 250, 0.1));
  border: 1px solid var(--business-border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 42rem;
  margin: 0 auto;
}
.business-offer-card h3 {
  color: var(--business-purple);
}

/* .business-section.gradient: Hintergrundbild, alle Überschriften weiß, Outline-CTA */
.business-section.gradient {
  position: relative;
  background: url("/images/business/section-gradient-bg.png") center / cover no-repeat;
  color: #fff;
  padding: 4.5rem 0;
}
.business-section.gradient h1,
.business-section.gradient h2,
.business-section.gradient h3,
.business-section.gradient h4,
.business-section.gradient h5,
.business-section.gradient h6 {
  color: #fff !important;
}
.business-section.gradient p {
  color: #fff;
}
.business-section.gradient .btn-why-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 600;
}
.business-section.gradient .btn-why-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}
.business-feature {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.business-section.gradient .business-feature {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.business-feature:last-child {
  border-bottom: none;
}
.business-section.bg-light .business-feature {
  border-bottom: 1px solid #e2e8f0;
}
.business-feature h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.business-feature p {
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.95;
}
.business-section.gradient .business-feature p {
  color: #fff;
}

/* Vergleichsrechner: Karten-Grid mit Teal-Header, grüner „Zum Vergleich“-Button */
.business-calc-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--business-border);
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.business-calc-card .calc-card-header {
  background: var(--business-teal-dark);
  color: #fff;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
}
.business-calc-card .calc-card-body {
  padding: 1.25rem;
  flex: 1;
}
.business-calc-card .calc-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.business-calc-card .calc-card-body li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.business-calc-card .calc-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--business-green);
  border-radius: 50%;
}
.business-calc-card .btn-portal {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.business-section .card {
  border: 1px solid var(--business-border);
  box-shadow: none;
  border-radius: 8px;
}
.business-section .card-title {
  color: var(--business-text);
  font-size: 1.1rem;
}

/* ========== Vertriebsportal-Seite (wie Screenshot) ========== */
/* Hero: Label „VERTRIEBSPORTAL“, Button mit weißem Rand + halbtransparentem Grün */
.business-hero .hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
/* Drei Hexagon-Icon-Blöcke (Wachstumsraten, Ausgaben, Wettbewerbsvorteil) */
.vp-hex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.vp-hex-block {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 100%;
  text-align: center;
}
.vp-hex-wrap {
  margin: 0 auto 1rem;
  max-width: 140px;
}
.vp-hex-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.vp-hex-block h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.vp-hex-block p {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Vertriebsportal: Zahlen-Blöcke (große grüne Zahlen) */
.vp-stat-block {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--business-border);
}
@media (min-width: 768px) {
  .vp-stat-block {
    border-bottom: none;
    border-right: 1px solid var(--business-border);
  }
  .vp-stat-block:last-child {
    border-right: none;
  }
}
.vp-stat-block:last-child {
  border-bottom: none;
}
.vp-stat-number {
  font-family: var(--business-heading-font);
  font-size: var(--business-heading-h2-size);
  font-weight: 700;
  font-style: normal;
  color: var(--business-heading-h2-color);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.vp-stat-label {
  font-family: var(--business-heading-font);
  font-size: var(--business-heading-h3-size);
  font-weight: 700;
  font-style: normal;
  color: var(--business-heading-h2-color);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.vp-stat-desc {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Sechs Versicherungssparten: Hexagon-Bilder */
.vp-sparten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .vp-sparten-grid {
    grid-template-columns: 1fr;
  }
}
.vp-sparten-item {
  text-align: center;
}
.vp-sparten-hex {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1rem;
}
.vp-sparten-hex img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.vp-sparten-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.vp-sparten-item p {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Newsletter-Bereich: Button weiß mit grünem Rand/Text */
.vp-newsletter-section {
  padding: 3rem 0;
}
.vp-newsletter-section .btn-newsletter-outline {
  background: #fff;
  color: var(--business-teal);
  border: 2px solid var(--business-teal);
  font-weight: 600;
}
.vp-newsletter-section .btn-newsletter-outline:hover {
  background: var(--business-section-alt);
  color: var(--business-teal-dark);
  border-color: var(--business-teal-dark);
}

/* ========== Versicherer & Assekuradeure Seite ========== */
/* Hero: Outline-Button siehe .business-hero .btn-outline-light */

/* Kooperation: links Hexagon-Grafik, rechts Text */
.va-koop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .va-koop {
    grid-template-columns: 1fr;
  }
}
.va-koop-graphic {
  position: relative;
  max-width: 380px;
}
.va-koop-graphic img {
  width: 100%;
  height: auto;
  display: block;
}
.va-koop-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.va-koop-item {
  margin-bottom: 1.5rem;
}
.va-koop-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.va-koop-item p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Ihre Vorteile: drei Blöcke (Überschrift links, Text rechts) */
.va-benefits-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.va-benefit-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.va-benefit-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .va-benefit-block {
    grid-template-columns: 1fr;
  }
}
.va-benefit-block h3 {
  font-size: 1.1rem;
  margin: 0;
}
.va-benefit-block p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* CTA-Bereich „Sprechen Sie uns an“ */
.va-cta-section {
  background: var(--business-section-alt);
  padding: 3.5rem 1rem;
  text-align: center;
}
.va-cta-section .va-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--business-teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.va-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.va-cta-section p {
  color: var(--business-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.va-cta-section .btn-primary {
  margin-top: 1rem;
}

/* ========== Versicherungsvermittler Seite ========== */
/* Überblick: Laptop links, Liste rechts mit grünen Häkchen */
.vvm-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .vvm-overview {
    grid-template-columns: 1fr;
  }
}
.vvm-overview-image {
  max-width: 100%;
  height: auto;
}
.vvm-overview-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: right;
}
@media (max-width: 768px) {
  .vvm-overview-content h2 {
    text-align: left;
  }
}
.vvm-overview-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vvm-overview-content li {
  padding: 0.4rem 0 0.4rem 2rem;
  position: relative;
  color: var(--business-text);
}
.vvm-overview-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 18px;
  height: 18px;
  background-color: var(--business-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

/* Ihre Vorteile: 01, 02, 03 mit Titel und Text */
.vvm-benefits-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.vvm-benefit-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
.vvm-benefit-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .vvm-benefit-item {
    grid-template-columns: 1fr;
  }
}
.vvm-benefit-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--business-teal);
  opacity: 0.7;
  line-height: 1;
  font-family: var(--business-font-headings);
}
.vvm-benefit-item h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem 0;
}
.vvm-benefit-item p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* Ausschnitt unserer Partner */
.vvm-partners-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.vvm-partners-category {
  text-align: center;
  margin-bottom: 2rem;
}
.vvm-partners-category h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.vvm-partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.vvm-partners-logos img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.4);
}
.vvm-partners-hex-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 56px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #f8f9fa;
  padding: 4px;
}
.vvm-partners-hex-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* CTA „Ihre Kunden wollen mehr“ – orangener Label */
.vvm-cta-section {
  background: var(--business-section-alt);
  padding: 3.5rem 1rem;
  text-align: center;
}
.vvm-cta-section .vvm-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--business-cta-orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.vvm-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.vvm-cta-section p {
  color: var(--business-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}
.vvm-cta-section .btn-primary {
  margin-top: 1rem;
}

/* ========== Partner-Seite ========== */
.partner-intro h2 {
  margin-bottom: 0.5rem;
}
.partner-intro .lead {
  color: var(--business-text-muted);
  margin-bottom: 1.25rem;
}
.partner-intro ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.partner-intro li {
  padding: 0.35rem 0 0.35rem 2rem;
  position: relative;
  color: var(--business-text);
}
.partner-intro li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  height: 18px;
  background-color: var(--business-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

/* Unser Vergleich: zwei Spalten, Liste links, Laptop rechts */
.partner-vergleich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .partner-vergleich {
    grid-template-columns: 1fr;
  }
}
.partner-vergleich h2 {
  margin-bottom: 1rem;
}
.partner-vergleich ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partner-vergleich li {
  padding: 0.35rem 0 0.35rem 2rem;
  position: relative;
  color: var(--business-text);
}
.partner-vergleich li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 18px;
  height: 18px;
  background-color: var(--business-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.partner-vergleich-image img {
  max-width: 100%;
  height: auto;
}

/* Feature-Strip: Kein Aufwand, Ausreichend Auswahl, Umfassende Abdeckung (business section with bg image) */
.business-section.partner-feature-strip {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.77), rgba(255, 255, 255, 0.77)), url("https://lh3.googleusercontent.com/uWYbX0wsUOzdUTxtplkRWn-VBWGHBz0ggGSdIj2mOR-i9haRH4bkchV7yM1CRcHGKIlJHXmY53xEPeJTHJztUSLcLyJ8r3ekekY=w922") center / cover no-repeat;
  color: var(--business-teal);
  padding: 4rem 1rem;
}
.business-section.partner-feature-strip h1,
.business-section.partner-feature-strip h2,
.business-section.partner-feature-strip h3,
.business-section.partner-feature-strip h4,
.business-section.partner-feature-strip h5,
.business-section.partner-feature-strip h6 {
  color: var(--business-teal) !important;
}
.partner-feature-strip .row {
  max-width: 900px;
  margin: 0 auto;
}
.partner-feature-block {
  text-align: center;
  padding: 1rem;
}
.partner-feature-block .partner-feature-icon {
  width: auto;
  height: auto;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
  background: none;
  color: var(--business-teal);
}
.partner-feature-block .partner-feature-icon.icon-x,
.partner-feature-block .partner-feature-icon.icon-thumbs,
.partner-feature-block .partner-feature-icon.icon-check {
  background: none;
  color: var(--business-teal);
}
.partner-feature-block h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--business-teal) !important;
  font-weight: 700;
}
/* Footer: address semantisch, keine Kursivierung */
.business-footer address.not-italic {
  font-style: normal;
}

/* Sie behalten den Überblick: abwechselnde Reihen */
.partner-ueberblick h2 {
  margin-bottom: 1.5rem;
}
.partner-ueberblick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.partner-ueberblick-row:last-of-type {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .partner-ueberblick-row {
    grid-template-columns: 1fr;
  }
  .partner-ueberblick-row .order-md-2 {
    order: 1;
  }
  .partner-ueberblick-row .order-md-1 {
    order: 2;
  }
}
.partner-ueberblick-row img {
  max-width: 100%;
  height: auto;
}
.partner-ueberblick-row ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.partner-ueberblick-row li {
  padding: 0.25rem 0 0.25rem 1.5rem;
  position: relative;
  color: var(--business-text);
}
.partner-ueberblick-row li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--business-teal);
  font-weight: 700;
}

/* Presse-Sektion */
.partner-presse h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.partner-presse-item {
  text-align: center;
  padding: 1rem;
}
.partner-presse-item img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.partner-presse-item p {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  font-style: italic;
  margin: 0;
}
.partner-presse-more {
  text-align: center;
  margin-top: 1.5rem;
}
.partner-presse-more a {
  color: var(--business-teal);
  font-weight: 600;
}

/* ========== Über-uns-Seite ========== */
.ueberuns-hero .container-lg {
  text-align: left;
}
.ueberuns-hero h1 {
  margin-bottom: 0.5rem;
}
.ueberuns-hero .hero-sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

/* Wer wir sind: Text links, Bild rechts */
.ueberuns-wer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ueberuns-wer {
    grid-template-columns: 1fr;
  }
}
.ueberuns-wer h2 {
  margin-bottom: 1.25rem;
}
.ueberuns-wer p {
  margin-bottom: 1rem;
  color: var(--business-text);
}
.ueberuns-wer .img-caption {
  font-size: 0.85rem;
  color: var(--business-text-muted);
  margin-top: 0.35rem;
}
.ueberuns-wer .img-title {
  font-weight: 700;
  color: var(--business-text);
  margin-top: 0.25rem;
}
.ueberuns-wer .ceo-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 8px;
}

/* Versicherungsprofis / Technologieexperten: Überschrift links, Text rechts */
.ueberuns-expert-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.ueberuns-expert-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ueberuns-expert-row {
    grid-template-columns: 1fr;
  }
}
.ueberuns-expert-row h2 {
  font-size: 1.35rem;
  margin: 0;
}
.ueberuns-expert-row p {
  margin: 0 0 0.5rem 0;
  color: var(--business-text);
}

/* Unser Versprechen: Hexagon-Icons + Text */
.ueberuns-versprechen h2 {
  margin-bottom: 2rem;
}
.ueberuns-versprechen .row {
  margin-top: 0.5rem;
}
.ueberuns-promise-block {
  text-align: center;
  padding: 1rem;
}
.ueberuns-promise-hex {
  width: 100px;
  height: 114px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ueberuns-promise-hex::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 114'%3E%3Cpath d='M50 0 L92 28.5 L92 85.5 L50 114 L8 85.5 L8 28.5 Z' fill='none' stroke='%2310b981' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  inset: 0;
}
.ueberuns-promise-hex img {
  position: relative;
  z-index: 1;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}
.ueberuns-promise-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.ueberuns-promise-block p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin: 0;
}

/* ========== Jobs/Karriere-Seite ========== */
.jobs-hero {
  text-align: center;
}
.jobs-hero h1 {
  margin-bottom: 1.5rem;
}
.jobs-hero .btn-primary {
  background: var(--business-cta-orange);
  border-color: var(--business-cta-orange);
}

/* Über Covomo: Bild links, Text rechts + Kontakt */
.jobs-ueber {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .jobs-ueber {
    grid-template-columns: 1fr;
  }
}
.jobs-ueber h2 {
  margin-bottom: 1rem;
}
.jobs-ueber .ceo-image {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
}
.jobs-ueber .ceo-contact {
  margin-top: 1rem;
}
.jobs-ueber .ceo-contact strong {
  display: block;
  margin-bottom: 0.15rem;
}
.jobs-ueber .ceo-contact .role {
  font-size: 0.9rem;
  color: var(--business-text-muted);
}
.jobs-ueber .ceo-contact a {
  color: var(--business-teal);
  font-weight: 500;
}

/* Wir sind ausgezeichnet: Überschrift, dann Kununu-Box, dann Text */
.jobs-ausgezeichnet {
  margin-top: 2rem;
}
.jobs-ausgezeichnet h2 {
  font-size: 1.35rem;
  margin: 0 0 1.5rem 0;
}
.jobs-kununu-wrap {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.jobs-kununu-wrap img {
  display: block;
  max-height: 80px;
  width: auto;
}
.jobs-ausgezeichnet .thank-note {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin-top: 0.5rem;
}

/* business-section.dark: dunkelgrauer Hintergrund (z. B. Deine Vorteile) */
.business-section.dark {
  background: #616161;
  color: #fff;
  padding: 3.5rem 1rem;
}
.business-section.dark h2 {
  color: #fff !important;
  text-align: center;
  margin-bottom: 0.5rem;
}
.business-section.dark .intro {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.jobs-vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {
  .jobs-vorteile-grid {
    grid-template-columns: 1fr;
  }
}
.jobs-vorteil-card {
  text-align: center;
  padding: 1.25rem;
}
.jobs-vorteil-card .icon-wrap {
  width: 50%;
  min-width: 50%;
  aspect-ratio: 1;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
}
.jobs-vorteil-card .jobs-vorteil-svg-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jobs-vorteil-card .jobs-vorteil-svg-wrap .jobs-vorteil-svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.jobs-vorteil-card .jobs-vorteil-svg-wrap svg.jobs-vorteil-svg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}
.jobs-vorteil-card h3 {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.jobs-vorteil-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}
.business-section.dark .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--business-cta-orange);
  border-color: var(--business-cta-orange);
}

/* Unsere offenen Stellen */
.jobs-open-section h2 {
  margin-bottom: 1.5rem;
}
.jobs-job-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.jobs-job-card:hover {
  background: var(--business-section-alt);
  color: inherit;
}
.jobs-job-card .icon-loc {
  flex-shrink: 0;
  color: var(--business-teal);
  font-size: 1.25rem;
}
.jobs-job-card .job-body {
  flex: 1;
}
.jobs-job-card .job-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.jobs-job-card .job-meta {
  font-size: 0.9rem;
  color: var(--business-text-muted);
}
.jobs-job-card .job-arrow {
  flex-shrink: 0;
  color: var(--business-teal);
}
.jobs-pagination {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin-top: 0.5rem;
}

/* ========== Presse-Seite ========== */
.presse-hero .breadcrumb {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.presse-hero .breadcrumb a,
.presse-hero .breadcrumb-item.active {
  color: #fff;
  text-decoration: none;
}

/* Pressekontakt + Über Covomo: zwei Spalten */
.presse-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .presse-intro {
    grid-template-columns: 1fr;
  }
}
.presse-intro h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.presse-contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}
.presse-contact-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.presse-contact-name a {
  color: var(--business-teal);
  font-weight: 600;
}

/* Covomo in der Presse: Karten mit Logo, Titel, Datum */
.presse-articles h2,
.presse-releases h2,
.presse-downloads-block h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.presse-article-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--business-border);
  border-radius: 0;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.presse-article-card .logo-cell {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.presse-article-card .logo-cell img {
  max-height: 36px;
  max-width: 80px;
  object-fit: contain;
}
.presse-article-card .content-cell {
  flex: 1;
  min-width: 0;
}
.presse-article-card .content-cell a {
  font-weight: 600;
  color: #7877fa;
}
.presse-article-card .content-cell a:hover {
  text-decoration: underline;
}
.presse-article-card .content-cell .date {
  font-size: 0.9rem;
  color: var(--business-text-muted);
  margin-top: 0.2rem;
}

/* Pressemitteilungen: gleiche Karten-Optik */
.presse-release-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--business-border);
  border-radius: 0;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.presse-release-card .logo-cell img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.presse-releases {
  margin-top: 2.5rem;
}
.presse-downloads-block {
  margin-top: 2.5rem;
  text-align: center;
}
.presse-downloads-block .lead {
  margin-bottom: 1rem;
  color: var(--business-text-muted);
}
.presse-downloads-block .btn-portal {
  background: var(--business-btn-green);
  color: #fff;
  border: none;
}
.presse-downloads-block .btn-portal:hover {
  background: var(--business-teal-dark);
  color: #fff;
}

/* ========== Downloads-Seite ========== */
.downloads-hero .container-lg {
  text-align: left;
}
.downloads-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.5rem;
}
.downloads-section h2 {
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}
.download-card {
  background: #fff;
  border: 1px solid var(--business-border);
  border-radius: 8px;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.download-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.download-card p {
  font-size: 0.95rem;
  color: var(--business-text-muted);
  margin-bottom: 1rem;
  flex: 1;
}
.download-card .preview-wrap {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-card .preview-wrap img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}
.download-card .btn-dl-outline {
  background: #fff;
  border: 1px solid var(--business-border);
  color: var(--business-text);
}
.download-card .btn-dl-outline:hover {
  background: var(--business-section-alt);
  border-color: var(--business-teal);
  color: var(--business-teal);
}
.download-card .btn-dl-primary {
  background: var(--business-btn-green);
  border: none;
  color: #fff;
}
.download-card .btn-dl-primary:hover {
  background: var(--business-teal-dark);
  color: #fff;
}
.downloads-logos-produkte {
  margin-top: 2rem;
}

/* Modal: slightly smaller header title */
#app ~ .modal .modal-header .modal-title,
.modal .modal-header .modal-title {
  font-size: 1.5rem !important;
  font-weight: 600;
}

/* Newsletter modal: iframe needs explicit height to display Mailjet form */
/* Newsletter modal: larger dialog and scrollable body */
.newsletter-modal-dialog {
  max-width: 90vw;
}
.newsletter-modal-body {
  max-height: 85vh;
  overflow-y: auto;
}
.newsletter-mailjet-iframe,
#newsletter-mailjet-iframe {
  display: block;
  min-height: 680px;
  height: 680px;
}
