/**
 * ============================================================
 *  BKIT-Service – Helix Ultimate Custom CSS
 *  Datei:    templates/helix_ultimate/css/custom.css
 *  Version:  1.4.3 | Stand: 2026
 *  Hinweis:  Diese Datei NIEMALS über den Template-Manager
 *            überschreiben – immer direkt per FTP/Dateimanager.
 * ============================================================
 *
 *  INHALTSVERZEICHNIS
 *  ------------------
 *  01  CSS Custom Properties (Design Tokens)
 *  02  Google Fonts Import
 *  03  Reset & Base
 *  04  Topbar
 *  05  Navigation / Header
 *  06  Hamburger / Mobile Menu
 *  07  Breadcrumb
 *  08  Hero Section
 *  09  USP Strip
 *  10  Section Basics
 *  11  Cards (Service, Feature, Info)
 *  12  Stats / Zahlen-Leiste
 *  13  Zitat / Testimonial
 *  14  CTA-Bereich
 *  15  Buttons
 *  16  Kontaktformular
 *  17  Kontakt-Info-Blöcke
 *  18  Prozeß-Schritte (Steps)
 *  19  Preistabelle / Pakete
 *  20  Intro-Grid (2-spaltig)
 *  21  Material-Grid
 *  22  Footer
 *  23  Impressum & Datenschutz (Textseiten)
 *  24  Responsive – Tablet (max 992px)
 *  25  Responsive – Mobile (max 768px)
 *  26  Responsive – Small Mobile (max 480px)
 *  27  Helix-Ultimate-Overrides
 *  28  Logo Fix (Inspektor-basiert) + Header-Zentrierung
 * ============================================================
 */


/* ============================================================
   01  CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Hauptfarben */
  --bkit-blue:        #1a3a6e;
  --bkit-blue-dark:   #0f2347;
  --bkit-blue-light:  #f0f4ff;
  --bkit-blue-mid:    #e6f0fb;
  --bkit-orange:      #e8610a;
  --bkit-orange-h:    #f07830;   /* Hover-Variante */

  /* Grün (Refurbished/Vorteil-Badges) */
  --bkit-green:       #3b6d11;
  --bkit-green-light: #eaf3de;
  --bkit-green-mid:   #c0dd97;

  /* Neutrale Töne */
  --bkit-border:      #e0e8f0;
  --bkit-border-card: #e5ebf5;
  --bkit-bg-page:     #f7f9ff;
  --bkit-bg-footer:   #f0f4ff;
  --bkit-text:        #111111;
  --bkit-text-muted:  #555555;
  --bkit-text-light:  #888888;

  /* Typografie */
  --bkit-font:        'Plus Jakarta Sans', sans-serif;
  --bkit-base-size:   14px;
  --bkit-line-height: 1.6;

  /* Abstände */
  --bkit-section-pad: 40px 32px;
  --bkit-radius:      10px;
  --bkit-radius-sm:   6px;
  --bkit-radius-lg:   14px;

  /* Schatten */
  --bkit-shadow-sm:   0 2px 8px rgba(26,58,110,0.08);
  --bkit-shadow-md:   0 4px 20px rgba(26,58,110,0.12);
  --bkit-shadow-lg:   0 8px 40px rgba(26,58,110,0.16);
}


/* ============================================================
   02  GOOGLE FONTS IMPORT
   Alternativ: Im Helix-Ultimate Template-Manager unter
   "Typography > Custom Font" als Google Font einbinden.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');


/* ============================================================
   03  RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--bkit-font) !important;
  color: var(--bkit-text) !important;
  background: #ffffff !important;
  font-size: var(--bkit-base-size) !important;
  line-height: var(--bkit-line-height) !important;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bkit-font) !important;
  line-height: 1.2;
}

/* Tabler Icons via CDN – wird im Template-Manager als Custom Code eingebunden */
/* <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css"> */


/* ============================================================
   04  TOPBAR
   ============================================================ */
.bkit-topbar,
.sp-module.topbar-module {
  background: var(--bkit-text) !important;
  padding: 7px 32px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

/* Topbar Container volle Breite */
#sp-top-bar {
  background: #111111 !important;
  width: 100% !important;
}

#sp-top-bar .container,
#sp-top-bar .container-inner {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#sp-top-bar .row {
  margin: 0 !important;
  align-items: center !important;
}

/* sp-top1 (links): Kontaktdaten */
#sp-top1 {
  display: flex !important;
  align-items: center !important;
}

#sp-top1 .sp-column {
  text-align: left !important;
}

/* sp-top2 (rechts): Notfall-Notice */
#sp-top2 {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

#sp-top2 .sp-column {
  text-align: right !important;
}

.bkit-topbar a,
.bkit-topbar .topbar-link {
  color: #aaaaaa !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.bkit-topbar a:hover {
  color: #ffffff !important;
}

.bkit-topbar .topbar-notice {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--bkit-orange-h) !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}


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

/* Helix-Header-Wrapper */
#sp-header,
.sp-header,
.navbar-wrapper {
  background: #ffffff !important;
  border-bottom: 1px solid var(--bkit-border) !important;
  box-shadow: none !important;
}

/* Sticky Navigation */
#sp-header.sticky,
.sp-header.sticky,
.navbar.affix {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background: #ffffff !important;
  box-shadow: var(--bkit-shadow-sm) !important;
}

/* Logo-Bereich – Feinsteuerung in Sektion 28 */
.navbar-brand {
  padding: 14px 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Logo-Mark (Quadrat mit "BK") */
.bkit-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--bkit-blue);
  border-radius: var(--bkit-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.bkit-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--bkit-blue);
  display: block;
  line-height: 1.2;
}

.bkit-logo-sub {
  font-size: 10px;
  color: var(--bkit-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 1px;
}

/* Navigations-Links */
.sp-megamenu-parent > li > a,
#sp-menu ul li a,
.nav.menu li a {
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  padding: 8px 11px !important;
  border-radius: var(--bkit-radius-sm) !important;
  color: var(--bkit-text-muted) !important;
  font-weight: 500 !important;
  transition: background 0.18s, color 0.18s !important;
}

.sp-megamenu-parent > li > a:hover,
#sp-menu ul li a:hover,
.nav.menu li a:hover {
  background: var(--bkit-blue-light) !important;
  color: var(--bkit-blue) !important;
}

.sp-megamenu-parent > li.active > a,
#sp-menu ul li.active a,
.nav.menu li.active a {
  color: var(--bkit-blue) !important;
  font-weight: 700 !important;
  background: var(--bkit-blue-light) !important;
}

/* CTA-Button in der Navigation */
.sp-megamenu-parent > li.nav-cta > a,
#sp-menu ul li.nav-cta a,
.nav.menu li.nav-cta a,
.menu-item-cta > a {
  background: var(--bkit-orange) !important;
  color: #ffffff !important;
  padding: 8px 15px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.sp-megamenu-parent > li.nav-cta > a:hover,
#sp-menu ul li.nav-cta a:hover,
.menu-item-cta > a:hover {
  background: var(--bkit-orange-h) !important;
  color: #ffffff !important;
}

/* Aktiver Menüpunkt – kein Herausspringen
   Überschreibt preset2.css und template.css */
ul.sp-megamenu-parent li.sp-menu-item.active > a,
ul.sp-megamenu-parent li.sp-menu-item.current-item > a,
ul.sp-megamenu-parent li.sp-menu-item.active > a[aria-current="page"],
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active:hover > a,
.sp-megamenu-parent > li.current-item > a {
  color: var(--bkit-blue) !important;
  font-weight: 700 !important;
  background: transparent !important;
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  padding: 8px 11px !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 2px solid var(--bkit-blue) !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  line-height: 1.4 !important;
}

/* li selbst auch zurücksetzen */
ul.sp-megamenu-parent li.sp-menu-item.active,
ul.sp-megamenu-parent li.sp-menu-item.current-item {
  position: static !important;
  top: auto !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ============================================================
   30  HELIX INLINE-STYLE OVERRIDES
   Helix injiziert im <head> inline Styles die unsere CSS
   überschreiben. Diese hier gezielt zurücksetzen.
   ============================================================ */

/* Arial-Override zurücksetzen → Plus Jakarta Sans */
.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a,
.menu.nav-pills > li > a,
.menu.nav-pills > li > span {
  font-family: var(--bkit-font) !important;
  text-decoration: none !important;
}

/* preset2.css setzt active-Link auf Orange #ec430f → zurücksetzen */
.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li.active:hover > a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active > a {
  color: var(--bkit-blue) !important;
  font-weight: 700 !important;
}

/* template.css setzt font-weight: 500 → überschreiben */
header#sp-header .sp-megamenu-parent > li.active > a {
  font-weight: 700 !important;
}

/* Logo-Höhe: Helix setzt inline height="42" am img-Tag.
   CSS mit !important überschreibt das. */
.logo-image,
img.logo-image {
  height: 55px !important;
  width: auto !important;
  max-height: none !important;
}

/* sppb-row-container max-width: Helix setzt 1320px inline.
   Wir wollen 1200px aus unserem Container-Setting. */
.sppb-row-container {
  max-width: 1200px !important;
}


/* ============================================================
   06  HAMBURGER / MOBILE MENU
   ============================================================ */
.navbar-toggle,
.sp-hamburger {
  display: none;
  background: none !important;
  border: none !important;
  padding: 6px !important;
  cursor: pointer !important;
}

.navbar-toggle .icon-bar,
.sp-hamburger span {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--bkit-blue) !important;
  margin: 4px 0 !important;
  border-radius: 2px !important;
  transition: all 0.2s !important;
}


/* ============================================================
   07  BREADCRUMB
   ============================================================ */
.sp-breadcrumbs,
#sp-breadcrumbs,
.breadcrumb-wrapper {
  background: var(--bkit-bg-page) !important;
  border-bottom: 1px solid var(--bkit-border) !important;
  padding: 9px 32px !important;
  font-size: 12px !important;
  color: var(--bkit-text-light) !important;
}

.sp-breadcrumbs a,
.breadcrumb-wrapper a {
  color: var(--bkit-blue) !important;
  font-weight: 500 !important;
}

.sp-breadcrumbs a:hover,
.breadcrumb-wrapper a:hover {
  color: var(--bkit-orange) !important;
}

.sp-breadcrumbs .divider,
.breadcrumb-wrapper .sep {
  color: #cccccc !important;
  margin: 0 6px !important;
}

.sp-breadcrumbs .active,
.breadcrumb-wrapper .current {
  color: var(--bkit-blue) !important;
  font-weight: 600 !important;
}


/* ============================================================
   08  HERO SECTION
   ============================================================ */
.bkit-hero {
  position: relative;
  padding: 60px 32px;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bkit-blue);
}

/* Hintergrundbild – Klasse je Seite anpassen */
.bkit-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay über Bild */
.bkit-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--bkit-blue);
  opacity: 0.85;
}

/* Hero-Inhalt */
.bkit-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Startseite: 2-spaltig */
.bkit-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

/* Badge-Tag im Hero */
.bkit-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Hero-Headline */
.bkit-hero h1,
.bkit-hero .hero-title {
  font-size: 38px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 14px !important;
}

/* Unterseiten-Hero etwas kleiner */
.bkit-hero.subpage h1,
.bkit-hero.subpage .hero-title {
  font-size: 30px !important;
}

/* Orange Span in H1 */
.bkit-hero h1 span,
.bkit-hero .hero-title span {
  color: var(--bkit-orange-h) !important;
}

.bkit-hero p,
.bkit-hero .hero-text {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.7 !important;
  max-width: 520px !important;
  margin-bottom: 0 !important;
}

/* Hero-Buttons */
.bkit-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Hero Trust-Bar */
.bkit-hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.bkit-trust-avatars {
  display: flex;
}

.bkit-trust-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin-left: -8px;
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bkit-trust-avatars .bkit-trust-av:first-child {
  margin-left: 0;
}

.bkit-trust-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.bkit-trust-text strong {
  color: #ffffff;
}

/* Hero-Karte (Startseite rechte Spalte) */
.bkit-hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--bkit-radius-lg);
  padding: 20px;
}

.bkit-hero-card-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}

.bkit-hero-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 7px;
}

.bkit-hero-row-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(232, 97, 10, 0.3);
  color: #f09050;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bkit-hero-row-label {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.bkit-hero-row-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  padding: 2px 7px;
  border-radius: 10px;
}


/* ============================================================
   09  USP STRIP
   ============================================================ */
.bkit-usp-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--bkit-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bkit-usp-item {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--bkit-border);
}

.bkit-usp-item:last-child {
  border-right: none;
}

.bkit-usp-icon {
  width: 34px;
  height: 34px;
  background: #fff4ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bkit-orange);
  font-size: 17px;
  flex-shrink: 0;
}

.bkit-usp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--bkit-text);
}

.bkit-usp-sub {
  font-size: 11px;
  color: var(--bkit-text-light);
}


/* ============================================================
   10  SECTION BASICS
   ============================================================ */
.bkit-section,
.sp-pagebuilder .sppb-section {
  padding: var(--bkit-section-pad);
}

.bkit-section.bg-page,
.sppb-section.bg-page {
  background: var(--bkit-bg-page) !important;
}

.bkit-section.bg-white,
.sppb-section.bg-white {
  background: #ffffff !important;
}

.bkit-section.bg-blue,
.sppb-section.bg-blue {
  background: var(--bkit-blue) !important;
}

/* Abschnitts-Label (orange, uppercase) */
.bkit-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--bkit-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* Abschnitts-Titel */
.bkit-section-title,
.sppb-addon-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--bkit-blue) !important;
  letter-spacing: -0.3px !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}

/* Abschnitts-Untertitel */
.bkit-section-sub {
  font-size: 13px;
  color: var(--bkit-text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 24px;
}

/* Divider */
.bkit-divider {
  border: none;
  border-top: 1px solid var(--bkit-border);
  margin: 32px 0;
}


/* ============================================================
   11  CARDS
   ============================================================ */

/* Service-Card */
.bkit-service-card {
  background: #ffffff;
  border: 1px solid var(--bkit-border-card);
  border-radius: var(--bkit-radius);
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bkit-service-card:hover {
  box-shadow: var(--bkit-shadow-md);
  transform: translateY(-2px);
}

/* Feature-Card */
.bkit-feat-card {
  background: #ffffff;
  border: 1px solid var(--bkit-border-card);
  border-radius: var(--bkit-radius);
  padding: 22px 20px;
  transition: box-shadow 0.2s;
}

.bkit-feat-card:hover {
  box-shadow: var(--bkit-shadow-sm);
}

/* Icon-Box in Cards */
.bkit-card-icon,
.bkit-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--bkit-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bkit-blue);
  font-size: 20px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.bkit-card-icon.orange {
  background: #fff4ee;
  color: var(--bkit-orange);
}

.bkit-card-icon.green {
  background: var(--bkit-green-light);
  color: var(--bkit-green);
}

/* Card-Titel */
.bkit-card h3,
.bkit-feat-card h3,
.bkit-service-card h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--bkit-blue) !important;
  margin-bottom: 6px !important;
}

/* Card-Text */
.bkit-card p,
.bkit-feat-card p,
.bkit-service-card p {
  font-size: 12px !important;
  color: var(--bkit-text-muted) !important;
  line-height: 1.6 !important;
}

/* Grid: 3-spaltig */
.bkit-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Grid: 4-spaltig */
.bkit-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Grid: 2-spaltig */
.bkit-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Neuware vs. Refurbished Vergleichs-Cards */
.bkit-opt-card {
  border-radius: var(--bkit-radius);
  padding: 22px;
  border: 2px solid var(--bkit-border-card);
  background: #ffffff;
}

.bkit-opt-card.new {
  border-color: var(--bkit-blue-mid);
}

.bkit-opt-card.refurbished {
  border-color: var(--bkit-green-mid);
}

.bkit-opt-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.bkit-opt-badge.new {
  background: var(--bkit-blue-mid);
  color: var(--bkit-blue);
}

.bkit-opt-badge.refurbished {
  background: var(--bkit-green-light);
  color: var(--bkit-green);
}

/* Info-Card (Buchungsinformationen etc.) */
.bkit-info-card {
  background: var(--bkit-blue-light);
  border: 1px solid var(--bkit-blue-mid);
  border-radius: var(--bkit-radius);
  padding: 18px 20px;
}

.bkit-info-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bkit-blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ============================================================
   12  STATS / ZAHLEN-LEISTE
   ============================================================ */
.bkit-stats {
  background: var(--bkit-blue-light);
  border-radius: var(--bkit-radius);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.bkit-stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--bkit-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}

.bkit-stat-label {
  font-size: 11px;
  color: var(--bkit-text-muted);
  margin-top: 4px;
}


/* ============================================================
   13  ZITAT / TESTIMONIAL
   ============================================================ */
.bkit-quote-card {
  background: #fff4ee;
  border-left: 3px solid var(--bkit-orange);
  border-radius: 0 var(--bkit-radius) var(--bkit-radius) 0;
  padding: 18px 20px;
}

.bkit-quote-mark {
  font-size: 36px;
  color: var(--bkit-orange);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 6px;
}

.bkit-quote-text {
  font-size: 13px;
  color: var(--bkit-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.bkit-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bkit-quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bkit-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
}

.bkit-quote-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--bkit-text);
}

.bkit-quote-role {
  font-size: 10px;
  color: var(--bkit-text-light);
}


/* ============================================================
   14  CTA-BEREICH
   ============================================================ */
.bkit-cta {
  background: var(--bkit-blue) !important;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.bkit-cta h2,
.bkit-cta .cta-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.3px !important;
}

.bkit-cta p,
.bkit-cta .cta-text {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.6 !important;
}

.bkit-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.bkit-cta-phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--bkit-orange-h) !important;
  letter-spacing: -0.3px;
}

.bkit-cta-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.bkit-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* ============================================================
   15  BUTTONS
   ============================================================ */

/* Primär – Orange */
.bkit-btn,
.btn-bkit-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: var(--bkit-orange) !important;
  color: #ffffff !important;
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.18s !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

.bkit-btn:hover,
.btn-bkit-primary:hover {
  background: var(--bkit-orange-h) !important;
  color: #ffffff !important;
}

/* Sekundär – Blau */
.bkit-btn.secondary,
.btn-bkit-secondary {
  background: var(--bkit-blue) !important;
  color: #ffffff !important;
}

.bkit-btn.secondary:hover,
.btn-bkit-secondary:hover {
  background: var(--bkit-blue-dark) !important;
  color: #ffffff !important;
}

/* Outline Weiß – auf dunklem Hintergrund */
.bkit-btn-outline-white,
.btn-bkit-outline-white {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 2px solid #ffffff !important;
  cursor: pointer !important;
  transition: background 0.18s !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

.bkit-btn-outline-white:hover,
.btn-bkit-outline-white:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

/* Outline Blau – auf hellem Hintergrund */
.bkit-btn-outline-blue,
.btn-bkit-outline-blue {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: transparent !important;
  color: var(--bkit-blue) !important;
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 2px solid var(--bkit-blue) !important;
  cursor: pointer !important;
  transition: background 0.18s, color 0.18s !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
}

.bkit-btn-outline-blue:hover,
.btn-bkit-outline-blue:hover {
  background: var(--bkit-blue-light) !important;
  color: var(--bkit-blue) !important;
}

/* Klein */
.bkit-btn.sm {
  font-size: 12px !important;
  padding: 7px 14px !important;
}


/* ============================================================
   16  KONTAKTFORMULAR
   ============================================================ */
.bkit-form-wrap {
  background: #ffffff;
  border: 1px solid var(--bkit-border-card);
  border-radius: var(--bkit-radius-lg);
  padding: 24px;
}

.bkit-form-wrap h2,
.bkit-form-wrap .form-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--bkit-blue) !important;
  margin-bottom: 16px !important;
}

.bkit-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.bkit-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.bkit-form-group label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--bkit-text) !important;
}

.bkit-form-group input,
.bkit-form-group select,
.bkit-form-group textarea {
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  color: var(--bkit-text) !important;
  background: #ffffff !important;
  border: 1px solid var(--bkit-border) !important;
  border-radius: var(--bkit-radius-sm) !important;
  padding: 9px 12px !important;
  width: 100% !important;
  transition: border-color 0.18s !important;
  outline: none !important;
}

.bkit-form-group input:focus,
.bkit-form-group select:focus,
.bkit-form-group textarea:focus {
  border-color: var(--bkit-blue) !important;
  box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.08) !important;
}

.bkit-form-group textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

/* Joomla/SP Contact Form Override */
.contact-form .control-group,
.sp-contact .form-group {
  margin-bottom: 12px !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.sp-contact input,
.sp-contact textarea {
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  border: 1px solid var(--bkit-border) !important;
  border-radius: var(--bkit-radius-sm) !important;
  padding: 9px 12px !important;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  background: var(--bkit-orange) !important;
  color: #ffffff !important;
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  cursor: pointer !important;
}


/* ============================================================
   17  KONTAKT-INFO-BLÖCKE
   ============================================================ */
.bkit-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bkit-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bkit-bg-page);
  border-radius: var(--bkit-radius);
  padding: 14px;
}

.bkit-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bkit-blue-light);
  color: var(--bkit-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bkit-contact-icon.orange {
  background: #fff4ee;
  color: var(--bkit-orange);
}

.bkit-contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--bkit-text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.bkit-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--bkit-blue);
}

.bkit-contact-value a {
  color: var(--bkit-blue) !important;
}

.bkit-contact-value a:hover {
  color: var(--bkit-orange) !important;
}

.bkit-contact-note {
  font-size: 11px;
  color: var(--bkit-text-light);
  margin-top: 2px;
}

/* Öffnungszeiten-Tabelle */
.bkit-hours-table {
  width: 100%;
  font-size: 12px;
}

.bkit-hours-table td {
  padding: 5px 0;
  vertical-align: top;
}

.bkit-hours-table td:first-child {
  color: var(--bkit-text-muted);
  width: 110px;
}

.bkit-hours-table td:last-child {
  font-weight: 500;
  color: var(--bkit-text);
}

/* TeamViewer-Box */
.bkit-teamviewer-box {
  background: var(--bkit-blue);
  border-radius: var(--bkit-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bkit-teamviewer-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

.bkit-teamviewer-text p {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 2px 0 0 !important;
}

.bkit-teamviewer-text strong {
  font-size: 13px;
  color: #ffffff;
}


/* ============================================================
   18  PROZESS-SCHRITTE (STEPS)
   ============================================================ */
.bkit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Verbindungslinie zwischen Steps */
.bkit-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: var(--bkit-border);
  z-index: 0;
}

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

.bkit-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bkit-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 3px solid #ffffff;
  box-shadow: var(--bkit-shadow-sm);
}

.bkit-step h4 {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--bkit-blue) !important;
  margin-bottom: 4px !important;
}

.bkit-step p {
  font-size: 11px !important;
  color: var(--bkit-text-muted) !important;
}


/* ============================================================
   19  PREISTABELLE / PAKETE
   ============================================================ */
.bkit-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bkit-pkg-card {
  background: #ffffff;
  border: 1px solid var(--bkit-border-card);
  border-radius: var(--bkit-radius-lg);
  padding: 22px 20px;
  text-align: center;
  position: relative;
}

.bkit-pkg-card.featured {
  border-color: var(--bkit-blue);
  border-width: 2px;
  box-shadow: var(--bkit-shadow-md);
}

.bkit-pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bkit-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bkit-pkg-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--bkit-blue);
  margin-bottom: 4px;
}

.bkit-pkg-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--bkit-text);
  letter-spacing: -0.5px;
  margin: 10px 0;
}

.bkit-pkg-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--bkit-text-muted);
}

.bkit-pkg-features {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  text-align: left;
}

.bkit-pkg-features li {
  font-size: 12px;
  color: var(--bkit-text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--bkit-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bkit-pkg-features li:last-child {
  border-bottom: none;
}

.bkit-pkg-features li i {
  color: var(--bkit-orange);
  font-size: 14px;
  flex-shrink: 0;
}


/* ============================================================
   20  INTRO-GRID (2-SPALTIG)
   ============================================================ */
.bkit-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.bkit-intro-text p {
  font-size: 13px;
  color: var(--bkit-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.bkit-intro-text p strong {
  color: var(--bkit-text);
  font-weight: 600;
}

/* Intro-Card rechts */
.bkit-intro-card {
  background: var(--bkit-blue-light);
  border: 1px solid var(--bkit-blue-mid);
  border-radius: var(--bkit-radius);
  padding: 18px 20px;
}

.bkit-intro-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bkit-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bkit-ic-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--bkit-border);
}

.bkit-ic-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bkit-ic-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bkit-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.bkit-ic-label {
  font-size: 12px;
  color: var(--bkit-text);
}


/* ============================================================
   21  MATERIAL-GRID (Lasergravur etc.)
   ============================================================ */
.bkit-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bkit-mat-item {
  background: #ffffff;
  border: 1px solid var(--bkit-border-card);
  border-radius: var(--bkit-radius);
  padding: 14px;
  text-align: center;
}

.bkit-mat-icon {
  font-size: 24px;
  color: var(--bkit-blue);
  margin-bottom: 6px;
}

.bkit-mat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--bkit-text);
}

.bkit-mat-sub {
  font-size: 10px;
  color: var(--bkit-text-light);
  margin-top: 2px;
}


/* ============================================================
   22  FOOTER
   ============================================================ */
#sp-footer,
.sp-footer,
footer.bkit-footer {
  background: var(--bkit-bg-footer) !important;
  border-top: 2px solid var(--bkit-blue) !important;
  padding: 0 !important;
}

/* Footer Container volle Breite */
#sp-footer .container,
#sp-footer .container-inner {
  max-width: 100% !important;
  padding: 0 !important;
}

#sp-footer .row {
  margin: 0 !important;
}

#sp-footer1 {
  padding: 0 !important;
}

/* Helix fügt manchmal einen section-wrapper mit padding ein */
#sp-footer > .container > .container-inner > .row > div,
#sp-footer .sp-column {
  padding: 0 !important;
}

/* Weißraum vor Footer entfernen */
#sp-main-body > .container > .sp-column,
.sp-pagebuilder-wrapper + * {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.bkit-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
}

.bkit-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bkit-footer-mark {
  width: 34px;
  height: 34px;
  background: var(--bkit-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.bkit-footer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bkit-blue);
}

.bkit-footer-addr {
  font-size: 11px;
  color: var(--bkit-text-muted);
  line-height: 1.8;
}

.bkit-footer-addr a {
  color: var(--bkit-blue) !important;
}

.bkit-footer-addr a:hover {
  color: var(--bkit-orange) !important;
}

.bkit-footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.bkit-footer-links a {
  font-size: 12px;
  color: var(--bkit-blue);
  font-weight: 500;
}

.bkit-footer-links a:hover {
  color: var(--bkit-orange);
}

.bkit-footer-bottom {
  border-top: 1px solid #c8d4e8;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bkit-footer-copy {
  font-size: 11px;
  color: var(--bkit-text-light);
}

.bkit-footer-legal {
  display: flex;
  gap: 16px;
}

.bkit-footer-legal a {
  font-size: 11px;
  color: var(--bkit-text-muted);
}

.bkit-footer-legal a:hover {
  color: var(--bkit-orange);
}


/* ============================================================
   23  IMPRESSUM & DATENSCHUTZ (Textseiten)
   v1.4.3: dse-wrap für Joomla-Artikel hinzugefügt
   ============================================================ */

/* Legacy bkit-legal-wrap – unverändert */
.bkit-legal-wrap {
  max-width: 760px;
  margin: 36px auto;
  padding: 0 32px;
}

.bkit-legal-wrap h1 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--bkit-blue) !important;
  margin-bottom: 6px !important;
}

.bkit-legal-wrap .bkit-section-label {
  margin-bottom: 16px;
}

.bkit-block {
  margin-bottom: 28px;
}

.bkit-block-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bkit-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bkit-block-title i {
  color: var(--bkit-orange);
}

.bkit-block p {
  font-size: 13px;
  color: var(--bkit-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.bkit-block ul {
  padding-left: 18px;
  margin-bottom: 8px;
}

.bkit-block ul li {
  font-size: 13px;
  color: var(--bkit-text-muted);
  line-height: 1.7;
  margin-bottom: 3px;
}

.bkit-block a {
  color: var(--bkit-blue);
  text-decoration: underline;
}

.bkit-block a:hover {
  color: var(--bkit-orange);
}

/* NEU v1.4.3: dse-wrap – Joomla Beitrags-Einbindung
   Überschreibt Template text-align: center zuverlässig */
.dse-wrap {
  max-width: 720px;
  font-family: var(--bkit-font) !important;
  text-align: left !important;
  padding-right: 24px;
  overflow: hidden;
}

.dse-wrap * {
  text-align: left !important;
  box-sizing: border-box;
}

.dse-wrap .dse-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--bkit-blue);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.dse-wrap .dse-sub {
  font-size: 13px;
  color: var(--bkit-text-light);
  margin-bottom: 28px;
}

.dse-wrap .block {
  margin-bottom: 28px;
}

.dse-wrap .block-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--bkit-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex !important;
  align-items: center;
  gap: 7px;
  padding-left: 0 !important;
}

.dse-wrap .block-title i {
  font-size: 15px;
  color: var(--bkit-orange);
  flex-shrink: 0;
}

.dse-wrap .block p {
  font-size: 13px;
  color: #444444;
  line-height: 1.75;
  margin: 0;
  padding: 0;
  text-align: left !important;
}

.dse-wrap .block p + p {
  margin-top: 10px !important;
}

.dse-wrap .block ul {
  margin: 10px 0 10px 20px !important;
  padding: 0;
}

.dse-wrap .block ul li {
  font-size: 13px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 4px;
  list-style: disc;
  text-align: left !important;
}

.dse-wrap .block a {
  color: var(--bkit-blue);
  font-weight: 500;
}

.dse-wrap .block a:hover {
  color: var(--bkit-orange);
}

.dse-wrap .divider {
  border: none;
  border-top: 1px solid var(--bkit-border-card);
  margin: 28px 0;
}


/* ============================================================
   24  RESPONSIVE – TABLET (max 992px)
   ============================================================ */
@media (max-width: 992px) {
  .bkit-hero-grid {
    grid-template-columns: 1fr;
  }

  .bkit-hero-card {
    display: none;
  }

  .bkit-usp-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .bkit-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bkit-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bkit-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .bkit-steps::before {
    display: none;
  }

  .bkit-pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   25  RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Globale Abstände */
  .bkit-section,
  .sp-pagebuilder .sppb-section,
  #sp-header,
  #sp-footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Topbar */
  .bkit-topbar {
    padding-left: 16px !important;
    padding-right: 16px !important;
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
  }

  /* Navigation verstecken, Hamburger zeigen */
  #sp-menu,
  .sp-megamenu-parent,
  .nav.menu {
    display: none !important;
  }

  .navbar-toggle,
  .sp-hamburger {
    display: block !important;
  }

  /* Hero */
  .bkit-hero {
    padding: 40px 16px !important;
  }

  .bkit-hero h1,
  .bkit-hero .hero-title {
    font-size: 26px !important;
  }

  .bkit-hero-btns {
    flex-direction: column;
    gap: 8px;
  }

  .bkit-btn,
  .bkit-btn-outline-white {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Grids → 1-spaltig */
  .bkit-grid-2,
  .bkit-grid-3,
  .bkit-grid-4,
  .bkit-intro-grid,
  .bkit-mat-grid,
  .bkit-pkg-grid,
  .bkit-form-row {
    grid-template-columns: 1fr !important;
  }

  /* USP Strip → 2-spaltig */
  .bkit-usp-strip {
    grid-template-columns: 1fr 1fr !important;
  }

  .bkit-usp-item {
    border-right: none !important;
    border-bottom: 1px solid var(--bkit-border) !important;
  }

  /* Stats */
  .bkit-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Steps */
  .bkit-steps {
    grid-template-columns: 1fr 1fr !important;
  }

  .bkit-steps::before {
    display: none !important;
  }

  /* CTA */
  .bkit-cta {
    grid-template-columns: 1fr !important;
  }

  .bkit-cta-right {
    align-items: flex-start !important;
  }

  /* Footer */
  .bkit-footer-inner {
    grid-template-columns: 1fr !important;
  }

  .bkit-footer-links {
    align-items: flex-start !important;
  }

  .bkit-footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Breadcrumb */
  .sp-breadcrumbs,
  #sp-breadcrumbs {
    padding: 9px 16px !important;
  }

  /* Legal */
  .bkit-legal-wrap {
    padding: 0 16px !important;
  }

  .dse-wrap {
    padding-right: 0 !important;
  }
}


/* ============================================================
   26  RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .bkit-usp-strip {
    grid-template-columns: 1fr !important;
  }

  .bkit-stats {
    grid-template-columns: 1fr !important;
  }

  .bkit-steps {
    grid-template-columns: 1fr !important;
  }

  .bkit-hero h1,
  .bkit-hero .hero-title {
    font-size: 22px !important;
  }

  .bkit-section-title {
    font-size: 20px !important;
  }

  .bkit-cta h2 {
    font-size: 18px !important;
  }

  .bkit-cta-phone {
    font-size: 18px !important;
  }
}


/* ============================================================
   27  HELIX ULTIMATE OVERRIDES
   Korrigiert generische Helix-Styles, die mit dem bkit-Design
   kollidieren könnten.
   ============================================================ */

/* Helix Container-Breite */
#sp-page-builder .sp-pb-container,
.container,
.container-fluid {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* SP Page Builder Section Padding zurücksetzen (wir steuern selbst) */
.sppb-section > .sppb-container-inner {
  padding: 0 !important;
}

/* Helix default link color override */
#sp-main-body a,
.sp-content a {
  color: var(--bkit-blue);
}

#sp-main-body a:hover,
.sp-content a:hover {
  color: var(--bkit-orange);
}

/* Joomla Alert-Boxen anpassen */
.alert {
  border-radius: var(--bkit-radius) !important;
  font-family: var(--bkit-font) !important;
  font-size: 13px !important;
}

/* Helix-Dropdown-Menü */
.sp-megamenu-parent .sp-dropdown {
  border: 1px solid var(--bkit-border) !important;
  border-radius: var(--bkit-radius) !important;
  box-shadow: var(--bkit-shadow-md) !important;
  background: #ffffff !important;
}

.sp-megamenu-parent .sp-dropdown li a {
  color: var(--bkit-text-muted) !important;
  font-size: 13px !important;
  padding: 8px 14px !important;
}

.sp-megamenu-parent .sp-dropdown li a:hover {
  background: var(--bkit-blue-light) !important;
  color: var(--bkit-blue) !important;
}

/* Helix-Offcanvas-Menü (Mobile) */
#sp-offcanvas {
  background: var(--bkit-blue) !important;
}

#sp-offcanvas .sp-offcanvas-inner a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--bkit-font) !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#sp-offcanvas .sp-offcanvas-inner a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

#sp-offcanvas .close-btn,
#sp-offcanvas .offcanvas-close {
  color: #ffffff !important;
}

/* System-Meldungen */
#system-message-container {
  padding: 0 32px !important;
  margin-top: 10px !important;
}

/* Seiteninhalt Mindest-Höhe */
#sp-main-body {
  min-height: 60vh;
}


/* ============================================================
   28  LOGO FIX (basierend auf Browser-Inspektor)
   Exakte Klassen: img.logo-image in div.logo > div.sp-column
   > div#sp-logo > div.row.align-items-center
   ============================================================ */

/* Logo-Bild Größe */
img.logo-image {
  height: 55px !important;
  width: auto !important;
  display: block !important;
  max-height: none !important;
}

/* Logo-Container vertikal zentrieren */
#sp-logo.col-auto {
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

div.sp-column > div.logo {
  display: flex !important;
  align-items: center !important;
}

div.logo a {
  display: flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

/* Header Row Mindesthöhe – Logo hat genug Luft */
header#sp-header div.row.align-items-center {
  min-height: 72px !important;
}

/* Verhindert dass Helix das Bild auf Logo-Height-Einstellung begrenzt */
#sp-logo img,
.sp-column .logo img {
  height: 55px !important;
  width: auto !important;
  max-width: none !important;
}

/* Header selbst als Flex-Container – Logo vertikal zentriert */
header#sp-header {
  display: flex !important;
  align-items: stretch !important;
}

header#sp-header > .container,
header#sp-header > .container-inner,
header#sp-header > div {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

/* Header innen: kein Padding am Container selbst */
header#sp-header .container-inner,
header#sp-header .container {
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Header Row: Padding nur auf Desktop */
@media (min-width: 992px) {
  header#sp-header .row.align-items-center {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

/* Navbar Row – genug Höhe damit aktiver Menüpunkt nicht abgeschnitten wird */
header#sp-header .row.align-items-center {
  min-height: 70px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Nav-Liste vertikal zentriert */
ul.sp-megamenu-parent {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

ul.sp-megamenu-parent li.sp-menu-item {
  display: flex !important;
  align-items: center !important;
}

/* Sticky-Placeholder verhindert Inhalt-Sprung */
.sticky-header-placeholder {
  display: block;
}


/* ============================================================
   29  HERO VOLLE BREITE
   SP Page Builder Row auf Full-Width – kein seitlicher Rand
   ============================================================ */

/* Container im Page Builder auf volle Breite */
.sppb-section .sppb-container,
.sppb-section .sppb-container-inner {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

/* Joomla main-body kein seitliches Padding */
#sp-main-body,
#sp-main-body > .container,
#sp-main-body > .container-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* SP Page Builder Wrapper */
#sp-page-builder {
  padding: 0 !important;
  margin: 0 !important;
}

.sp-pagebuilder-wrapper {
  padding: 0 !important;
}

/* Hamburger/Offcanvas-Toggler auf Desktop ausblenden */
@media (min-width: 992px) { /* desktop */
  #offcanvas-toggler,
  .offcanvas-toggler-secondary,
  .navbar-toggle {
    display: none !important;
  }
}

/* Social Share Icons (Joomla Content-Komponente) ausblenden */
.article-ratings-social-share,
.social-share-block,
.article-social-share,
.social-share-icon {
  display: none !important;
}

/* Leeren sp-section-1 Bereich ausblenden */
#sp-section-1:empty,
#sp-section-1 .row:empty,
#sp-section-1 .sp-column:empty {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#sp-section-1 {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

/* Abstand zwischen letzter Page-Builder-Sektion und CTA */
.sppb-section:nth-last-child(2) {
  margin-bottom: 0 !important;
  padding-bottom: 40px !important;
}

/* ============================================================
   31  RESPONSIVE MOBILE (Helix Breakpoint: 991px)
   Einzige Mobile-Sektion – alle anderen entfernt
   ============================================================ */

/* HAMBURGER: sichtbar unter 992px, versteckt ab 992px */
a#offcanvas-toggler,
#offcanvas-toggler {
  display: none;
}

@media (max-width: 991.98px) {
  a#offcanvas-toggler,
  #offcanvas-toggler {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
  }

  a#offcanvas-toggler .burger-icon span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #1a3a6e !important;
    margin: 4px 0 !important;
    border-radius: 2px !important;
  }

  /* Logo */
  #sp-logo div.logo img,
  #sp-logo img.logo-image {
    height: 34px !important;
    max-height: 34px !important;
    width: auto !important;
  }

  /* Header Padding Mobile */
  header#sp-header .row.align-items-center {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Topbar: nur Notfall-Support */
  #sp-top1 { display: none !important; }
  #sp-top2.col-lg-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  #sp-top2 .sp-column { text-align: center !important; }

  /* Hero: 1-spaltig, Karte weg */
  .bkit-hero div[style*="grid-template-columns:1fr 360px"] {
    grid-template-columns: 1fr !important;
  }
  .bkit-hero div[style*="grid-template-columns:1fr 360px"] > div:last-child {
    display: none !important;
  }
  .bkit-hero { padding: 36px 16px !important; }
  .bkit-hero h1 { font-size: 26px !important; }

  /* Hero Buttons */
  .bkit-hero div[style*="display:flex;gap:10px;flex-wrap:wrap"] {
    flex-direction: column !important;
  }
  .bkit-hero div[style*="display:flex;gap:10px;flex-wrap:wrap"] a {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* USP Strip: 2-spaltig */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Leistungen Cards: 1-spaltig */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats+Vertrauen: 1-spaltig */
  div[style*="grid-template-columns:1fr 1fr;gap:24px"] {
    grid-template-columns: 1fr !important;
  }

  /* Intro-Grids: 1-spaltig */
  div[style*="grid-template-columns:1fr 1fr;gap:32px"],
  div[style*="grid-template-columns:1fr 1fr;gap:28px"],
  div[style*="grid-template-columns:1fr 1fr;gap:20px"],
  div[style*="grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* Ablauf Steps: 2-spaltig */
  div[style*="grid-template-columns:repeat(4,1fr);gap:24px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Materialien + Einsatzbereiche: 2-spaltig */
  div[style*="grid-template-columns:repeat(4,1fr);gap:10px"],
  div[style*="grid-template-columns:repeat(4,1fr);gap:12px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Pakete: 1-spaltig */
  div[style*="grid-template-columns:repeat(3,1fr);gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA + Footer: 1-spaltig */
  div[style*="grid-template-columns:1fr auto;gap:24px"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr auto;gap:24px"] > div:last-child {
    align-items: flex-start !important;
  }

  /* Padding reduzieren */
  div[style*="padding:0 32px"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============================================================
   32  USP STRIP MOBILE TEXT FIX
   ============================================================ */
@media (max-width: 991.98px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] span[style*="font-size:12px"] {
    font-size: 11px !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] span[style*="font-size:11px"] {
    font-size: 10px !important;
  }
  div[style*="padding:16px 20px;display:flex"] {
    padding: 10px 8px !important;
    gap: 8px !important;
  }
}