/* ==========================================================================
   Kampagne.de – Custom CSS
   Typografie, Komponenten & Responsive
   Basis: 1rem = 16px (Browser-Standard)
   ========================================================================== */

/* ── Design Tokens ── */
:root {
  /* Farben – Primär */
  --color-heading:      #122945;          /* Headlines, dunkelster Ton */
  --color-navy:         #122945;          /* Logo-Navy, dunkle Sektionen */
  --color-body:         #4b5563;          /* Fließtext */
  --color-blue:         #2563eb;          /* Akzent-Blau, Links */
  --color-accent:       #c70a62;          /* Magenta, CTA primär */
  --color-accent-hover: #a50852;          /* Magenta Hover */
  --color-white:        #ffffff;          /* Hintergründe, Headlines auf Dark */
  --color-body-light:   #94a3b8;          /* Fließtext auf dunklen Flächen */
  --color-blue-dark:    #60a5fa;          /* Blau-Akzent auf dunklen Flächen */

  /* Farben – Abgeleitete Tints (color-mix) */
  --color-bg-alt:       color-mix(in srgb, var(--color-navy) 5%, white);      /* Sektionswechsel ≈#f3f4f6 */
  --color-bg-tint:      color-mix(in srgb, var(--color-navy) 10%, white);     /* Card-Akzente, Icon-BGs */
  --color-accent-light: color-mix(in srgb, var(--color-accent) 6%, white);    /* Magenta hell ≈#fcf0f6 */
  --color-blue-light:   color-mix(in srgb, var(--color-blue) 8%, white);      /* Blau hell ≈#eef3fd */

  /* Fonts */
  --font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --content-width:    1200px;
  --radius-sm:        0.5rem;   /*  8px */
  --radius-md:        0.875rem; /* 14px */
  --radius-lg:        1rem;     /* 16px */
}

/* ==========================================================================
   TYPOGRAFIE – Desktop First (> 980px)
   ========================================================================== */

h1,
.et_pb_module_header.et_pb_font_size_h1 {
  font-size: 3.25rem !important;    /* 52px */
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.094rem !important; /* -1.5px */
  color: var(--color-heading) !important;
}

h2,
.et_pb_module_header.et_pb_font_size_h2 {
  font-size: 2.5rem !important;     /* 40px */
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.063rem !important; /* -1px */
  color: var(--color-heading) !important;
}

h3 {
  font-size: 1.375rem !important;   /* 22px */
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--color-heading) !important;
}

h4 {
  font-size: 1.125rem !important;   /* 18px */
  font-weight: 700 !important;
  line-height: 1.4 !important;
  color: var(--color-heading) !important;
}

h5 {
  font-size: 1rem !important;       /* 16px */
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: var(--color-heading) !important;
}

h6 {
  font-size: 0.875rem !important;   /* 14px */
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: var(--color-heading) !important;
}

p, li, td, .et_pb_text, .et_pb_blurb_description {
  font-size: 1rem !important;       /* 16px */
  line-height: 1.7 !important;
  color: var(--color-body) !important;
}

/* Subline / Lead-Text */
.subline,
.et_pb_text.subline p {
  font-size: 1.25rem !important;    /* 20px */
  line-height: 1.7 !important;
  color: #6b7280 !important;        /* heller als Body */
  font-weight: 400 !important;
}

/* Section Label – kleine Überschrift über H2 */
.section-label,
.et_pb_text.section-label p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem !important; /* 13px */
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-blue) !important;
  font-family: var(--font-body) !important;
  margin-bottom: 1rem;
}

/* Section Grundlayout */
.kampagne-section {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

@media (max-width: 980px) {
  .kampagne-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

@media (max-width: 767px) {
  .kampagne-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* ==========================================================================
   SEKTIONS-HINTERGRÜNDE – Weiß/Grau-Wechsel per ID
   ========================================================================== */

#was        { background: #ffffff !important; }
#schritte   { background: #ffffff !important; }
#werbemittel { background: #ffffff !important; }
#branchen   { background: var(--color-bg-alt) !important; }
#beispiel   { background: var(--color-bg-alt) !important; }
#vorteile   { background: #ffffff !important; }
#ueber-uns  { background: var(--color-bg-alt) !important; }
#faq        { background: #ffffff !important; }

/* Section Header – schmalere Row für zentrierte Texte */
.section-header-row,
.et_pb_row.section-header-row,
.et_pb_row_inner.section-header-row {
  max-width: 680px !important;
  width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

@media (max-width: 767px) {
  .section-header-row,
  .et_pb_row.section-header-row,
  .et_pb_row_inner.section-header-row {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Small / Caption */
small, .caption, .small-text {
  font-size: 0.875rem;              /* 14px */
  line-height: 1.5;
  color: var(--color-body);
}

/* ==========================================================================
   TABLET – 981px bis 768px
   ========================================================================== */

@media (max-width: 980px) {
  h1,
  .et_pb_module_header.et_pb_font_size_h1 {
    font-size: 2.5rem !important;    /* 40px */
    letter-spacing: -0.063rem !important;
  }

  h2,
  .et_pb_module_header.et_pb_font_size_h2 {
    font-size: 2rem !important;      /* 32px */
    letter-spacing: -0.031rem !important;
  }

  h3 {
    font-size: 1.25rem !important;   /* 20px */
  }

  h4 {
    font-size: 1.0625rem !important; /* 17px */
  }

  p, li, td, .et_pb_text, .et_pb_blurb_description {
    font-size: 0.9375rem !important; /* 15px */
  }

  .subline,
  .et_pb_text.subline p {
    font-size: 1.0625rem !important; /* 17px */
  }
}

/* ==========================================================================
   MOBILE – unter 768px
   ========================================================================== */

@media (max-width: 767px) {
  h1,
  .et_pb_module_header.et_pb_font_size_h1 {
    font-size: 2rem !important;      /* 32px */
    letter-spacing: -0.031rem !important;
  }

  h2,
  .et_pb_module_header.et_pb_font_size_h2 {
    font-size: 1.625rem !important;  /* 26px */
    letter-spacing: 0 !important;
  }

  h3 {
    font-size: 1.125rem !important;  /* 18px */
  }

  h4 {
    font-size: 1rem !important;      /* 16px */
  }

  p, li, td, .et_pb_text, .et_pb_blurb_description {
    font-size: 0.9375rem !important; /* 15px */
  }

  .subline,
  .et_pb_text.subline p {
    font-size: 1rem !important;      /* 16px */
    max-width: 100%;
  }
}

/* ==========================================================================
   BUTTONS – Global
   ========================================================================== */

.et_pb_button,
.kampagne-btn {
  font-family: var(--font-body) !important;
  font-size: 1.0625rem !important;  /* 17px */
  font-weight: 700 !important;
  padding: 0.875rem 2rem !important;
  border-radius: var(--radius-md) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block;
}

/* Primary Button (Magenta) */
.et_pb_button.kampagne-btn-primary,
.kampagne-btn-primary {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-accent) !important;
}

.et_pb_button.kampagne-btn-primary:hover,
.kampagne-btn-primary:hover {
  background-color: var(--color-accent-hover) !important;
  border-color: var(--color-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(213, 0, 87, 0.3);
}

/* Secondary / Outline Button */
.et_pb_button.kampagne-btn-outline,
.kampagne-btn-outline {
  background-color: transparent !important;
  color: var(--color-accent) !important;
  border: none !important;
  box-shadow: inset 0 0 0 2px var(--color-accent) !important;
}

.et_pb_button.kampagne-btn-outline:hover,
.kampagne-btn-outline:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
}

/* ==========================================================================
   BADGE – z.B. Hero-Badge
   ========================================================================== */

.kampagne-badge {
  display: inline-block;
  font-size: 0.8125rem !important;  /* 13px */
  font-weight: 600 !important;
  color: var(--color-accent) !important;
  background: var(--color-accent-light);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  width: fit-content;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

/* Sticky Header Basis */
/* ── Header: Nur Verhalten, kein Layout/Button-Styling ── */

/* Safari fix: Divi setzt header .et_builder_inner_content auf z-index:2,
   das erzeugt einen Stacking-Context der den position:fixed Header einsperrt.
   z-index:auto entfernt den Context → Header stackt frei auf Viewport-Ebene. */
header.et-l .et_builder_inner_content {
  z-index: auto !important;
}

/* Fixed Header */
.kampagne-header,
.et_pb_section.kampagne-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  padding: 0.25rem 0 !important;
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Dunkle Variante (über dunklen Sektionen) */
.kampagne-header.header-dark {
  background: rgba(15, 33, 64, 0.97) !important;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* Nav-Links Styling */
.kampagne-nav a,
.kampagne-nav .et-menu-nav a,
.kampagne-nav .et_pb_menu__menu a {
  text-decoration: none !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.375rem;
  transition: color 0.3s, background 0.3s;
}

/* Aktiver Nav-Link */
.kampagne-nav a.active,
.kampagne-nav .current-menu-item a {
  color: var(--color-blue) !important;
  background: rgba(37, 99, 235, 0.08);
  font-weight: 600 !important;
}

/* Dark-Mode Nav */
.kampagne-header.header-dark .kampagne-nav a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.kampagne-header.header-dark .kampagne-nav a:hover {
  color: var(--color-white) !important;
}

.kampagne-header.header-dark .kampagne-nav a.active {
  color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.12);
}

/* Logo-Umschaltung: Divi's "display:none" auf Flex-Spalten-Bilder überschreiben */
.kampagne-header .kampagne-logo-dark {
  display: block !important;
}
.kampagne-header .kampagne-logo-light {
  display: none !important;
}

/* Body Offset für Fixed Header */
body.et_divi_theme {
  padding-top: 72px !important;
}

/* Mobile: Header kompakter */
@media (max-width: 980px) {
  .kampagne-header,
  .et_pb_section.kampagne-header {
    padding: 0.5rem 0 !important;
  }

  body.et_divi_theme {
    padding-top: 60px !important;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.kampagne-hero {
  padding-top: 6rem !important;
  padding-bottom: 4rem !important;
}

@media (max-width: 980px) {
  .kampagne-hero {
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 767px) {
  .kampagne-hero {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
    text-align: center;
  }

  .kampagne-badge {
    margin: 0 auto;
  }

  .subline,
  .et_pb_text.subline p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   HERO – PLZ-Tool (rechte Spalte)
   ========================================================================== */

/* Wrapper für Tool + Glow */
.plz-tool-wrap {
  position: relative;
  padding: 30px 20px 30px 40px;
}

/* Dezenter Glow hinter der Karte */
.plz-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.plz-tool {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #ffffff 0%, var(--color-bg-alt) 100%);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.12), 0 4px 20px rgba(10, 22, 40, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

/* Mini-Map Hintergrund oben in der Karte */
.plz-map-bg {
  margin: -2rem -2rem 1.25rem -2rem;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: visible;
  padding: 1rem 1.5rem 0.5rem;
  background: linear-gradient(135deg, var(--color-bg-tint) 0%, var(--color-bg-alt) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

.plz-map-svg {
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.4s;
}

.plz-map-svg.plz-map-active {
  opacity: 1;
}

.plz-tool-header {
  margin-bottom: 1.5rem;
}

.plz-kicker {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-blue) !important;
  margin-bottom: 0.375rem;
  font-family: var(--font-body) !important;
}

.plz-tool-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

/* Eingabefeld-Gruppe */
.plz-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.plz-input-wrapper {
  flex: 1;
  position: relative;
}

.plz-pin {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  color: var(--color-accent);
}

.plz-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem !important;
  height: auto !important;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  font-family: var(--font-body);
  color: var(--color-heading);
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.plz-input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.plz-input::placeholder {
  color: #9ca3af;
}

.plz-btn {
  padding: 0.875rem 1.75rem !important;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(213, 0, 87, 0.3);
}

.plz-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(213, 0, 87, 0.4);
}

.plz-btn-arrow {
  transition: transform 0.2s;
}

.plz-btn:hover .plz-btn-arrow {
  transform: translateX(3px);
}

/* Ergebnis-Bereich */
.plz-result {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.plz-result-animate {
  animation: plzSlideIn 0.4s ease-out;
}

@keyframes plzSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plz-result-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.plz-result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.plz-result-text {
  display: flex;
  flex-direction: column;
}

.plz-result-text strong {
  font-size: 1.125rem !important;
  color: #166534 !important;
  font-family: var(--font-heading) !important;
}

.plz-result-text span {
  font-size: 0.875rem !important;
  color: #15803d !important;
}

/* Detail-Kacheln im Ergebnis */
.plz-result-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.plz-detail {
  background: var(--color-white);
  border-radius: 0.625rem;
  padding: 0.75rem;
  text-align: center;
}

.plz-detail-label {
  display: block;
  font-size: 0.6875rem !important;
  color: #6b7280 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.plz-detail-value {
  display: block;
  font-size: 1.125rem !important;
  font-weight: 800 !important;
  color: var(--color-heading) !important;
  font-family: var(--font-heading) !important;
  line-height: 1.3 !important;
}

.plz-detail-sub {
  display: block;
  font-size: 0.6875rem !important;
  color: #9ca3af !important;
}

/* CTA-Button im Ergebnis */
.plz-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
  box-sizing: border-box;
}

.plz-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(213, 0, 87, 0.3);
}

/* Trust-Zeile unter dem Tool */
.plz-trust {
  display: flex;
  gap: 0.4rem 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-bg-alt);
}

.plz-trust span {
  font-size: 0.75rem !important;
  color: #6b7280 !important;
  white-space: nowrap;
}

.plz-trust .trust-check {
  color: var(--color-accent) !important;
  font-weight: 700;
  margin-right: 0.3em;
}

/* Rechtshinweis / Fußnote (§ 14 BGB, Netto-Preise) */
.kampagne-legal-note,
.et_pb_text.kampagne-legal-note p {
  font-size: 0.8125rem !important;
  line-height: 1.5 !important;
  color: var(--color-body-light) !important;
  padding-left: 0.85em !important;
  text-indent: -0.85em !important;
}

.kampagne-legal-note {
  margin-top: 1.25rem;
  max-width: 34rem;
}

.kampagne-legal-note .kampagne-legal-star {
  color: var(--color-accent) !important;
  font-weight: 600;
}

.kampagne-section-dark .kampagne-legal-note,
.kampagne-section-dark .et_pb_text.kampagne-legal-note p {
  color: rgba(255, 255, 255, 0.55) !important;
}

/* PLZ-Tool Responsive – Tablet */
@media (max-width: 980px) {
  .plz-tool-wrap {
    max-width: 440px;
    margin: 2rem auto 0;
    padding: 20px 30px;
  }

  .plz-tool {
    padding: 1.75rem;
  }
}

/* PLZ-Tool Responsive – Mobile */
@media (max-width: 767px) {
  .plz-tool-wrap {
    padding: 15px 5px;
  }

  .plz-glow {
    display: none;
  }

  .plz-tool {
    padding: 1.25rem;
  }

  .plz-map-bg {
    margin: -1.25rem -1.25rem 1rem -1.25rem;
    padding: 0.75rem 1rem 0.25rem;
  }

  .plz-input-group {
    flex-direction: column;
  }

  .plz-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem;
  }

  .plz-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }
}

/* ==========================================================================
   PLZ-TOOL – Dark-Variante (Finaler CTA etc.)
   ========================================================================== */

.kampagne-section-dark .plz-tool {
  background: rgba(15, 33, 64, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3) !important;
}

.kampagne-section-dark .plz-map-bg {
  background: rgba(15, 33, 64, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: visible !important;
}

.kampagne-section-dark .plz-kicker {
  color: var(--color-blue-dark) !important;
}

.kampagne-section-dark .plz-tool-title {
  color: var(--color-white) !important;
}

.kampagne-section-dark .plz-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: var(--color-white) !important;
}

.kampagne-section-dark .plz-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.kampagne-section-dark .plz-input:focus {
  border-color: var(--color-blue-dark) !important;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15) !important;
}

.kampagne-section-dark .plz-pin {
  color: var(--color-accent) !important;
}

.kampagne-section-dark .plz-trust span {
  color: rgba(255, 255, 255, 0.6) !important;
}

.kampagne-section-dark .plz-glow {
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.2) 0%, transparent 70%) !important;
}

.kampagne-section-dark .plz-map-svg text {
  fill: rgba(255, 255, 255, 0.7) !important;
}

.kampagne-section-dark .plz-map-svg circle,
.kampagne-section-dark .plz-map-svg line,
.kampagne-section-dark .plz-map-svg path {
  stroke: rgba(96, 165, 250, 0.4) !important;
}

/* ==========================================================================
   DASHBOARD VISUAL – Wiederverwendbar (ehem. Hero, jetzt Dashboard-Sektion)
   ========================================================================== */

.hero-visual {
  position: relative;
  padding: 30px 20px 30px 40px;
}

.screen-mockup {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.15), 0 4px 20px rgba(10, 22, 40, 0.08);
  overflow: hidden;
  position: relative;
}

.screen-bar {
  background: var(--color-bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.screen-dot.red    { background: #ef4444; }
.screen-dot.yellow { background: #eab308; }
.screen-dot.green  { background: #22c55e; }

.screen-url {
  background: var(--color-white);
  border-radius: 6px;
  padding: 6px 16px;
  margin-left: 12px;
  font-size: 0.75rem;
  color: #6b7280;
  flex: 1;
  font-family: var(--font-body);
}

.screen-content {
  padding: 24px;
  background: linear-gradient(135deg, var(--color-bg-tint) 0%, #ffffff 100%);
  min-height: 300px;
  position: relative;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dash-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  font-family: var(--font-heading);
}

.dash-btn {
  background: var(--color-blue);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.dash-card-label {
  font-size: 0.6875rem !important;
  color: #6b7280 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-family: var(--font-body) !important;
  line-height: 1.4 !important;
}

.dash-card-value {
  font-size: 1.375rem !important;
  font-weight: 800 !important;
  color: var(--color-heading) !important;
  font-family: var(--font-heading) !important;
  line-height: 1.3 !important;
}
.dash-card-value.green { color: #22c55e; }
.dash-card-value.blue  { color: var(--color-blue); }

.dash-map {
  background: var(--color-white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
  min-height: 120px;
  overflow: hidden;
}

.dash-map-label {
  font-size: 0.6875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.map-area {
  position: relative;
  height: 90px;
  background: linear-gradient(135deg, var(--color-bg-tint) 0%, var(--color-bg-alt) 100%);
  border-radius: 8px;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-blue);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.map-pin.active {
  background: var(--color-accent);
  box-shadow: 0 2px 6px rgba(213, 0, 87, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: heroFloat 3s ease-in-out infinite;
}

.float-card.left {
  bottom: 10%;
  left: -60px;
  animation-delay: 0.5s;
}

.float-card.right {
  top: 50%;
  right: -20px;
  animation-delay: 1s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-icon.blue    { background: #dbeafe; }
.float-icon.magenta { background: var(--color-accent-light); }
.float-icon.green   { background: #dcfce7; }

.float-text {
  font-size: 0.75rem;
  font-family: var(--font-body);
}
.float-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-heading);
}
.float-text span {
  color: #6b7280;
}

/* Dashboard Dark-Variante – für dunkle Sektionen */
.kampagne-section-dark .screen-mockup {
  background: rgba(15, 33, 64, 0.5) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(96, 165, 250, 0.1) !important;
}

.kampagne-section-dark .screen-bar {
  background: rgba(10, 22, 40, 0.5) !important;
}

.kampagne-section-dark .screen-url {
  background: rgba(21, 45, 84, 0.5) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.kampagne-section-dark .screen-content {
  background: rgba(15, 33, 64, 0.3) !important;
}

.kampagne-section-dark .dash-title {
  color: var(--color-white);
}

.kampagne-section-dark .dash-card {
  background: rgba(21, 45, 84, 0.4) !important;
  box-shadow: none !important;
  border: 1px solid rgba(96, 165, 250, 0.08) !important;
}

.kampagne-section-dark .dash-card-label {
  color: rgba(255, 255, 255, 0.5) !important;
}

.kampagne-section-dark .dash-card-value {
  color: var(--color-white) !important;
}

.kampagne-section-dark .dash-card-value.green { color: #4ade80 !important; }
.kampagne-section-dark .dash-card-value.blue  { color: var(--color-blue-dark) !important; }

.kampagne-section-dark .dash-map {
  background: rgba(21, 45, 84, 0.4) !important;
  box-shadow: none !important;
  border: 1px solid rgba(96, 165, 250, 0.12) !important;
}

.kampagne-section-dark .dash-map-label {
  color: rgba(255, 255, 255, 0.5);
}

.kampagne-section-dark .map-area {
  background: rgba(10, 22, 40, 0.6) !important;
}

.kampagne-section-dark .map-pin {
  border-color: rgba(21, 45, 84, 0.8);
}

.kampagne-section-dark .float-card {
  background: rgba(21, 45, 84, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(96, 165, 250, 0.15) !important;
}

.kampagne-section-dark .float-text strong {
  color: var(--color-white);
}

.kampagne-section-dark .float-text span {
  color: rgba(255, 255, 255, 0.6);
}

.kampagne-section-dark .float-icon.green {
  background: rgba(74, 222, 128, 0.15);
}

.kampagne-section-dark .float-icon.magenta {
  background: rgba(213, 0, 87, 0.15);
}

/* Hero Visual – Responsive Tablet */
@media (max-width: 980px) {
  .hero-visual {
    padding: 20px 30px;
    max-width: 480px;
    margin: 2rem auto 0;
  }
  .float-card.left  { left: -10px; bottom: 15%; }
  .float-card.right { right: -10px; top: 45%; }
  .dash-grid { gap: 8px; }
  .dash-card-value { font-size: 1.125rem !important; }
  .dash-card-label { font-size: 0.625rem !important; }
  .screen-content { padding: 16px; min-height: 260px; }
}

/* Hero Visual – Responsive Mobile */
@media (max-width: 767px) {
  .hero-visual { padding: 15px 5px; }
  .screen-content { min-height: 220px; padding: 12px; }
  .dash-header { margin-bottom: 12px; }
  .dash-title { font-size: 0.8125rem !important; }
  .dash-btn { padding: 6px 10px; font-size: 0.625rem !important; }
  .dash-grid { gap: 6px; }
  .dash-card { padding: 10px; }
  .dash-card-value { font-size: 1rem !important; }
  .dash-card-label { font-size: 0.5625rem !important; }
  .dash-map { padding: 10px; min-height: 80px; }
  .dash-map-label { font-size: 0.5625rem !important; }
  .map-area { height: 60px; }
  .map-pin { width: 8px; height: 8px; }
  .float-card { padding: 8px 12px; }
  .float-card.left  { left: -5px; bottom: 5%; }
  .float-card.right { right: -5px; top: 35%; }
  .float-text strong { font-size: 0.625rem; }
  .float-text span   { font-size: 0.5625rem; }
  .float-icon { width: 26px; height: 26px; font-size: 12px; }
}

/* ==========================================================================
   TRUST BADGES – Häkchen-Leiste
   ========================================================================== */

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem !important;
  color: var(--color-body) !important;
}

.trust-badges li::before {
  content: "✓";
  background: var(--color-blue);
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* Trust Badges: Padding vom Divi-Modul entfernen damit linksbündig */
.et_pb_code.trust-badges-wrap,
.et_pb_module.trust-badges-wrap {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

@media (max-width: 767px) {
  .trust-badges {
    justify-content: center;
  }
}

/* ==========================================================================
   WAS IST DooH – Stele-Illustration (linke Spalte)
   ========================================================================== */

.dooh-stele {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 240px;
  margin: 0 auto;
}

/* Oberer Teil: Bildschirm-Gehäuse */
.dooh-stele-head {
  background: #1a1a1a;
  border-radius: 10px 10px 0 0;
  padding: 8px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
  position: relative;
  z-index: 2;
}

/* Screen-Fläche – 9:16 Verhältnis */
.dooh-stele-screen {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  border-radius: 5px;
  padding: 40px 24px;
  text-align: center;
  color: white;
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Glanz-Animation */
.dooh-stele-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Sockel – kurzer Block unter dem Gehäuse, etwas schmaler */
.dooh-stele-base {
  width: 80%;
  height: 45px;
  background: #1a1a1a;
  z-index: 1;
}

/* Bodenplatte – breiter als Sockel */
.dooh-stele-foot {
  width: calc(100% + 20px);
  height: 10px;
  background: #111;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Inhalte auf dem Screen */
.dooh-example-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  font-family: var(--font-heading);
}

.dooh-example-text {
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  margin-bottom: 8px;
}

.dooh-example-sub {
  font-size: 0.75rem;
  opacity: 0.6;
  position: relative;
}

/* Standort-Tag */
.dooh-location-tag {
  position: absolute;
  bottom: 25%;
  right: -30px;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-heading);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  white-space: nowrap;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .dooh-stele {
    max-width: 200px;
    margin: 0 auto 2rem;
  }
  .dooh-stele-screen { padding: 30px 18px; }
  .dooh-stele-base { height: 35px; }
  .dooh-location-tag { right: -10px; }
}

@media (max-width: 767px) {
  .dooh-stele {
    max-width: 160px;
  }
  .dooh-stele-screen { padding: 20px 14px; }
  .dooh-stele-base { height: 28px; }
  .dooh-example-logo { font-size: 1.125rem; }
  .dooh-location-tag { position: relative; right: auto; top: auto; transform: none; margin-top: 1rem; }
}

/* ==========================================================================
   EXPLAINER POINTS – Icon-Bullets (DooH-Sektion)
   ========================================================================== */

.explainer-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.explainer-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem !important;
  color: var(--color-body) !important;
  line-height: 1.6 !important;
}

.explainer-points li strong {
  color: var(--color-heading) !important;
}

.point-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  font-size: 0.9rem;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .explainer-points li {
    font-size: 0.9375rem !important;
  }
  .point-icon {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   SO FUNKTIONIERT'S – 3 Steps
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* 5-Schritte Variante */
.steps-grid.steps-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* Verbindungslinie zwischen den Steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(90deg, #93c5fd, #3b82f6, #93c5fd);
  z-index: 0;
}

/* Kompakte Icons für 5-Schritte */
.step-icon-compact {
  width: 4rem;
  height: 4rem;
  background: var(--color-bg-tint);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-blue);
}

.step-icon-compact.accent {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

/* Step 5 Akzent-Nummer */
.step-number-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8195e 100%) !important;
  box-shadow: 0 8px 24px rgba(213, 0, 87, 0.25) !important;
}

.step-number-accent::after {
  border-color: rgba(213, 0, 87, 0.3) !important;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, #3b82f6 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1.5rem;
  border: 2px solid #93c5fd;
}

.step-icon-visual {
  width: 12.5rem;
  height: 8.75rem;
  margin: 0 auto 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.step-card h3 {
  margin-bottom: 0.75rem !important;
}

.step-card p {
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.7 !important;
  max-width: 300px;
  margin: 0 auto;
}

/* Step 1: Karten-Visual */
.step-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-tint) 0%, var(--color-blue-light) 100%);
  position: relative;
}

.step-map-pin {
  position: absolute;
  font-size: 1.25rem;
}

/* Step 2: Drag & Drop Visual */
.step-drag {
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
}

.drag-element {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.drag-element.img  { background: #dbeafe; }
.drag-element.text { background: var(--color-accent-light); font-size: 0.875rem; font-weight: 700; color: #374151; }
.drag-element.ai   { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: white; font-size: 0.875rem; font-weight: 700; }

.drag-arrow {
  font-size: 1.5rem;
  color: #9ca3af;
}

.drag-target {
  width: 5rem;
  height: 5rem;
  border: 2px dashed #3b82f6;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.75rem;
}

/* Step 3: Play Visual */
.step-play {
  width: 100%;
  height: 100%;
  background: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
}

.play-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.play-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: white;
}

.play-label {
  font-size: 0.6875rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Steps Responsive – Tablet */
@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 3rem;
  }
  .steps-grid.steps-5 {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 2rem;
  }
  .steps-grid::before { display: none; }
  .step-icon-visual {
    width: 100%;
    max-width: 16rem;
  }
}

/* Steps Responsive – Mobile */
@media (max-width: 767px) {
  .steps-grid {
    gap: 2.5rem;
    max-width: 320px;
  }
  .step-number {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }
  .step-number::after {
    border-radius: 1.25rem;
  }
  .step-icon-visual {
    height: 7rem;
    margin-bottom: 1rem;
  }
  .step-card p {
    font-size: 0.875rem !important;
  }
}

/* ==========================================================================
   NETZWERK – Dunkle Sektion
   ========================================================================== */

.kampagne-section-dark {
  background: linear-gradient(135deg, #122945 0%, #162f50 50%, #1c385c 100%) !important;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  position: relative;
}

.kampagne-section-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.kampagne-section-dark h2,
.kampagne-section-dark .section-label,
.kampagne-section-dark .et_pb_text h2 {
  color: var(--color-white) !important;
}

.kampagne-section-dark .section-label,
.kampagne-section-dark .et_pb_text.section-label p {
  color: var(--color-blue-dark) !important;
}

.kampagne-section-dark p,
.kampagne-section-dark .et_pb_text p {
  color: var(--color-body-light) !important;
}

/* Kennzahlen */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-value .stat-accent {
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-body-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

/* CTA in dunkler Sektion */
.kampagne-section-dark .et_pb_button.kampagne-btn-primary,
.kampagne-section-dark .kampagne-btn-primary {
  box-shadow: 0 4px 20px rgba(213, 0, 87, 0.4);
}

/* Netzwerk-Vorteile */
.network-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.network-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.network-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.network-feature h4 {
  color: var(--color-white) !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.125rem !important;
}

.network-feature p {
  font-size: 0.875rem !important;
  color: var(--color-body-light) !important;
  line-height: 1.6 !important;
  margin: 0;
}

@media (max-width: 980px) {
  .kampagne-section-dark {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .stats-row { gap: 2rem; }
  .stat-value { font-size: 2.5rem; }
  .network-features { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 767px) {
  .kampagne-section-dark {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .stats-row { gap: 1.5rem; }
  .stat-value { font-size: 2rem; }
}

/* ==========================================================================
   STANDORTE – Wo werben? (dunkle Sektion)
   ========================================================================== */

.standorte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.standort-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.standort-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.standort-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.standort-card h4 {
  color: var(--color-white) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
}

.standort-card p {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6 !important;
  margin: 0;
}

/* Standorte Responsive – Tablet */
@media (max-width: 980px) {
  .standorte-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Standorte Responsive – Mobile */
@media (max-width: 767px) {
  .standorte-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .standort-card {
    padding: 1.5rem 1rem;
  }
}

/* ==========================================================================
   FEATURES – 6 Cards Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, var(--color-blue));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  margin-bottom: 1.25rem;
}

.feature-icon.blue   { background: #dbeafe; }
.feature-icon.magenta { background: var(--color-accent-light); }
.feature-icon.green  { background: #dcfce7; }
.feature-icon.purple { background: #f3e8ff; }
.feature-icon.teal   { background: #ccfbf1; }
.feature-icon.pink   { background: #fce7f3; }

.feature-card h3 {
  font-size: 1.1875rem !important;
  margin-bottom: 0.625rem !important;
}

.feature-card p {
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.7 !important;
  margin: 0;
}

/* Features Responsive – Tablet */
@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .feature-card {
    padding: 1.75rem 1.5rem;
  }
}

/* Features Responsive – Mobile */
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .feature-card {
    padding: 1.5rem 1.25rem;
  }
  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.375rem;
    margin-bottom: 1rem;
  }
  .feature-card h3 {
    font-size: 1.0625rem !important;
  }
  .feature-card p {
    font-size: 0.875rem !important;
  }
}

/* ==========================================================================
   BRANCHEN-BEISPIELE
   ========================================================================== */

.branchen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.branche-card {
  display: flex;
  gap: 1.25rem;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.branche-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.branche-icon {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  background: var(--color-bg-tint);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.branche-content h4 {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  margin-bottom: 0.25rem !important;
}

.branche-use {
  font-size: 0.8125rem !important;
  color: var(--color-blue) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.4 !important;
}

.branche-example {
  font-size: 0.875rem !important;
  color: var(--color-body) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-style: italic;
}

/* ==========================================================================
   INFO-BOX
   ========================================================================== */

.info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-navy);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.25);
}

.info-box-icon {
  min-width: 24px;
  padding-top: 2px;
  color: var(--color-accent);
}

.info-box-icon svg {
  stroke: var(--color-accent) !important;
}

.info-box-text {
  font-size: 0.9375rem !important;
  color: var(--color-white) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

/* Info-Box Responsive – Mobil */
@media (max-width: 767px) {
  .info-box {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .info-box-text {
    font-size: 0.875rem !important;
  }
}

/* ==========================================================================
   PREIS-VORTEILE
   ========================================================================== */

.preis-highlight {
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: var(--color-accent) !important;
  font-family: var(--font-heading) !important;
  letter-spacing: -0.02em;
}

@media (max-width: 767px) {
  .preis-highlight {
    font-size: 2.25rem !important;
  }
}

.preis-vorteile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.preis-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.preis-card:hover {
  background: rgba(213, 0, 87, 0.08);
  border-color: rgba(213, 0, 87, 0.4);
  transform: translateY(-2px);
}

.preis-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(199, 10, 99, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

.preis-card h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--color-white) !important;
  margin-bottom: 0.5rem !important;
}

.preis-card p {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Preis-Vorteile Responsive – Tablet */
@media (max-width: 980px) {
  .preis-vorteile-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
    margin: 0 auto;
  }
}

/* Preis-Vorteile Responsive – Mobil */
@media (max-width: 767px) {
  .preis-vorteile-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .preis-card {
    padding: 1.25rem;
    text-align: left;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .preis-card-icon {
    margin: 0;
    min-width: 3.25rem;
  }
}

/* ==========================================================================
   WERBEMITTEL
   ========================================================================== */

.werbemittel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.werbemittel-card {
  background: var(--color-bg-tint);
  border: 1px solid #dbeafe;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.werbemittel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.werbemittel-card-accent {
  background: var(--color-accent-light);
  border-color: #f9d0e0;
}

.werbemittel-card-accent:hover {
  box-shadow: 0 8px 30px rgba(213, 0, 87, 0.1);
}

.werbemittel-icon {
  width: 4rem;
  height: 4rem;
  background: var(--color-white);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-blue);
}

.werbemittel-card-accent .werbemittel-icon {
  color: var(--color-accent);
}

.werbemittel-icon-accent {
  background: var(--color-white);
}

.werbemittel-card h4 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  margin-bottom: 0.75rem !important;
}

.werbemittel-card p {
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.7 !important;
  margin-bottom: 1.25rem !important;
}

.werbemittel-formate {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.werbemittel-formate span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-blue);
  background: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.werbemittel-card-accent .werbemittel-formate span {
  color: var(--color-accent);
  background: var(--color-white);
  border-color: rgba(213, 0, 87, 0.15);
}

/* Werbemittel Responsive – Tablet */
@media (max-width: 980px) {
  .werbemittel-grid {
    max-width: 540px;
    margin: 0 auto;
  }
}

/* Werbemittel Responsive – Mobil */
@media (max-width: 767px) {
  .werbemittel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .werbemittel-card {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   VORTEILE – Warum Bildschirmwerbung
   ========================================================================== */

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vorteil-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.vorteil-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.vorteil-icon {
  width: 3.25rem !important;
  height: 3.25rem !important;
  min-width: 3.25rem !important;
  max-width: 3.25rem !important;
  background: var(--color-bg-tint) !important;
  border-radius: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.vorteil-text {
  flex: 1 !important;
  min-width: 0 !important;
}

.vorteil-card h4 {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  margin-bottom: 0.25rem !important;
}

.vorteil-card p {
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ==========================================================================
   KAMPAGNEN-WALKTHROUGH – Booking-Beispiel (Timeline rechte Spalte)
   ========================================================================== */

.wt-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wt-step {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}

.wt-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 2.5rem;
}

.wt-dot {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.wt-dot-accent {
  background: var(--color-accent) !important;
}

.wt-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-blue), #93c5fd);
  margin: 0.25rem 0;
}

.wt-step-last .wt-line {
  display: none;
}

.wt-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  flex: 1;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.wt-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
}

.wt-card-accent {
  border-color: rgba(213, 0, 87, 0.2) !important;
  background: var(--color-accent-light) !important;
}

.wt-card-accent:hover {
  border-color: rgba(213, 0, 87, 0.35) !important;
  box-shadow: 0 8px 30px rgba(213, 0, 87, 0.08) !important;
}

.wt-card h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
  margin-bottom: 0.25rem !important;
}

.wt-card p {
  font-size: 0.875rem !important;
  color: var(--color-body) !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
}

.wt-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue);
}

.wt-meta svg {
  flex-shrink: 0;
}

.wt-meta-accent {
  color: var(--color-accent);
  font-weight: 700;
}

/* Walkthrough – Profil & Zusammenfassung (linke Spalte) */

.wt-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.wt-profile-icon {
  width: 3rem;
  height: 3rem;
  background: var(--color-bg-tint);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
}

.wt-profile-info {
  display: flex;
  flex-direction: column;
}

.wt-profile-info strong {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  color: var(--color-heading) !important;
}

.wt-profile-info span {
  font-size: 0.875rem;
  color: var(--color-body);
}

.wt-summary {
  display: flex;
  gap: 1rem;
}

.wt-summary-item {
  flex: 1;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  padding: 1rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.wt-summary-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-bg-tint);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  color: #2563eb;
}

.wt-summary-item:last-child .wt-summary-icon {
  color: var(--color-accent);
  background: rgba(199, 10, 99, 0.1);
}

.wt-summary-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.wt-summary-value {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  color: var(--color-heading) !important;
  font-family: var(--font-heading) !important;
}

.wt-summary-value.accent {
  color: var(--color-accent) !important;
}

/* Walkthrough Responsive – Tablet */
@media (max-width: 980px) {
  .wt-summary {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .wt-summary-item {
    padding: 0.875rem 0.625rem;
  }

  .wt-summary-value {
    font-size: 1.25rem !important;
  }
}

/* Walkthrough Responsive – Mobil */
@media (max-width: 767px) {
  .wt-marker {
    width: 2rem;
  }

  .wt-dot {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }

  .wt-card {
    padding: 1rem 1.25rem;
  }

  .wt-card h4 {
    font-size: 0.9375rem !important;
  }

  .wt-card p {
    font-size: 0.8125rem !important;
  }
}

/* Vorteile Responsive – Mobil */
@media (max-width: 767px) {
  .vorteile-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .vorteil-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   ALLES IM BLICK – Dashboard-Sektion
   ========================================================================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.dashboard-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.dashboard-card-icon {
  width: 2.75rem !important;
  height: 2.75rem !important;
  min-width: 2.75rem !important;
  max-width: 2.75rem !important;
  background: rgba(37, 99, 235, 0.15) !important;
  border-radius: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: var(--color-blue-dark) !important;
}

.dashboard-card-text {
  flex: 1 !important;
  min-width: 0 !important;
}

.dashboard-card h4 {
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  color: var(--color-white) !important;
  margin-bottom: 0.25rem !important;
}

.dashboard-card p {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Dashboard Responsive – Tablet & Mobil */
@media (max-width: 980px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   BRANCHEN-KARUSSELL
   ========================================================================== */

/* Branchen-Karussell: gleiche Höhe für alle Slides */
.branchen-carousel .et_pb_group_carousel_track {
  align-items: stretch !important;
}

.branchen-carousel .et_pb_group_carousel_slide {
  height: auto !important;
}

.branchen-carousel .et_pb_group_carousel_slide > .et_pb_group {
  height: 100% !important;
}

.branchen-carousel .et_pb_code,
.branchen-carousel .et_pb_code_inner {
  height: 100% !important;
}

.branche-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

.branche-content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.branche-example {
  margin-top: auto !important;
}

/* Branchen Responsive – Tablet */
@media (max-width: 980px) {
  .branchen-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* Branchen Responsive – Mobile */
@media (max-width: 767px) {
  .branche-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

/* Grid-Variante (Code-Modul) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Karte – funktioniert in Grid UND Karussell */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.7;
  margin: 0 0 1.25rem !important;
  padding: 0 !important;
  border: none !important;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-heading);
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--color-body);
}

/* Divi Gruppen-Karussell: Slides gleich hoch */
.testimonials-carousel .et-fb-slider__slide,
.testimonials-carousel .et_pb_slide {
  height: 100% !important;
  display: flex !important;
}

.testimonials-carousel .et-fb-slider__slide > .et_pb_module,
.testimonials-carousel .et_pb_slide > .et_pb_module {
  height: 100% !important;
  display: flex !important;
}

/* Testimonials Responsive – Tablet */
@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   FAQ – Divi Akkordeon
   ========================================================================== */

.faq-accordion,
.et_pb_accordion.faq-accordion {
  display: block !important;
  columns: 2 !important;
  column-gap: 1.5rem !important;
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.faq-accordion .et_pb_toggle {
  width: 100% !important;
  min-width: 0 !important;
  break-inside: avoid !important;
  display: inline-block !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.875rem !important;
  margin-bottom: 0.75rem !important;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--color-white) !important;
  padding: 1rem 1.5rem !important;
}

.faq-accordion .et_pb_toggle:hover {
  border-color: #93c5fd !important;
}

.faq-accordion .et_pb_toggle_title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--color-heading) !important;
  font-family: var(--font-heading) !important;
  padding: 0 2rem 0 0 !important;
}

.faq-accordion .et_pb_toggle_content {
  padding: 0.75rem 2rem 0 0 !important;
  font-size: 0.9375rem !important;
  color: var(--color-body) !important;
  line-height: 1.7 !important;
}

/* Toggle-Icon Position und Farbe */
.faq-accordion .et_pb_toggle .et_pb_toggle_title::before,
.faq-accordion .et_pb_toggle .et_pb_toggle_title::after {
  color: var(--color-blue) !important;
  right: 0 !important;
}

/* Offener Toggle */
.faq-accordion .et_pb_toggle_open {
  border-color: var(--color-blue) !important;
}

/* FAQ Dark-Variante */
.kampagne-section-dark .faq-accordion .et_pb_toggle {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.kampagne-section-dark .faq-accordion .et_pb_toggle:hover {
  border-color: rgba(96, 165, 250, 0.3) !important;
}

.kampagne-section-dark .faq-accordion .et_pb_toggle_title {
  color: var(--color-white) !important;
}

.kampagne-section-dark .faq-accordion .et_pb_toggle_content {
  color: rgba(255, 255, 255, 0.7) !important;
}

.kampagne-section-dark .faq-accordion .et_pb_toggle .et_pb_toggle_title::before,
.kampagne-section-dark .faq-accordion .et_pb_toggle .et_pb_toggle_title::after {
  color: var(--color-blue-dark) !important;
}

.kampagne-section-dark .faq-accordion .et_pb_toggle_open {
  border-color: rgba(96, 165, 250, 0.4) !important;
}

/* FAQ Responsive – Mobil eine Spalte */
@media (max-width: 767px) {
  .faq-accordion,
  .et_pb_accordion.faq-accordion {
    columns: 1 !important;
    max-width: 480px !important;
  }
}

/* ==========================================================================
   PRICING – 3 Cards (Divi-nativ, dunkle Sektion)
   ========================================================================== */

/* Row-Klasse: kein Grid (Divi macht die Spalten), nur Spacing */
.pricing-cards,
.et_pb_row.pricing-cards {
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 2rem;
  padding-top: 1rem !important;
}

/* Column-Klasse */
.price-card,
.et_pb_column.price-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 1.25rem !important;
  padding: 2rem 1.5rem !important;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  overflow: visible !important;
  display: flex !important;
  flex-direction: column !important;
}

.price-card:hover,
.et_pb_column.price-card:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  transform: translateY(-4px);
}

.price-card.featured,
.et_pb_column.price-card.featured {
  background: rgba(213, 0, 87, 0.12) !important;
  border-color: rgba(213, 0, 87, 0.3) !important;
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.price-card h4 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  margin-bottom: 0.5rem !important;
  opacity: 0.9;
}

.price-amount {
  font-size: 2.625rem;
  font-weight: 800;
  color: var(--color-white);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.price-period {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.price-features li {
  padding: 0.375rem 0;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5 !important;
}

.price-features li::before {
  content: '\2713';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

/* Text-Modul in Pricing-Spalte soll flexen */
.et_pb_column.price-card > .et_pb_module {
  flex-grow: 0;
}

.et_pb_column.price-card > .et_pb_module:last-child {
  margin-top: auto !important;
}

.price-card .kampagne-btn-primary,
.price-card .kampagne-btn-outline,
.et_pb_column.price-card .kampagne-btn-primary,
.et_pb_column.price-card .kampagne-btn-outline {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.9375rem !important;
  border-radius: 0.5rem !important;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
}

.pricing-note {
  text-align: center;
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 1.5rem;
}

/* Outline-Button in dunkler Pricing-Sektion */
.kampagne-section-dark .price-card .kampagne-btn-outline {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: var(--color-white) !important;
}

.kampagne-section-dark .price-card .kampagne-btn-outline:hover {
  border-color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Pricing Responsive – Tablet */
@media (max-width: 980px) {
  .pricing-cards,
  .et_pb_row.pricing-cards {
    max-width: 400px !important;
  }
  .price-card,
  .et_pb_column.price-card {
    margin-bottom: 1.5rem !important;
  }
}

/* Pricing Responsive – Mobile */
@media (max-width: 767px) {
  .pricing-cards,
  .et_pb_row.pricing-cards {
    max-width: 100% !important;
  }
  .price-card,
  .et_pb_column.price-card {
    padding: 1.5rem 1.25rem !important;
  }
  .price-amount {
    font-size: 2rem;
  }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

/* Footer Sektion */
.kampagne-footer,
.et_pb_section.kampagne-footer {
  background: linear-gradient(180deg, #122945 0%, #162f50 100%) !important;
  color: var(--color-white) !important;
  padding: 4rem 0 2rem !important;
  margin-top: 0 !important;
}

/* Nahtloser Übergang von dunkler Sektion zum Footer */
.kampagne-section-dark + .kampagne-footer,
.et_pb_section.kampagne-section-dark + .et_pb_section.kampagne-footer {
  margin-top: -1px !important;
}

/* Footer Hauptzeile (4 Spalten) */
.kampagne-footer .footer-main {
  max-width: var(--content-width) !important;
}

/* Footer Marken-Spalte */
.kampagne-footer .footer-brand p,
.kampagne-footer .footer-brand .et_pb_text_inner {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
}

.kampagne-footer .footer-brand img {
  max-height: 56px !important;
  width: auto !important;
  margin-bottom: 1.25rem !important;
}

/* Footer Spalten-Überschriften */
.kampagne-footer .footer-col h5,
.kampagne-footer .footer-col .et_pb_text_inner h5,
.kampagne-footer .footer-col h4,
.kampagne-footer .footer-col .et_pb_text_inner h4 {
  color: var(--color-white) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1.25rem !important;
  font-family: var(--font-body) !important;
}

/* Footer Links */
.kampagne-footer .footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.kampagne-footer .footer-col ul li {
  margin-bottom: 0.625rem !important;
}

.kampagne-footer .footer-col ul a,
.kampagne-footer .footer-col a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.875rem !important;
  transition: color 0.2s !important;
}

.kampagne-footer .footer-col ul a:hover,
.kampagne-footer .footer-col a:hover {
  color: var(--color-white) !important;
}

/* Footer Bottom (Copyright) */
.kampagne-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1.5rem 0 0 !important;
  margin-top: 0 !important;
}

.kampagne-footer .footer-bottom .et_pb_text_inner,
.kampagne-footer .footer-bottom .et_pb_text_inner p {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.8125rem !important;
  margin-bottom: 0 !important;
}

/* Footer: Alle Text-Module weiß */
.kampagne-footer .et_pb_text_inner,
.kampagne-footer .et_pb_text_inner p,
.kampagne-footer .et_pb_text_inner a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.kampagne-footer .et_pb_text_inner a:hover {
  color: var(--color-white) !important;
}

/* Footer Responsive – Tablet */
@media (max-width: 980px) {
  .kampagne-footer .footer-main .et_pb_row {
    gap: 2rem !important;
  }
}

/* Footer Responsive – Mobile */
@media (max-width: 767px) {
  .kampagne-footer,
  .et_pb_section.kampagne-footer {
    overflow: hidden !important;
    padding: 2.5rem 1rem 1.5rem !important;
  }

  .kampagne-footer .et_pb_row {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .kampagne-footer .footer-brand img {
    max-height: 40px !important;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center !important; }
.text-left   { text-align: left !important; }
.text-right  { text-align: right !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

/* ==========================================================================
   GLOBALE MOBILE FIXES (bereinigt)
   Nur gezielte Regeln – Divi 5 handled Column-Stacking selbst.
   KEINE globalen .et_pb_row / .et_pb_column Overrides!
   ========================================================================== */

/* Overflow global verhindern (horizontaler Scroll) */
html, body {
  overflow-x: hidden !important;
}

body,
#page-container {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* Content-Bereich: nichts darf breiter sein als der Viewport */
#main-area,
#main-content,
.et_builder_inner_content,
#et-boc {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Rows & Columns: box-sizing sicherstellen */
.et_pb_row,
.et_pb_row_inner {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* Overflow auf Content-Sektionen – Header AUSGENOMMEN */
.et_pb_section:not(.kampagne-header) {
  overflow: hidden !important;
}

/* Hero & Dark: overflow-y sichtbar (Floating Cards, PLZ-Kreise), x hidden */
.et_pb_section.kampagne-hero,
.et_pb_section.kampagne-section-dark {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}
