/* Modern CSS for S&K Gebäudereinigung GmbH - 2025 */

:root {
    --primary-color: #1ab2e8ff;
    --primary-light: #4fd0f6;
    --primary-dark: #148db3;
    --secondary-color: #56b431ff;
    --accent-color: #76cb7bff;
    --text-dark: #1A1A1A;
    --text-muted: #6C757D;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    --border: #DEE2E6;
    --transition: all 0.3s ease;
    --section-spacing: 8rem;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    max-width: 100%;
    overflow-x: hidden;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    color: white;
    z-index: 1000;
    transition: all 0.3s ease;
}
  
.header.scrolled {
    background: white;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar {
    transition: all 0.3s ease;
    background: transparent !important;
    padding: 2rem 1rem;
    min-height: 110px;
}

.navbar, .navbar .navbar-brand, .navbar .nav-link {
    color: var(--primary-color) !important;
}

.navbar.scrolled, .navbar.scrolled .navbar-brand, .navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
}
/* JT Logo Text neben dem Logo */
.jt-logo-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: flex-end;
   
}
/* Farben für JT-Logo-Text dynamisch aus CSS-Variablen */
.jt-blue {
    color: var(--primary-color);
}
.jt-green {
    color: var(--secondary-color) !important;
}

/* Logo-Text beim Scrollen ausblenden */
.header.scrolled .jt-logo-text,
.navbar.scrolled .jt-logo-text {
    display: none !important;
}

/* Navbar beim Scrollen kompakter machen */
.header.scrolled .navbar,
.navbar.scrolled {
    min-height: 68px !important;
    padding-top: 0.45rem !important;
    padding-bottom: 0.45rem !important;
}

/* Desktop etwas stärker komprimieren */
@media (min-width: 1213px) {
    .header.scrolled .navbar,
    .navbar.scrolled {
        min-height: 62px !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
}

@media (max-width: 991px) {
    .jt-logo-text {
        font-size: 1.3rem;
        margin-top: 10px;
    }
}

@media (max-width: 1212px) {
    .jt-logo-text.ms-3 {
        margin-left: 0.4rem !important;
    }
}

/* Feintuning erfolgt im finalen Mobile-Block unten */
@media (max-width: 576px) {
    .jt-logo-text {
        font-size: 1rem;
        margin-top: 6px;
    }
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem;
    min-height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enhanced Logo Modern Styling */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.logo-circle {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2c5f6f 0%, #00A7C4 50%, #33B8D1 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 167, 196, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #2c5f6f, #00A7C4, #33B8D1, #2c5f6f);
    animation: logoRotate 8s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
    margin-bottom: -2px;
}

.logo-s {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.logo-ampersand {
    color: #ffffff;
    font-size: 14px;
    margin: 0 1px;
    opacity: 0.9;
}

.logo-k {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 18px;
}

.logo-company {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -4px;
}

.logo-text-full {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    line-height: 1;
}

.navbar-brand:hover .logo-circle {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.4);
}

.navbar-brand:hover .logo-main-text {
    color: var(--primary-color);
    transform: translateX(2px);
}

.navbar-brand:hover .logo-circle::before {
    animation-duration: 2s;
    opacity: 0.5;
}

/* Responsive Logo Adjustments */
@media (max-width: 991px) {
    .logo-modern {
        gap: 12px;
    }
    
    .logo-circle {
        width: 48px;
        height: 48px;
    }
    
    .logo-brand {
        font-size: 16px;
    }
    
    .logo-s, .logo-k {
        font-size: 16px;
    }
    
    .logo-ampersand {
        font-size: 12px;
    }
    
    .logo-company {
        font-size: 7px;
    }
    
    .logo-main-text {
        font-size: 16px;
    }
    
    /* Blende Logotext auf Tablets aus für mehr Platz */
    .logo-text {
        opacity: 0.8;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .logo-modern {
        gap: 10px;
    }
    
    .logo-circle {
        width: 42px;
        height: 42px;
    }
    
    .logo-brand {
        font-size: 14px;
    }
    
    .logo-s, .logo-k {
        font-size: 14px;
    }
    
    .logo-ampersand {
        font-size: 11px;
    }
    
    .logo-company {
        font-size: 6px;
    }
    
    .logo-main-text {
        font-size: 14px;
    }
    
    /* Mobile: Logotext komplett ausblenden */
    .logo-text {
        display: none !important;
    }
    
    /* Logo-Image anpassen für mobile ohne Text */
    .logo-image {
        height: 45px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 40px !important;
    }
    
    /* Mobile Navbar kompakter machen */
    .navbar {
        padding: 0.6rem 1rem;
        min-height: 50px;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 1rem;
        min-height: 45px;
    }
    
    /* Mobile Hamburger Menu kleiner machen */
    .navbar-toggler {
        width: 46px;
        height: 38px;
        padding: 0.4rem 0.5rem;
        z-index: 2;
    }
    
    .navbar.scrolled .navbar-toggler {
        width: 40px;
        height: 32px;
        padding: 0.3rem 0.4rem;
    }
    
    .navbar-toggler-icon {
        width: 1.4em;
        height: 1.4em;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
}

@media (max-width: 576px) {
    .logo-text-full {
        display: none;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-brand {
        font-size: 13px;
    }
    
    .logo-s, .logo-k {
        font-size: 13px;
    }
    
    /* Kleine Mobile: Nur Logo-Bild, kein Text */
    .logo-text {
        display: none !important;
    }
    
    .logo-image {
        height: 45px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 40px !important;
    }
    
    /* Navbar padding reduzieren für mehr Platz */
    .navbar {
        padding: 0.8rem 1rem;
        min-height: 60px;
    }
    
    /* Sehr kleine Mobile: Hamburger extra klein */
    .navbar-toggler {
        width: 42px;
        height: 34px;
        padding: 0.3rem 0.4rem;
        border-width: 1px;
    }
    
    .navbar.scrolled .navbar-toggler {
        width: 38px;
        height: 30px;
        padding: 0.25rem 0.35rem;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
}

.navbar-brand {
    color: var(--dark) !important;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    height: 60px;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-brand {
    height: 55px;
}

.navbar-brand:hover .logo-main {
    color: var(--primary-color);
}

.navbar-brand:hover .logo-sub {
    opacity: 1;
    transform: translateX(2px);
}

.logo-image {
    height: 60px !important;
    transition: all 0.3s ease;
    object-fit: contain;
    max-width: 100%;
}

.navbar.scrolled .logo-image {
    height: 45px !important;
}

.navbar.scrolled .logo-text {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* Navigation Links */
.nav-link {
    color: #1a3a4a !important;
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.1rem;
    border-radius: 10px;
    transition: color 0.22s ease, background 0.22s ease;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Icon in Nav leicht kleiner + einheitlich */
.navbar-nav .nav-link i {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-right: 0.35rem !important;
}

.nav-link:hover {
    color: #1ab2e8 !important;
    background: rgba(26, 178, 232, 0.08);
    text-decoration: none;
}

/* Kein ::after Underline mehr — Pill-Hintergrund ersetzt es */
.nav-link::after {
    display: none;
}

/* Kontakt-Link als CTA-Button */
.nav-cta {
    color: #fff !important;
    border-radius: 10px !important;
    padding: 0.48rem 1.1rem !important;
    font-weight: 700 !important;
    margin-left: 0.3rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0s !important;
}

.nav-cta i {
    opacity: 1 !important;
    color: #fff !important;
    font-size: 0.8rem !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0e8fbb 0%, #0a6f92 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(26, 178, 232, 0.38) !important;
}

/* Mobile: CTA wie normaler Nav-Link */
@media (max-width: 991px) {
    .nav-cta {
        background: transparent !important;
        color: #1a3a4a !important;
        border: none !important;
        margin-left: 0 !important;
    }
    .nav-cta i { color: #1a3a4a !important; }
    .nav-cta:hover {
        background: rgba(26,178,232,0.08) !important;
        color: #1ab2e8 !important;
        transform: none !important;
    }
}

/* Dropdown-Toggle Hover */
.nav-link.dropdown-toggle:hover {
    color: #1ab2e8 !important;
    background: rgba(26, 178, 232, 0.08);
}

/* Mobile Hamburger Menu Styling */
.navbar-toggler {
    padding: 0.5rem 0.6rem;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 167, 196, 0.1);
    width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 167, 196, 0.25);
    border-color: var(--primary-color);
}

.navbar-toggler:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Mobile navbar styles were consolidated into one final block at the file end. */

/* Desktop Navigation - Normal sichtbar */
@media (min-width: 1213px) {
    .navbar-collapse {
        position: static !important;
        display: flex !important;
        flex-basis: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
        z-index: 99999 !important;
    }

    .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.35rem !important;
        padding: 0 !important;
        align-items: center !important;
    }

    .navbar-nav .nav-link {
        background: transparent !important;
        border: none !important;
        margin: 0 0.05rem !important;
        padding: 0.74rem 1.05rem !important;
        border-radius: 10px !important;
        gap: 0 !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }

    .navbar-nav .nav-link::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 50%;
        transition: all 0.2s ease;
        opacity: 0;
    }
    
    .navbar-nav .nav-link:hover::before {
        opacity: 1;
        background: white;
    }

    /* SEHR SICHTBARER Desktop Dropdown Indikator für Leistungen */
    .navbar .nav-item.dropdown .dropdown-toggle {
        position: relative !important;
        padding-right: 2.45rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    /* Einfaches Dreieck nach unten NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown > .nav-link::after,
    .navbar .nav-item.dropdown > .dropdown-toggle::after,
    .navbar .nav-item.dropdown > .dropdown-hover-toggle::after,
    .navbar .nav-item.dropdown > a[href*="services"]::after {
        content: ' ▼' !important;
        font-family: inherit !important;
        position: relative !important;
        border: none !important;
        font-size: 10px !important;
        margin-left: 4px !important;
        display: inline !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border-radius: 0 !important;
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
        right: auto !important;
        top: auto !important;
        line-height: inherit !important;
        vertical-align: middle !important;
        position: relative !important;
        top: -1px !important;
    }

    /* Hover-Effekt entfernen - NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown > .nav-link:hover::after,
    .navbar .nav-item.dropdown > .dropdown-toggle:hover::after,
    .navbar .nav-item.dropdown > .dropdown-hover-toggle:hover::after,
    .navbar .nav-item.dropdown > a[href*="services"]:hover::after {
        content: ' ▼' !important;
        transform: none !important;
        background: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }

    /* Dropdown offen - gleich bleiben - NUR für Haupt-Leistungen Link */
    .navbar .nav-item.dropdown:hover > .nav-link::after,
    .navbar .nav-item.dropdown:hover > .dropdown-toggle::after,
    .navbar .nav-item.dropdown:hover > .dropdown-hover-toggle::after,
    .navbar .nav-item.dropdown:hover > a[href*="services"]::after {
        content: ' ▼' !important;
        color: inherit !important;
        background: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Alternative mit Text-Indikator */
    .navbar .nav-item.dropdown .dropdown-toggle::before {
        content: '' !important;
        display: none !important;
    }
}

/* Mobile nav-item styles were consolidated into one final block at the file end. */

/* ===== DROPDOWN – nur Desktop (Hover) ===== */
@media (min-width: 1213px) {

.navbar .dropdown {
    position: relative !important;
}

.navbar .dropdown::before {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 10px !important;
    background: transparent !important;
    z-index: 999 !important;
}

.navbar .dropdown-toggle {
    position: relative;
    padding-right: 2.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.navbar .dropdown-toggle::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 53%;
    transform: translateY(-50%);
    border: none !important;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: rgba(0, 167, 196, 0.08);
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.navbar .dropdown-toggle:hover::after {
    opacity: 1;
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg) !important;
    color: #fff !important;
    opacity: 1 !important;
}

.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 0;
    margin-top: 0;
    min-width: 320px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block;
    pointer-events: none;
}

.navbar .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar .dropdown-menu[data-bs-popper] {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin-top: 0 !important;
}

.navbar .dropdown-item {
    padding: 11px 20px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1a3a4a;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin: 2px 10px;
    position: relative;
    gap: 12px;
    letter-spacing: 0.01em;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover::before { opacity: 1; }

.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.08), rgba(0, 167, 196, 0.05));
    color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 167, 196, 0.1);
}

.navbar .dropdown-item i {
    font-size: 16px;
    color: rgba(0, 167, 196, 0.6);
    width: 20px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover i {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.navbar .dropdown:hover .dropdown-menu {
    animation: dropdownSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.navbar .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 196, 0.2), transparent);
    margin: 12px 20px;
    border: none;
}

}

/* Hero Section */
.hero-enterprise {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}



.hero-content {
  margin-left: 0;
  max-width: 640px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.hero-main-content {
  margin-top: 100px;
  padding: 40px 0 0;
  text-align: center;
  width: 100%;
}

.hero-content h1 {
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 30px;
  font-size: 3.1rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content h1 .text-primary {
  color: var(--primary-color) !important;
}

.hero-rotating-title {
  min-height: 2.6em;
  margin-bottom: 1rem;
}

.hero-rotating-text-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 1.25em;
  position: relative;
}

.hero-rotating-text {
  display: inline-block;
  min-width: 1ch;
  white-space: nowrap;
}

.hero-rotating-text-wrap::after {
  content: '';
  width: 2px;
  height: 0.92em;
  margin-left: 0.12em;
  background: var(--primary-color);
  border-radius: 999px;
  animation: heroCursorBlink 0.9s steps(1) infinite;
}

@keyframes heroCursorBlink {
  0%, 45% {
    opacity: 1;
  }

  46%, 100% {
    opacity: 0;
  }
}

.hero-service-line {
  color: var(--text-dark);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 92%;
  font-weight: 500;
  margin: 0 auto 1rem;
}

.hero-content .lead {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 85%;
  font-weight: 400;
}
.hero-enterprise {
    background:
        linear-gradient(
            140deg,
            rgba(26, 178, 232, 0.10) 0%,
            rgba(79, 208, 246, 0.07) 25%,
            rgba(86, 180, 49, 0.05) 55%,
            rgba(118, 203, 123, 0.06) 75%,
            rgba(255, 255, 255, 0.95) 100%
        );
    position: relative;
    overflow: hidden;
}
.hero-enterprise::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(79, 208, 246, 0.14), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(118, 203, 123, 0.12), transparent 30%),
        radial-gradient(circle at 60% 75%, rgba(26, 178, 232, 0.08), transparent 35%);
    pointer-events: none;
    z-index: 0;
}
.hero-enterprise .container-fluid,
.hero-enterprise .row,
.hero-enterprise .hero-content,
.hero-enterprise .hero-image-wrapper {
    position: relative;
    z-index: 1;
}
/* Hero Search Card - Less Dominant */
.hero-search-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(230, 230, 230, 0.8);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 50;
  overflow: visible;
}

.hero-search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.search-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.search-tab {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  background: rgba(248, 249, 250, 0.8);
  color: var(--text-muted);
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.search-tab.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 167, 196, 0.3);
}

.search-tab:hover:not(.active) {
  background: rgba(233, 236, 239, 0.9);
  border-color: #dee2e6;
}

.search-row {
  margin-bottom: 14px;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 12px;
  z-index: 3;
  color: var(--primary-color);
  font-size: 13px;
  opacity: 0.8;
}

.search-field .form-control,
.search-field .form-select {
  padding-left: 36px;
  border: 1px solid rgba(230, 230, 230, 0.8);
  border-radius: 8px;
  font-size: 13px;
  height: 38px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.search-field .form-control:focus,
.search-field .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 167, 196, 0.08);
  background: #fff;
}

.hero-cta-button {
  width: 100%;
  padding: 10px 18px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 167, 196, 0.3);
}

.hero-cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 167, 196, 0.4);
}

/* Hero Stats - Beautiful Design */
.hero-stats {
  display: flex;
  gap: 42px;
  margin: 34px auto 0;
  padding-top: 22px;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  max-width: 560px;
  width: 100%;
}

.stat-card {
  padding: 0;
  text-align: center;
  min-width: 110px;
  position: relative;
  transition: transform 0.25s ease;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.stat-card::before,
.stat-card::after {
  display: none;
}

.stat-card:hover {
  transform: translateY(-2px);
  background: transparent;
  box-shadow: none;
}

.stat-number {
  display: block;
  font-size: 2.55rem;
  font-weight: 800;
  color: #171717;
  line-height: 1;
  margin-bottom: 10px;
  background: none;
  -webkit-text-fill-color: initial;
}

.stat-card:hover .stat-number {
  transform: none;
}

.stat-label {
  font-size: 0.82rem;
  color: #7b7b7b;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.45;
}

/* Hero Images */
.hero-image-grid {
  position: relative;
  height: 500px;
}

.hero-image-container {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.hero-image-container.main {
  width: 60%;
  height: 70%;
  top: 0;
  right: 0;
  z-index: 3;
}

.hero-image-container.secondary {
  width: 45%;
  height: 55%;
  bottom: 20%;
  right: 40%;
  z-index: 2;
}

.hero-image-container.tertiary {
  width: 35%;
  height: 45%;
  bottom: 0;
  right: 15%;
  z-index: 1;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.hero-image-container:hover {
  transform: scale(1.03) rotate(1deg);
  z-index: 4;
}

.hero-image-container:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 140, 163, 0.2));
  opacity: 0;
  transition: all 0.3s ease;
}

/* =====================================
   MODERN HERO IMAGE COMPOSITION
   ===================================== */

.hero-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 2;
}

/* weiche Hintergrundflächen */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    top: 30px;
    right: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 208, 246, 0.22) 0%, rgba(79, 208, 246, 0.06) 45%, transparent 75%);
    filter: blur(18px);
    z-index: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: 20px;
    left: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 203, 123, 0.18) 0%, rgba(118, 203, 123, 0.05) 45%, transparent 75%);
    filter: blur(22px);
    z-index: 0;
}

/* Hauptkarte */
.hero-image-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 440px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.48));
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow:
        0 30px 60px rgba(20, 141, 179, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: visible;
    z-index: 1;
}

/* dünner Glow-Rand */
.hero-image-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(26, 178, 232, 0.35),
        rgba(79, 208, 246, 0.18),
        rgba(118, 203, 123, 0.18),
        rgba(255,255,255,0.45)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Bilder allgemein */
.hero-single-image {
    position: relative;
    flex: 1 1 0;
    width: calc(50% - 11px);
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* großes Hauptbild */
.hero-single-image:first-child {
    z-index: 2;
}

/* kleineres überlappendes Bild */
.hero-single-image:last-child {
    margin-top: -42px;
    margin-right: -38px;
    height: calc(100% - 22px);
    z-index: 3;
}

/* Hover */
.hero-image-stage:hover .hero-single-image:first-child {
    transform: translateY(-8px);
}

.hero-image-stage:hover .hero-single-image:last-child {
    transform: translateY(-12px) rotate(2deg) scale(1.02);
}

/* Floating badge */
.hero-image-badge {
    position: absolute;
    left: 220px;
    bottom: -18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-image-badge i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 15px;
}

.hero-image-badge strong {
    display: block;
    font-size: 14px;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero-image-badge span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1212px) {
    .hero-image-wrapper {
        min-height: 430px;
        margin-top: 10px;
    }

    .hero-image-stage {
        max-width: 440px;
        height: 340px;
        padding: 20px;
        gap: 16px;
        border-radius: 26px;
    }

    .hero-image-stage::before {
        border-radius: 26px;
    }

    .hero-single-image:first-child {
        width: calc(50% - 8px);
        height: 100%;
    }

    .hero-single-image:last-child {
        width: calc(50% - 8px);
        height: calc(100% - 18px);
        margin-top: -28px;
        margin-right: -18px;
    }

    .hero-image-badge {
        left: 140px;
        bottom: -12px;
        padding: 12px 14px;
    }
}

@media (max-width: 576px) {
    .hero-image-wrapper {
        min-height: 320px;
    }

    .hero-image-stage {
        max-width: 320px;
        height: auto;
        min-height: 0;
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        border-radius: 22px;
    }

    .hero-image-stage::before {
        border-radius: 22px;
    }

    .hero-single-image:first-child {
        width: 100%;
        height: 170px;
    }

    .hero-single-image:last-child {
        width: calc(100% - 12px);
        height: 150px;
        margin-top: -18px;
        margin-right: -10px;
    }

    .hero-image-badge {
        left: 80px;
        bottom: -10px;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .hero-image-badge i {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .hero-image-badge strong {
        font-size: 12px;
    }

    .hero-image-badge span {
        font-size: 10px;
    }
}

.hero-image-container:hover .image-overlay {
  opacity: 1;
}

.hero-quality-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-content i {
  color: var(--primary-color);
  font-size: 18px;
}

.badge-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid rgba(26,178,232,0.1);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 40%;
    height: 160%;
    background: linear-gradient(-45deg, rgba(0, 167, 196, 0.04), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    margin-top: 50px;
    /* CSS Grid entfernt für Bootstrap Grid Layout */
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(230, 230, 230, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 15px;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Modern Service Link Button */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 167, 196, 0.3);
  border: 2px solid transparent;
}

.service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.service-link:hover::before {
  left: 100%;
}

.service-link:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 167, 196, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

.service-link i {
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-link:hover i {
  transform: translateX(4px) rotate(45deg);
  background: rgba(255, 255, 255, 0.25);
}

/* Micro Bounce Animation */
.micro-bounce {
  animation: microBounce 2s infinite ease-in-out;
}

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

.service-link:hover .micro-bounce {
  animation: none;
}

/* Service Card Layout Enhancement */
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(230, 230, 230, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.98);
}

/* Service Icon Wrapper */
.service-icon-wrapper {
  margin-bottom: 24px;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 167, 196, 0.05));
  border: 2px solid rgba(0, 167, 196, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::before {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.service-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

/* Service Content */
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li {
  transform: translateX(4px);
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 12px;
  width: 16px;
  height: 16px;
  background: rgba(0, 167, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-features li i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* About Us Modern Section */
.about-us-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.about-us-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Modern Section Headers */
.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.25);
    position: relative;
}

.section-badge-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

.section-title-modern {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

.section-subtitle-modern {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Vision Modern Section */
.vision-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.vision-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-modern::after {
    display: none;
}

/* Contact Enterprise Section */
.contact-enterprise {
    margin-top: 100px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.contact-enterprise::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-enterprise::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 40%;
    height: 160%;
    background: linear-gradient(-45deg, rgba(0, 167, 196, 0.04), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section & Container Utilities */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.section .container-fluid {
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

/* Animation System 2025 */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll {
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.animate-fade-up {
        transform: translateY(30px);
    }

    .animate-on-scroll.animate-fade-left {
        transform: translateX(-30px);
    }

    .animate-on-scroll.animate-fade-right {
        transform: translateX(30px);
    }

    .animate-on-scroll.animate-scale {
        transform: scale(0.95);
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
    }

    .hover-lift {
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .hover-scale {
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hover-scale:hover {
        transform: scale(1.02);
    }

    .morph-on-hover {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 16px;
    }

    .morph-on-hover:hover {
        border-radius: 24px;
        transform: scale(1.02);
    }

    .badge-slide-in {
        transform: translateX(-50px) scale(0.8);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .badge-slide-in.is-visible {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .animate-stagger .animate-on-scroll:nth-child(1)  { transition-delay: 0.08s; }
    .animate-stagger .animate-on-scroll:nth-child(2)  { transition-delay: 0.16s; }
    .animate-stagger .animate-on-scroll:nth-child(3)  { transition-delay: 0.24s; }
    .animate-stagger .animate-on-scroll:nth-child(4)  { transition-delay: 0.32s; }
    .animate-stagger .animate-on-scroll:nth-child(5)  { transition-delay: 0.40s; }
    .animate-stagger .animate-on-scroll:nth-child(6)  { transition-delay: 0.48s; }
    .animate-stagger .animate-on-scroll:nth-child(7)  { transition-delay: 0.56s; }
    .animate-stagger .animate-on-scroll:nth-child(8)  { transition-delay: 0.64s; }
    .animate-stagger .animate-on-scroll:nth-child(9)  { transition-delay: 0.72s; }
    .animate-stagger .animate-on-scroll:nth-child(10) { transition-delay: 0.80s; }
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .hover-lift,
    .hover-scale,
    .badge-slide-in {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem;
        min-height: 70px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 48px !important;
    }
    
    .hero-main-content {
        margin-top: 70px;
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    .hero-content {
        margin-left: auto;
    }
    
    .hero-content .lead {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .about-us-modern {
        padding: 80px 0;
    }
    
    .section-title-modern {
        font-size: 2.4rem;
    }
    
    .story-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-gallery-modern {
        height: 280px;
    }
    
    .stats-modern {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        min-height: 70px;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 40px !important;
    }
    
    .hero-main-content {
        margin-top: 60px;
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content .lead {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-image-grid {
        height: 400px;
    }
    
    .section .container-fluid {
        padding-left: clamp(1rem, 3vw, 3rem);
        padding-right: clamp(1rem, 3vw, 3rem);
    }
    
    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .service-card {
        padding: 25px;
    }
    
    .about-us-modern {
        padding: 60px 0;
    }
    
    .section-subtitle-modern {
        margin-bottom: 60px;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .story-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
    }
    
    .story-icon i {
        font-size: 20px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .image-gallery-modern {
        height: 240px;
        margin-bottom: 20px;
    }
    
    .main-image,
    .secondary-image {
        border-radius: 16px;
    }
    
    .quality-promise-modern {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .services-grid {
        /* Entferne CSS Grid Eigenschaften für Bootstrap Grid */
    }
    
    .section-badge-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-image-grid {
        height: 300px;
    }
    
    .hero-search-card {
        padding: 16px;
        margin-bottom: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-modern {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-promise {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .story-content h3 {
        font-size: 20px;
    }
    
    .image-gallery-modern {
        height: 200px;
    }
    
    /* Kleine Mobile: Nur Logo-Bild, kein Text */
    .logo-text {
        display: none !important;
    }
    
    .logo-image {
        height: 40px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 35px !important;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
        min-height: 65px;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px 10px;
        margin-left: 10px;
    }
    
    .navbar.scrolled .navbar-toggler {
        padding: 6px 8px;
    }
    
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
    
    .navbar.scrolled .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
}

/* Hero Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Buttons */
.cta-button {
    display: inline-flex;
  align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Story Container */
.story-container {
    position: relative;
    z-index: 2;
}

/* Main Story Card */
.story-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.story-icon i {
    font-size: 24px;
    color: white;
}

.story-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-item {
    background: white;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
  transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h5 {
    font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Visual Showcase */
.visual-showcase {
    position: relative;
    height: 100%;
  display: flex;
  flex-direction: column;
    gap: 30px;
}

/* Modern Image Gallery */
.image-gallery-modern {
  position: relative;
    height: 320px;
    margin-bottom: 30px;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
    width: 75%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: var(--success);
    font-size: 14px;
}

.image-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.secondary-image {
  position: absolute;
  bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: all 0.4s ease;
}

.secondary-image:hover {
    transform: scale(1.02) rotate(1deg);
    z-index: 3;
}

.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 167, 196, 0.95);
  backdrop-filter: blur(10px);
    color: white;
  border-radius: 12px;
    padding: 12px 16px;
  text-align: center;
}

.badge-number {
  display: block;
    font-size: 18px;
  font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    opacity: 0.9;
}

/* Modern Stats */
.stats-modern {
  display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card-modern {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(230, 230, 230, 0.6);
  transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.stat-card-modern.primary:hover {
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.3);
}

.stat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stat-header i {
    font-size: 18px;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-header i {
    color: white;
}

.stat-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.stat-card-modern.primary .stat-title {
    color: rgba(255, 255, 255, 0.9);
}

.stat-card-modern.primary .fa-certificate {
    color: white !important;
}
.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-number {
    color: white !important;
}

.activecard {
    color: white !important;
}
/* Quality Promise */
.quality-promise-modern {
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.05), rgba(0, 167, 196, 0.02));
    border: 1px solid rgba(0, 167, 196, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quality-promise-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 167, 196, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.promise-content {
    position: relative;
    z-index: 2;
}

.promise-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.promise-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn-promise {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.btn-promise:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.4);
    color: white;
    text-decoration: none;
}

.btn-promise i {
    font-size: 14px;
}

/* Vision Content Wrapper */
.vision-content-wrapper {
  position: relative;
    z-index: 2;
}

/* Mission Card */
.mission-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
    left: 0;
  right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.mission-icon i {
    font-size: 24px;
    color: white;
}

.mission-meta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.mission-year {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 167, 196, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Modern Principles */
.principles-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.principle-item {
    background: white;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.principle-item::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.principle-item:hover::before {
    opacity: 1;
}

.principle-item.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.principle-item.featured .principle-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.principle-item.featured .principle-number {
    color: rgba(255, 255, 255, 0.8);
}

.principle-item.featured h5,
.principle-item.featured p {
    color: white;
}

.principle-visual {
  display: flex;
    flex-direction: column;
  align-items: center;
    gap: 12px;
    min-width: 60px;
}

.principle-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1);
}

.principle-icon-wrapper i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon-wrapper i {
    color: white;
}

.principle-number {
    font-size: 12px;
    font-weight: 700;
  color: var(--primary-color);
    opacity: 0.6;
}

.principle-text h5 {
    font-size: 16px;
    font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 8px;
}

.principle-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Values Showcase */
.values-showcase {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.value-highlight {
    flex: 1;
    background: rgba(0, 167, 196, 0.05);
    border: 1px solid rgba(0, 167, 196, 0.15);
    border-radius: 16px;
    padding: 24px;
  display: flex;
  align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.value-highlight:hover {
  background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.3);
}

.value-icon-modern {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-highlight:hover .value-icon-modern {
    background: white;
}

.value-icon-modern i {
  font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.value-highlight:hover .value-icon-modern i {
    color: var(--primary-color);
}

.value-content h6 {
    font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 4px;
    transition: color 0.3s ease;
}

.value-content span {
    font-size: 12px;
  color: var(--text-muted);
    transition: color 0.3s ease;
}

.value-highlight:hover .value-content h6,
.value-highlight:hover .value-content span {
    color: white;
}

/* Vision Sidebar */
.vision-sidebar {
  display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

/* Goal Card */
.goal-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.goal-year {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.year-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.year-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.goal-content {
    position: relative;
    z-index: 2;
}

.goal-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.goal-content p {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Certification Badges */
.cert-badges-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert-badge-item {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.cert-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cert-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

.cert-badge-icon i {
    font-size: 16px;
    color: white;
}

.cert-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cert-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.cert-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Vision Image */
.vision-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.vision-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.vision-image-modern:hover img {
    transform: scale(1.05);
}

.image-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.8), rgba(0, 140, 163, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
  transition: all 0.3s ease;
}

.vision-image-modern:hover .image-overlay-modern {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 24px;
}

.overlay-content span {
    font-size: 14px;
    font-weight: 600;
}

/* Progress Indicator */
.progress-indicator {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    padding: 24px;
}

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

.progress-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.progress-bar-modern {
    width: 100%;
    height: 8px;
    background: rgba(230, 230, 230, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.progress-note {
    font-size: 12px;
  color: var(--text-muted);
}

/* Contact Modern Section */
.contact-content-wrapper {
  position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
  display: flex;
    align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-icon-wrapper i {
    font-size: 24px;
    color: white;
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
    margin: 0 0 8px;
}

.contact-details p {
  font-size: 14px;
  line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Modern Contact Form */
.contact-form-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.form-header {
  text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
  font-size: 24px;
    font-weight: 700;
  color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

.form-row {
  display: flex;
  gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
  position: relative;
}

.form-group.full-width {
    flex: 100%;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  position: relative;
}

.form-label.required::after {
    content: '*';
    color: var(--danger);
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
    padding: 16px 20px;
  border: 2px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
  font-size: 15px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.5);
  transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
  border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 167, 196, 0.08);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(230, 230, 230, 0.6);
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 32px;
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
  border: none;
    border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
    text-decoration: none;
  transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    min-width: 200px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-submit-modern i {
    font-size: 16px;
}

/* Contact Map */
.contact-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.contact-map:hover {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.map-overlay h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.map-overlay p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Modern Footer */
.footer-modern {
    background: #2c5f6f;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

/* Footer Enterprise Styles */
.footer-enterprise {
    background: #2c5f6f;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.footer-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.footer-main {
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
    margin-bottom: 32px;
}

/* Footer Contact Cards */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateX(8px);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-item-icon {
    background: white;
    transform: scale(1.1);
}

.contact-item-icon i {
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-item-icon i {
    color: var(--primary-color);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: white;
    font-weight: 600;
}

/* Footer Section Styling */
.footer-section {
    margin-bottom: 40px;
}

.footer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-section-title i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-radius: 6px;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 8px;
}

.footer-link i {
    font-size: 14px;
    opacity: 0.7;
    color: var(--primary-color);
    width: 16px;
    transition: all 0.3s ease;
}

.footer-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Certifications */
.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.cert-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright p {
    margin: 0;
}

.footer-quality-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quality-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.quality-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.quality-badge span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Styles for Footer */
@media (max-width: 991px) {
    .footer-enterprise {
        padding: 60px 0 0;
    }
    
    .footer-main {
        padding: 0 0 30px;
    }
    
    .footer-quality-badges {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-enterprise {
        padding: 40px 0 0;
    }
    
    .footer-brand-section {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 32px;
    }
    
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-link:hover {
        transform: translateY(-2px);
        padding-left: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-quality-badges {
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .footer-enterprise {
        padding: 30px 0 0;
    }
    
    .footer-logo h3 {
        font-size: 20px;
    }
    
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-quality-badges {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .quality-badge {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Enterprise Contact Info Grid */
.contact-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 230, 230, 0.8);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

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

.contact-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card.primary h4,
.contact-card.primary p {
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.contact-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.contact-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Quick Contact Stats */
.quick-contact-stats {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    background: white;
    border: 1px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enterprise Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 167, 196, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.modern-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.modern-contact-form .form-group {
    flex: 1;
    position: relative;
}

.modern-contact-form .form-group.full-width {
    flex: 100%;
}

.input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid rgba(230, 230, 230, 0.8);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.5);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 167, 196, 0.08);
    transform: translateY(-2px);
}

.input-wrapper label {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.input-wrapper input:focus + label,
.input-wrapper select:focus + label,
.input-wrapper textarea:focus + label,
.input-wrapper input.has-value + label,
.input-wrapper select.has-value + label,
.input-wrapper textarea.has-value + label {
    top: -8px;
    left: 16px;
    font-size: 12px;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 14px;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper select:focus ~ .input-icon,
.input-wrapper textarea:focus ~ .input-icon {
    color: var(--primary-color);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.select-wrapper select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    z-index: 15;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
    min-width: 250px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.contact-submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.privacy-note i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Responsive Styles for Enterprise Contact */
@media (max-width: 991px) {
    .modern-contact-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .quick-contact-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .stat-item {
        min-width: calc(50% - 6px);
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .quick-contact-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 14px 40px 14px 16px;
    }
    
    .input-wrapper label {
        left: 16px;
    }
    
    .input-wrapper input:focus + label,
    .input-wrapper select:focus + label,
    .input-wrapper textarea:focus + label,
    .input-wrapper input.has-value + label,
    .input-wrapper select.has-value + label,
    .input-wrapper textarea.has-value + label {
        left: 12px;
    }
}

/* Section Badge and Title Enterprise Style */
.contact-enterprise .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.25);
}

.contact-enterprise .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-enterprise .section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 80px;
}

/* ===== STELLENANGEBOTE / CAREERS PAGE ===== */

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Job Header */
.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.job-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
}

.job-icon i {
    font-size: 24px;
    color: white;
}

/* Job Badges */
.job-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge.featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.job-badge.urgent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.job-badge.flexible {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.job-badge.apprentice {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Job Content */
.job-content {
    flex-grow: 1;
    margin-bottom: 24px;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.job-type,
.job-location,
.job-salary {
    background: rgba(0, 167, 196, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 167, 196, 0.2);
}

.job-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Job Requirements */
.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.job-requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.job-requirements li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Job Benefits */
.job-benefits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-tag {
    background: rgba(0, 167, 196, 0.08);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 167, 196, 0.15);
}

/* Job Actions */
.job-actions {
    margin-top: auto;
}

.btn-apply {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.3);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-apply i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-apply:hover i {
    transform: translateX(4px);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.6);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

/* Benefits Image */
.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.benefits-image:hover img {
    transform: scale(1.02);
}

.benefits-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-badge i {
    color: #fbbf24;
    font-size: 16px;
}

.benefits-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Application Modal */
.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.modal-content {
    background: white;
    border-radius: 28px;
    padding: 48px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    animation: modalSlideIn 0.4s ease-out forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 167, 196, 0.1);
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 1px;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3::before {
    content: '';
    width: 8px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
}

.modal-close {
    background: rgba(248, 249, 250, 0.8);
    border: 1px solid rgba(230, 230, 230, 0.6);
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 12px;
    line-height: 1;
    transition: all 0.3s ease;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
}

/* Enhanced Application Form */
.application-form {
    position: relative;
}

.application-form .form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.application-form .form-group {
    flex: 1;
    position: relative;
}

.application-form .form-group.full-width {
    flex: 100%;
}

/* Modern Input Wrapper */
.application-form .input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.application-form .input-wrapper input,
.application-form .input-wrapper textarea {
    width: 100%;
    padding: 20px 24px 20px 24px;
    border: 2px solid rgba(230, 230, 230, 0.6);
    border-radius: 16px;
    font-size: 16px;
    color: var(--text-dark);
    background: rgba(248, 249, 250, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    outline: none;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.application-form .input-wrapper input:focus,
.application-form .input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 6px rgba(0, 167, 196, 0.08), 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.application-form .input-wrapper input:valid,
.application-form .input-wrapper textarea:valid {
    border-color: var(--success);
}

.application-form .input-wrapper label {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 16px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 8px;
    font-weight: 500;
    z-index: 2;
}

.application-form .input-wrapper input:focus + label,
.application-form .input-wrapper textarea:focus + label,
.application-form .input-wrapper input:not(:placeholder-shown) + label,
.application-form .input-wrapper textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 20px;
    font-size: 14px;
    color: var(--primary-color);
    background: white;
    font-weight: 600;
    transform: scale(0.95);
}

.application-form .input-wrapper textarea {
    resize: vertical;
    min-height: 140px;
    padding-top: 20px;
    line-height: 1.6;
}

/* Input Icons */
.application-form .input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 16px;
    opacity: 0.6;
    z-index: 3;
}

.application-form .input-wrapper input:focus ~ .input-icon,
.application-form .input-wrapper textarea:focus ~ .input-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Enhanced File Upload */
.file-upload-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    border: 3px dashed rgba(0, 167, 196, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.03), rgba(0, 167, 196, 0.01));
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.file-upload-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 167, 196, 0.05), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.file-upload-label:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateX(100%);
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.08), rgba(0, 167, 196, 0.03));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.15);
}

.file-upload-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 167, 196, 0.3);
}

.file-upload-label:hover .file-upload-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 167, 196, 0.4);
}

.file-upload-icon i {
    font-size: 28px;
    color: white;
}

.file-upload-text {
    text-align: center;
}

.file-upload-text .primary {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.file-upload-text .secondary {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* File Upload States */
.file-upload-wrapper.has-file .file-upload-label {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(40, 167, 69, 0.03));
}

.file-upload-wrapper.has-file .file-upload-icon {
    background: linear-gradient(135deg, var(--success), #198754);
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(230, 230, 230, 0.6);
}

/* Enhanced Submit Button */
.btn-submit-application {
    width: 100%;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 167, 196, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    min-height: 64px;
}

.btn-submit-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit-application:hover::before {
    left: 100%;
}

.btn-submit-application:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 167, 196, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-submit-application:active {
    transform: translateY(-2px);
}

.btn-submit-application i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-submit-application:hover i {
    transform: translateX(6px) rotate(15deg);
}

/* Loading State */
.btn-submit-application.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit-application.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Privacy Note */
.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    padding: 16px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(230, 230, 230, 0.4);
}

.privacy-note i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Validation Messages */
.validation-message {
    position: absolute;
    bottom: -24px;
    left: 24px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.validation-message.error {
    color: #ef4444;
}

.validation-message.success {
    color: var(--success);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        margin: 16px;
        border-radius: 24px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .application-form .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .application-form .input-wrapper input,
    .application-form .input-wrapper textarea {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .file-upload-label {
        padding: 28px 20px;
    }
    
    .btn-submit-application {
        padding: 18px 28px;
        font-size: 16px;
        min-height: 58px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 24px 20px;
        margin: 12px;
        max-height: 95vh;
    }
    
    .modal-header {
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    
    .modal-header h3 {
        font-size: 22px;
    }
    
    .application-form .input-wrapper input,
    .application-form .input-wrapper textarea {
        padding: 16px 18px;
        font-size: 15px;
    }
    
    .application-form .input-wrapper label {
        font-size: 15px;
        left: 18px;
        top: 16px;
    }
    
    .application-form .input-wrapper input:focus + label,
    .application-form .input-wrapper textarea:focus + label,
    .application-form .input-wrapper input:not(:placeholder-shown) + label,
    .application-form .input-wrapper textarea:not(:placeholder-shown) + label {
        left: 14px;
        font-size: 13px;
    }
} 

/* ===== QUALITÄTSSICHERUNG / QUALITY PAGE ===== */

/* Quality Standards Section */
.quality-standards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 100%);
    position: relative;
    overflow: hidden;
}

.quality-standards-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

/* Quality Cards */
.quality-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quality-card:hover::before {
    transform: scaleX(1);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.quality-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 167, 196, 0.15);
}

/* Quality Header */
.quality-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 167, 196, 0.3);
    transition: all 0.3s ease;
}

.quality-card:hover .quality-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 167, 196, 0.4);
}

.quality-icon i {
    font-size: 28px;
    color: white;
}

/* Quality Badges */
.quality-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.quality-badge.professional {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.quality-badge.leadership {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.quality-badge.education {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.quality-badge.chemistry {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.quality-badge.technology {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quality-badge.logistics {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Quality Content */
.quality-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quality-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.quality-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Quality Features */
.quality-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.quality-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.quality-features li i {
    color: var(--success);
    margin-right: 12px;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Quality Metrics */
.quality-metrics {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 230, 230, 0.6);
}

.metric {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-number {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.quality-card:hover .metric {
    transform: translateY(-2px);
}

/* Quality Promise Section */
.quality-promise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1ecf4 100%);
    position: relative;
    overflow: hidden;
}

.quality-promise-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: linear-gradient(45deg, rgba(0, 167, 196, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Promise Features */
.promise-features {
    margin-top: 40px;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.promise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.1), rgba(0, 167, 196, 0.05));
    border: 2px solid rgba(0, 167, 196, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.promise-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.promise-item:hover .promise-icon i {
    color: white;
}

.promise-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.promise-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Quality Certifications */
.quality-certifications {
    position: relative;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(230, 230, 230, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 167, 196, 0.02), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.cert-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cert-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon i {
    color: white;
}

.cert-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.cert-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Quality Page */
@media (max-width: 991px) {
    .quality-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }
    
    .quality-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .promise-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-card {
        padding: 24px;
    }
    
    .quality-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .quality-icon {
        width: 60px;
        height: 60px;
    }
    
    .quality-icon i {
        font-size: 24px;
    }
    
    .quality-metrics {
        flex-direction: row;
        gap: 16px;
    }
    
    .promise-item {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .promise-icon {
        width: 50px;
        height: 50px;
    }
    
    .promise-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .quality-standards-section {
        padding: 60px 0;
    }
    
    .quality-promise-section {
        padding: 60px 0;
    }
    
    .quality-card {
        padding: 20px;
    }
    
    .quality-title {
        font-size: 18px;
    }
    
    .quality-metrics {
        flex-direction: column;
        gap: 12px;
    }
    
    .metric {
        padding: 8px;
        background: rgba(248, 249, 250, 0.8);
        border-radius: 8px;
    }
    
    .promise-features {
        margin-top: 30px;
    }
    
    .certifications-grid {
        gap: 12px;
    }
    
    .cert-card {
        padding: 16px;
    }
} 

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-card-modern.primary .stat-number,
.stat-card-modern.primary .activecard {
    color: white !important;
}

/* Spezifische Regel für activecard in primary stat-card */
.stat-card-modern.primary .stat-number.activecard {
    color: white !important;
}

.activecard {
    color: white !important;
}

/* Enhanced Logo Text Styling */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -2px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* S&K Logo Farben */
.logo-main::before {
    content: 'S';
    color: #2c5f6f; /* Dunkleres Blau für S */
    font-weight: 800;
}

.logo-main::after {
    content: '';
}

/* Alternative Lösung mit Spans */
.logo-s-styled {
    color: #2c5f6f !important; /* Dunkleres Blau für S */
    font-weight: 800;
    margin-right: 0.1em;
}

.logo-ampersand-styled {
    color: #2c5f6f !important; /* Gleiche Farbe wie S */
    font-weight: 600;
    margin: 0 -0.1em; /* Negativer Margin für engeren Abstand */
    font-size: 0.9em;
}

.logo-k-styled {
    color: #00A7C4 !important; /* Helleres Blau für K */
    font-weight: 800;
    margin-left: 0.1em;
}

/* Override für doppeltes S Problem */
.logo-main::before {
    content: '' !important;
    display: none !important;
}

.logo-main::after {
    content: '' !important;
    display: none !important;
}

/* FINALE LÖSUNG für activecard in primary stat-card */
.stat-card-modern.primary .stat-number.counter.activecard,
.stat-card-modern.primary .activecard,
.stat-card-modern.primary .stat-number.activecard,
.stat-card-modern.primary span.stat-number.counter.activecard {
    color: white !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    background-clip: initial !important;
}

/* Navbar sizing is defined in the primary navbar blocks above. */

/* ===== Z-INDEX FIX FÜR SERVICE DROPDOWN ===== */

/* Service-Auswahl Dropdown - Höchste Priorität */
.search-field .form-select,
.hero-search-card .form-select {
    z-index: 1000 !important;
    position: relative !important;
}

.search-field .form-select:focus,
.hero-search-card .form-select:focus {
    z-index: 1100 !important;
}

/* Kontakt-Formular z-index reduzieren */
.contact-form-modern,
.contact-form-wrapper {
    z-index: 10 !important;
}

.application-modal {
    z-index: 9999 !important;
}

/* Hero Search Card overflow anpassen */
.hero-search-card {
    overflow: visible !important;
    z-index: 500 !important;
}

/* Search Row overflow anpassen */
.search-row {
    overflow: visible !important;
    z-index: 600 !important;
    position: relative !important;
}

/* Field-Wrapper für bessere Kontrolle */
.search-field {
    overflow: visible !important;
    z-index: 700 !important;
    position: relative !important;
}

/* ===== ENHANCED HERO CTA BUTTONS ===== */

/* Hero CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 26px;
}

/* Primary Hero Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), #6fd0f0);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 167, 196, 0.18);
    border: 1px solid transparent;
}

.btn-hero-primary::before,
.btn-hero-primary i,
.btn-shine {
    display: none !important;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 167, 196, 0.24);
    color: #fff;
    text-decoration: none;
}

/* Secondary Hero Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.96);
    color: #202020;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    border: 1px solid rgba(28, 28, 28, 0.24);
    box-shadow: none;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    border-color: rgba(28, 28, 28, 0.4);
}

.btn-hero-secondary i {
    display: none;
}

.btn-hero-secondary:hover i {
    transform: none;
}

/* Call Button */
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5), 0 0 0 8px rgba(16, 185, 129, 0.1);
    }
}

.btn-hero-call:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    animation: none;
}

.btn-hero-call i {
    font-size: 14px;
    animation: bounce-phone 1.5s infinite;
}

@keyframes bounce-phone {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(230, 230, 230, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 167, 196, 0.2);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 14px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 167, 196, 0.1);
    border-radius: 50%;
    padding: 2px;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Responsive Design für Hero Buttons */
@media (max-width: 768px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-call {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-item {
        justify-content: center;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .btn-hero-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-hero-call {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Legacy navbar toggle/dropdown overrides removed; unified rules live above and in final mobile block. */

/* =====================================
   ENHANCED SMARTPHONE HERO OPTIMIZATIONS
   ===================================== */


/* ==================================================
   SECTION REDESIGN SYSTEM
   ================================================== */
.section-header-split {
    text-align: left;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header-split .section-subtitle-modern,
.section-header-split .section-subtitle {
    margin: 0;
    max-width: 42rem;
}

.about-us-modern,
.services-section,
.vision-modern,
.contact-enterprise {
    padding: clamp(5.5rem, 9vw, 7.5rem) 0;
}

.about-layout,
.vision-layout,
.contact-layout {
    align-items: center;
}

.about-us-modern {
    background: linear-gradient(180deg, #fbfcfd 0%, #f4f8fb 100%);
}

.about-us-modern .visual-showcase {
    position: sticky;
    top: 110px;
    padding-left: clamp(0rem, 2vw, 2.25rem);
}

.about-us-modern .story-card,
.about-us-modern .value-item,
.about-us-modern .quality-promise-modern,
.vision-modern .mission-card,
.vision-modern .principle-item,
.vision-modern .value-highlight,
.vision-modern .goal-card,
.vision-modern .cert-badge-item,
.contact-enterprise .contact-form-wrapper,
.contact-enterprise .contact-card,
.contact-enterprise .stat-item,
.services-summary-card,
.services-section .service-card {
    border-color: rgba(11, 54, 73, 0.08);
    box-shadow: 0 20px 50px rgba(9, 39, 54, 0.06);
}

.about-us-modern .story-card,
.vision-modern .mission-card,
.contact-enterprise .contact-form-wrapper,
.services-summary-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.about-us-modern .values-grid {
    gap: 18px;
}

.about-us-modern .value-item {
    text-align: left;
    padding: 26px;
}

.about-us-modern .value-icon {
    margin: 0 0 18px;
}

.about-us-modern .image-gallery-modern {
    height: 400px;
    margin-bottom: 20px;
}

.about-us-modern .main-image {
    width: 78%;
    height: 88%;
}

.about-us-modern .secondary-image {
    width: 56%;
    height: 64%;
}

.about-us-modern .stats-modern {
    gap: 14px;
}

.about-us-modern .stat-card-modern {
    border-radius: 18px;
}

.about-us-modern .quality-promise-modern {
    text-align: left;
}

.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.services-intro {
    margin-bottom: 3rem;
}

.services-section .section-header-split {
    margin-bottom: 0;
}

.services-summary-card {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.services-summary-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.services-summary-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.services-summary-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(11, 54, 73, 0.14);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-summary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(9, 39, 54, 0.08);
    border-color: rgba(11, 54, 73, 0.24);
    color: var(--text-dark);
    text-decoration: none;
}

.services-grid {
    margin-top: 1.5rem;
}

.services-grid .row {
    --bs-gutter-y: 1.5rem;
}

.services-section .service-card {
    border-radius: 24px;
    min-height: 100%;
}

.services-section .service-icon {
    border-radius: 20px;
}

@media (min-width: 1200px) {
    .services-grid .row:nth-child(odd) .col-xl-3:nth-child(2) {
        margin-top: 2rem;
    }

    .services-grid .row:nth-child(even) .col-xl-3:nth-child(1) {
        margin-top: 2rem;
    }

    .services-grid .row:nth-child(3) .col-xl-3:nth-child(3) {
        margin-top: 2rem;
    }
}

.vision-modern {
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.vision-layout {
    align-items: flex-start;
}

.vision-modern .vision-content-wrapper {
    padding-left: clamp(0rem, 2vw, 2rem);
}

.vision-modern .mission-card,
.vision-modern .principle-item,
.vision-modern .value-highlight,
.vision-modern .goal-card,
.vision-modern .cert-badge-item,
.vision-modern .progress-indicator,
.contact-enterprise .contact-form-wrapper,
.contact-enterprise .contact-card,
.contact-enterprise .stat-item {
    border-radius: 24px;
}

.vision-modern .vision-sidebar {
    position: sticky;
    top: 110px;
}

.contact-enterprise {
    background: linear-gradient(180deg, #ffffff 0%, #f2f7fb 100%);
}

.contact-layout {
    align-items: flex-start;
}

.contact-enterprise .contact-form-wrapper {
    position: sticky;
    top: 110px;
}

.contact-enterprise .form-header {
    text-align: left;
}

.contact-enterprise .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-enterprise .contact-card.primary {
    grid-column: 1 / -1;
}

.contact-enterprise .quick-contact-stats {
    gap: 1rem;
    margin-top: 1.25rem;
}

@media (max-width: 991px) {
    .section-header-split {
        text-align: center;
    }

    .section-header-split .section-subtitle-modern,
    .section-header-split .section-subtitle {
        margin: 0 auto;
    }

    .about-us-modern .visual-showcase,
    .vision-modern .vision-sidebar,
    .contact-enterprise .contact-form-wrapper {
        position: static;
        top: auto;
        padding-left: 0;
    }

    .services-summary-card {
        text-align: center;
        align-items: center;
    }

    .services-summary-link {
        align-self: center;
    }

    .vision-modern .vision-content-wrapper {
        padding-left: 0;
    }

    .contact-enterprise .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-enterprise .contact-card.primary {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .about-us-modern .image-gallery-modern {
        height: 330px;
    }

    .services-intro {
        margin-bottom: 2rem;
    }

    .about-us-modern .stats-modern,
    .contact-enterprise .quick-contact-stats {
        flex-direction: column;
    }
}

/* ==================================================
   DISTINCT BRAND OVERRIDES
   ================================================== */

.about-us-modern,
.services-section,
.vision-modern,
.contact-enterprise {
    position: relative;
}

.section-badge-modern {
    background: #e8f1f4;
    color: #103847;
    box-shadow: none;
    border: 1px solid rgba(16, 56, 71, 0.08);
}

.section-badge-modern::before {
    background: var(--primary-color);
    opacity: 1;
}

.highlight-text::after {
    opacity: 0.18;
}

.about-us-modern {
    background: linear-gradient(180deg, #f6f1ea 0%, #fcfaf7 100%);
}

.about-us-modern::before {
    background: linear-gradient(45deg, rgba(16, 56, 71, 0.05), transparent 72%);
}

.about-us-modern .story-card,
.about-us-modern .value-item,
.about-us-modern .quality-promise-modern {
    background: #fffdfa;
    border-color: rgba(73, 59, 40, 0.1);
    box-shadow: 0 18px 40px rgba(73, 59, 40, 0.06);
}

.about-us-modern .story-card::before,
.about-us-modern .quality-promise-modern::before {
    background: linear-gradient(90deg, #103847, #4b6a75);
}

.about-us-modern .story-icon,
.about-us-modern .value-icon,
.about-us-modern .btn-promise {
    background: #103847;
    box-shadow: none;
}

.about-us-modern .value-item:hover,
.about-us-modern .story-card:hover {
    border-color: rgba(16, 56, 71, 0.16);
    box-shadow: 0 22px 44px rgba(16, 56, 71, 0.08);
}

.about-us-modern .stats-modern .stat-card-modern.primary {
    background: #103847;
}

.about-us-modern .stats-modern .stat-card-modern {
    background: #fffdfa;
    border-color: rgba(73, 59, 40, 0.1);
}

.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f8 100%);
}

.services-summary-card {
    background: #103847;
    color: #fff;
    border: 0;
    box-shadow: 0 24px 54px rgba(16, 56, 71, 0.12);
}

.services-summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}

.services-summary-eyebrow,
.services-summary-card p,
.services-summary-link {
    position: relative;
    z-index: 1;
}

.services-summary-eyebrow {
    color: #9cd4e5;
}

.services-summary-card p {
    color: rgba(255, 255, 255, 0.82);
}

.services-summary-link {
    background: #fff;
    color: #103847;
    border: 0;
}

.services-summary-link:hover {
    color: #103847;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.services-section .service-card {
    background: #ffffff;
    border-color: rgba(16, 56, 71, 0.08);
    box-shadow: 0 18px 40px rgba(16, 56, 71, 0.05);
}

.services-section .service-card::before {
    height: 5px;
    background: linear-gradient(90deg, #103847, #6fa4b4);
}

.services-section .service-card:hover {
    border-color: rgba(16, 56, 71, 0.16);
    box-shadow: 0 24px 54px rgba(16, 56, 71, 0.08);
}

.services-section .service-icon {
    background: #eef4f6;
    border-color: rgba(16, 56, 71, 0.08);
}

.services-section .service-icon i,
.services-section .service-features li i {
    color: #103847;
}

.services-section .service-card:hover .service-icon::before,
.services-section .service-card:hover .service-features li i {
    background: #103847;
}

.services-section .service-link {
    background: transparent;
    color: #103847;
    border: 1px solid rgba(16, 56, 71, 0.12);
    box-shadow: none;
}

.services-section .service-link i {
    background: #eef4f6;
    color: #103847;
}

.services-section .service-link:hover {
    background: #103847;
    border-color: #103847;
    color: #fff;
}

.services-section .service-link:hover i {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.vision-modern {
    background: linear-gradient(180deg, #103847 0%, #154757 100%);
}

.vision-modern .section-badge-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #f5fbfd;
    border-color: rgba(255, 255, 255, 0.14);
}

.vision-modern .section-title-modern,
.vision-modern .mission-meta h3,
.vision-modern .principle-text h5,
.vision-modern .value-content h6,
.vision-modern .goal-content h4,
.vision-modern .cert-name,
.vision-modern .progress-title,
.vision-modern .progress-percent,
.vision-modern .year-number,
.vision-modern .year-label {
    color: #f5fbfd;
}

.vision-modern .section-subtitle-modern,
.vision-modern .mission-card p,
.vision-modern .principle-text p,
.vision-modern .value-content span,
.vision-modern .goal-content p,
.vision-modern .cert-desc,
.vision-modern .progress-note {
    color: rgba(245, 251, 253, 0.72);
}

.vision-modern .highlight-text {
    background: linear-gradient(135deg, #ffffff, #bde7f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-modern .mission-card,
.vision-modern .principle-item,
.vision-modern .value-highlight,
.vision-modern .goal-card,
.vision-modern .cert-badge-item,
.vision-modern .progress-indicator {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.vision-modern .principle-item.featured,
.vision-modern .value-highlight:hover {
    background: rgba(255, 255, 255, 0.14);
}

.vision-modern .mission-icon,
.vision-modern .principle-icon-wrapper,
.vision-modern .value-icon-modern,
.vision-modern .cert-badge-icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.vision-modern .mission-icon i,
.vision-modern .principle-icon-wrapper i,
.vision-modern .value-icon-modern i,
.vision-modern .cert-badge-icon i {
    color: #f5fbfd;
}

.vision-modern .mission-year {
    background: rgba(255, 255, 255, 0.1);
    color: #d8eef4;
}

.contact-enterprise {
    background: linear-gradient(180deg, #f1f5f6 0%, #ffffff 100%);
}

.contact-enterprise .contact-form-wrapper {
    background: #103847;
    border: 0;
    box-shadow: 0 28px 60px rgba(16, 56, 71, 0.12);
}

.contact-enterprise .form-header h3,
.contact-enterprise .form-header p,
.contact-enterprise .privacy-note {
    color: #f5fbfd;
}

.contact-enterprise .input-wrapper input,
.contact-enterprise .input-wrapper select,
.contact-enterprise .input-wrapper textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.contact-enterprise .input-wrapper label,
.contact-enterprise .input-icon i {
    color: rgba(245, 251, 253, 0.72);
}

.contact-enterprise .input-wrapper input:focus,
.contact-enterprise .input-wrapper select:focus,
.contact-enterprise .input-wrapper textarea:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.contact-enterprise .contact-submit-btn {
    background: #ffffff;
    color: #103847;
    box-shadow: none;
}

.contact-enterprise .contact-submit-btn:hover {
    background: #f3f8fa;
    color: #103847;
}

.contact-enterprise .contact-card,
.contact-enterprise .stat-item {
    background: #ffffff;
    border-color: rgba(16, 56, 71, 0.08);
    box-shadow: 0 18px 40px rgba(16, 56, 71, 0.05);
}

.contact-enterprise .contact-card.primary {
    background: #dbe9ee;
    color: #103847;
}

.contact-enterprise .contact-card.primary h4,
.contact-enterprise .contact-card.primary p {
    color: #103847;
}

.contact-enterprise .contact-icon,
.contact-enterprise .contact-card.primary .contact-icon {
    background: #eef4f6;
}

.contact-enterprise .contact-icon i {
    color: #103847;
}

.contact-enterprise .contact-card:hover,
.contact-enterprise .stat-item:hover {
    border-color: rgba(16, 56, 71, 0.16);
    box-shadow: 0 24px 54px rgba(16, 56, 71, 0.08);
}

/* Smartphone Spezific Optimizations */
@media (max-width: 480px) {
    .hero-enterprise {
        min-height: 100vh;
        padding-top: 80px;
        background-attachment: scroll; /* Bessere Performance auf Mobile */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-enterprise .container-fluid {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 80px);
    }
    
    .hero-enterprise .row {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content {
        max-width: 100%;
        padding: 0 0.75rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-enterprise .hero-main-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-enterprise .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
        font-weight: 700;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content .lead {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }
    
    /* Mobile-First Button Layout - Zentriert */
    .hero-cta-buttons {
        max-width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-cta-buttons .d-flex {
        gap: 0.75rem !important;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px; /* Maximale Breite für bessere Zentrierung */
        margin: 0 auto;
        padding: 14px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 12px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    /* Prominent Mobile Call Button - Zentriert */
    .btn-hero-call.w-100 {
        width: 100% !important;
        max-width: 320px !important;
        margin: 1rem auto 0 auto;
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 15px;
        background: linear-gradient(135deg, #28a745, #20c997);
        box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        animation: pulse-mobile 3s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    @keyframes pulse-mobile {
        0%, 100% { 
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
            transform: scale(1.02);
        }
    }
    
    /* Mobile Benefits Stack - Zentriert */
    .hero-benefits {
        max-width: 100%;
        margin-bottom: 1.5rem !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-benefits .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
        max-width: 320px;
        width: 100%;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 167, 196, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }
    
    .benefit-item i {
        font-size: 1rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    /* Mobile Stats Compact - Zentriert */
    .hero-stats {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats .d-flex {
        max-width: 320px;
        gap: 0.75rem !important;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat-card {
        flex: 1;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 167, 196, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.2;
        margin-bottom: 0.25rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.7rem;
        color: var(--text-muted);
        line-height: 1.3;
        font-weight: 500;
        text-align: center;
    }
    
    /* Mobile Image Optimization - Zentriert */
    .hero-image-mobile {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-mobile img {
        max-height: 220px;
        width: 100%;
        max-width: 320px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hero-image-mobile:hover img {
        transform: scale(1.01);
    }
}

/* Extra Small Smartphones (≤375px) */
@media (max-width: 375px) {
    .hero-enterprise .container-fluid {
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-enterprise .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-enterprise .hero-content .lead {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: center;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 45px;
        max-width: 280px; /* Angepasste Breite für sehr kleine Bildschirme */
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .btn-hero-call.w-100 {
        padding: 14px 16px;
        font-size: 0.95rem;
        max-width: 280px !important;
        margin: 1rem auto 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-benefits {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-benefits .d-flex {
        max-width: 280px;
        align-items: center;
    }
    
    .benefit-item {
        padding: 10px 14px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats .d-flex {
        max-width: 280px;
        justify-content: space-between;
    }
    
    .stat-card {
        padding: 0.75rem 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.65rem;
        text-align: center;
    }
    
    .hero-image-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-mobile img {
        max-height: 200px;
        border-radius: 12px;
        max-width: 280px;
        width: 100%;
    }
}

/* Touch Optimizations */
@media (max-width: 576px) {
    /* Larger touch targets */
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-call {
        min-height: 48px; /* iOS recommended minimum */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on inputs */
    .hero-content * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Smooth scrolling for mobile */
    .hero-enterprise {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    .hero-enterprise {
        will-change: transform;
        transform: translateZ(0); /* Hardware acceleration */
    }
    
    .hero-image-mobile img {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* Reduce animations on lower-end devices */
    @media (prefers-reduced-motion: reduce) {
        .btn-hero-call.w-100 {
            animation: none;
        }
        
        .benefit-item,
        .stat-card,
        .hero-image-mobile img {
            transition: none;
        }
    }
}

/* Mobile Text und Button Zentrierung - Zusätzliche Regeln */
.hero-enterprise .hero-content.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
}

.hero-enterprise .hero-main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-enterprise h1.text-center {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-enterprise p.lead.text-center {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Button Container Zentrierung */
.hero-cta-buttons.d-flex.flex-column.align-items-center {
    width: 100%;
    align-items: center !important;
    justify-content: center;
}

.hero-cta-buttons .d-flex.justify-content-center {
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

/* Einzelne Button Zentrierung */
.btn-hero-primary.text-center,
.btn-hero-secondary.text-center,
.btn-hero-call.text-center {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Zentrierung */
.hero-benefits.d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}

.hero-benefits .d-flex.justify-content-center {
    justify-content: center !important;
    align-items: center;
    width: 100%;
}

.benefit-item.text-center {
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Stats Zentrierung */
.hero-stats.d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}

.hero-stats .d-flex .stat-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Image Zentrierung */
.hero-image-wrapper .d-flex.justify-content-center {
    justify-content: center !important;
    width: 100%;
}


/* ==================================================
   DISTINCT CAREERS BRAND OVERRIDES
   ================================================== */

.careers-shell {
    position: relative;
}

.careers-hero {
    background: linear-gradient(180deg, #f3ede4 0%, #fbf8f3 100%);
}

.careers-hero .hero-content {
    max-width: 620px;
}

.careers-hero .section-badge-modern {
    background: #103847;
    color: #f5fbfd;
    border-color: transparent;
}

.careers-hero .highlight-text {
    background: linear-gradient(135deg, #103847, #496b77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero .lead {
    max-width: 34rem;
    margin-left: 0;
}

.careers-hero .hero-stats {
    justify-content: flex-start;
    margin-top: 28px;
    border-top: 1px solid rgba(16, 56, 71, 0.08);
}

.careers-hero .stat-card {
    min-width: 120px;
}

.careers-hero .hero-image-grid {
    background: rgba(255, 253, 250, 0.84);
    border: 1px solid rgba(73, 59, 40, 0.1);
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 26px 54px rgba(73, 59, 40, 0.08);
}

.careers-hero .hero-image-container {
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(16, 56, 71, 0.12);
}

.careers-hero .hero-quality-badge {
    background: rgba(255, 253, 250, 0.94);
    border: 1px solid rgba(73, 59, 40, 0.1);
    box-shadow: 0 16px 32px rgba(73, 59, 40, 0.08);
}

.jobs-section {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7f8 100%);
}

.jobs-section::before {
    background: linear-gradient(45deg, rgba(16, 56, 71, 0.05), transparent 72%);
}

.jobs-grid {
    gap: 24px;
}

.job-card {
    background: #fffdfa;
    border-color: rgba(16, 56, 71, 0.08);
    box-shadow: 0 18px 40px rgba(16, 56, 71, 0.05);
}

.job-card::before {
    height: 5px;
    background: linear-gradient(90deg, #103847, #6fa4b4);
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 56, 71, 0.16);
    box-shadow: 0 24px 54px rgba(16, 56, 71, 0.08);
}

.job-icon {
    background: #103847;
    box-shadow: none;
}

.job-badge {
    border-radius: 999px;
    box-shadow: none;
}

.job-badge.featured {
    background: #d9a441;
}

.job-badge.urgent {
    background: #b54b3e;
}

.job-badge.flexible {
    background: #5c7f64;
}

.job-badge.apprentice {
    background: #6d647f;
}

.job-type,
.job-location,
.job-salary,
.benefit-tag {
    background: #eef4f6;
    color: #103847;
    border-color: rgba(16, 56, 71, 0.08);
}

.job-requirements li i {
    background: #eef4f6;
    color: #103847;
}

.btn-apply {
    background: #103847;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(16, 56, 71, 0.16);
}

.btn-apply:hover {
    background: #0d3240;
    box-shadow: 0 16px 28px rgba(16, 56, 71, 0.22);
}

.benefits-section {
    background: linear-gradient(180deg, #103847 0%, #184859 100%);
}

.benefits-section::before {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent 72%);
}

.benefits-section .section-badge-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #f5fbfd;
    border-color: rgba(255, 255, 255, 0.14);
}

.benefits-section .section-title-modern,
.benefits-section .benefit-content h4,
.benefits-section .benefits-badge span {
    color: #f5fbfd;
}

.benefits-section .section-subtitle-modern,
.benefits-section .benefit-content p {
    color: rgba(245, 251, 253, 0.74);
}

.benefits-section .highlight-text {
    background: linear-gradient(135deg, #ffffff, #bde7f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-section .benefit-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.benefits-section .benefit-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.benefits-section .benefit-icon {
    background: rgba(255, 255, 255, 0.12);
}

.benefits-section .benefit-icon i {
    color: #f5fbfd;
}

.benefits-section .benefits-badge {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.application-modal {
    backdrop-filter: blur(14px);
}

.modal-content {
    border-radius: 28px;
    border: 1px solid rgba(16, 56, 71, 0.08);
    box-shadow: 0 28px 60px rgba(16, 56, 71, 0.16);
}

.modal-header {
    background: #103847;
    color: #f5fbfd;
}

.modal-header h3,
.modal-close {
    color: #f5fbfd;
}

.btn-submit-application {
    background: #103847;
    box-shadow: 0 12px 24px rgba(16, 56, 71, 0.16);
}

.btn-submit-application:hover {
    background: #0d3240;
}

@media (max-width: 991px) {
    .careers-hero .hero-content,
    .careers-hero .lead {
        max-width: none;
    }

    .careers-hero .hero-stats {
        justify-content: center;
    }

    .careers-hero .hero-image-grid {
        padding: 18px;
    }
}

@media (max-width: 576px) {
    .jobs-grid,
    .benefits-grid {
        gap: 18px;
    }

    .job-card,
    .benefit-item {
        border-radius: 22px;
    }
}


/* ==================================================
   FRIENDLIER GREEN TUNING
   ================================================== */

.section-badge-modern {
    background: #edf7ef;
    color: #2f5a35;
    border-color: rgba(86, 180, 49, 0.14);
}

.section-badge-modern::before {
    background: var(--secondary-color);
}

.about-us-modern {
    background: linear-gradient(180deg, #f6faf5 0%, #fcfdf8 100%);
}

.about-us-modern::before {
    background: linear-gradient(45deg, rgba(118, 203, 123, 0.12), transparent 72%);
}

.about-us-modern .story-card::before,
.about-us-modern .quality-promise-modern::before,
.services-section .service-card::before,
.job-card::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.about-us-modern .story-icon,
.about-us-modern .value-icon,
.about-us-modern .btn-promise,
.about-us-modern .stats-modern .stat-card-modern.primary,
.job-icon,
.btn-apply,
.btn-submit-application {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.services-summary-card {
    background: linear-gradient(135deg, #f3fbf2, #e9f7ea);
    color: var(--text-dark);
    border: 1px solid rgba(118, 203, 123, 0.16);
    box-shadow: 0 24px 54px rgba(86, 180, 49, 0.08);
}

.services-summary-card::before {
    background: linear-gradient(135deg, rgba(118,203,123,0.14), transparent 60%);
}

.services-summary-eyebrow {
    color: #4e8c3a;
}

.services-summary-card p {
    color: var(--text-muted);
}

.services-summary-link,
.services-section .service-link {
    color: #34613a;
    border-color: rgba(86, 180, 49, 0.16);
}

.services-summary-link:hover {
    color: #34613a;
    border-color: rgba(86, 180, 49, 0.28);
}

.services-section .service-icon i,
.services-section .service-features li i,
.contact-enterprise .contact-icon i,
.job-type,
.job-location,
.job-salary,
.benefit-tag,
.job-requirements li i {
    color: #3f7336;
}

.services-section .service-card:hover .service-icon::before,
.services-section .service-card:hover .service-features li i {
    background: var(--secondary-color);
}

.services-section .service-link i,
.contact-enterprise .contact-icon,
.contact-enterprise .contact-card.primary .contact-icon,
.job-type,
.job-location,
.job-salary,
.benefit-tag,
.job-requirements li i {
    background: #eef8ec;
}

.services-section .service-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: transparent;
}

.vision-modern {
    background: linear-gradient(180deg, #5d8c42 0%, #7ab560 100%);
}

.vision-modern .section-badge-modern {
    background: rgba(255, 255, 255, 0.14);
    color: #f7fff7;
    border-color: rgba(255, 255, 255, 0.18);
}

.vision-modern .highlight-text,
.benefits-section .highlight-text,
.careers-hero .highlight-text {
    background: linear-gradient(135deg, #ffffff, #f3ffed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-enterprise {
    background: linear-gradient(180deg, #f4faf2 0%, #ffffff 100%);
}

.contact-enterprise .contact-form-wrapper {
    background: linear-gradient(135deg, #6aa64a, #84c46a);
    box-shadow: 0 28px 60px rgba(86, 180, 49, 0.14);
}

.contact-enterprise .contact-submit-btn {
    color: #3b6b34;
}

.contact-enterprise .contact-card.primary {
    background: #edf7ef;
    color: #34613a;
}

.contact-enterprise .contact-card.primary h4,
.contact-enterprise .contact-card.primary p {
    color: #34613a;
}

.careers-hero {
    background: linear-gradient(180deg, #f4faf2 0%, #fcfdf8 100%);
}

.careers-hero .section-badge-modern,
.benefits-section .section-badge-modern {
    background: #edf7ef;
    color: #34613a;
    border-color: rgba(118, 203, 123, 0.18);
}

.careers-hero .hero-image-grid {
    background: rgba(245, 251, 242, 0.9);
    border-color: rgba(118, 203, 123, 0.16);
    box-shadow: 0 26px 54px rgba(86, 180, 49, 0.08);
}

.jobs-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5faf4 100%);
}

.btn-apply:hover,
.btn-submit-application:hover {
    background: linear-gradient(135deg, #4b9832, #69b85b);
}

.benefits-section {
    background: linear-gradient(180deg, #74af58 0%, #94c97c 100%);
}


/* ==================================================
   BLUE-FIRST REBALANCE
   ================================================== */

.section-badge-modern {
    background: #edf6fb;
    color: #155a74;
    border-color: rgba(26, 178, 232, 0.14);
}

.section-badge-modern::before {
    background: var(--primary-color);
}

.about-us-modern {
    background: linear-gradient(180deg, #f4f9fc 0%, #fcfdfd 100%);
}

.about-us-modern::before {
    background: linear-gradient(45deg, rgba(79, 208, 246, 0.1), transparent 72%);
}

.about-us-modern .story-card::before,
.about-us-modern .quality-promise-modern::before,
.services-section .service-card::before,
.job-card::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.about-us-modern .story-icon,
.about-us-modern .value-icon,
.about-us-modern .btn-promise,
.about-us-modern .stats-modern .stat-card-modern.primary,
.job-icon,
.btn-apply,
.btn-submit-application {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.services-summary-card {
    background: linear-gradient(135deg, #eef8fc, #e7f4fb);
    border-color: rgba(26, 178, 232, 0.14);
    box-shadow: 0 24px 54px rgba(20, 141, 179, 0.08);
}

.services-summary-card::before {
    background: linear-gradient(135deg, rgba(79,208,246,0.16), transparent 60%);
}

.services-summary-eyebrow,
.services-summary-link,
.services-section .service-link,
.services-section .service-icon i,
.services-section .service-features li i,
.contact-enterprise .contact-icon i,
.job-type,
.job-location,
.job-salary,
.benefit-tag,
.job-requirements li i {
    color: #167da2;
}

.services-summary-link,
.services-section .service-link {
    border-color: rgba(26, 178, 232, 0.16);
}

.services-summary-link:hover {
    border-color: rgba(26, 178, 232, 0.3);
}

.services-section .service-card:hover .service-icon::before,
.services-section .service-card:hover .service-features li i,
.services-section .service-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.services-section .service-link i,
.contact-enterprise .contact-icon,
.contact-enterprise .contact-card.primary .contact-icon,
.job-type,
.job-location,
.job-salary,
.benefit-tag,
.job-requirements li i {
    background: #edf6fb;
}

.vision-modern {
    background: linear-gradient(180deg, #148db3 0%, #1ab2e8 100%);
}

.vision-modern .section-badge-modern {
    background: rgba(255, 255, 255, 0.14);
    color: #f7fdff;
    border-color: rgba(255, 255, 255, 0.18);
}

.vision-modern .highlight-text,
.benefits-section .highlight-text,
.careers-hero .highlight-text {
    background: linear-gradient(135deg, #ffffff, #dff8ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-enterprise {
    background: linear-gradient(180deg, #f3f9fc 0%, #ffffff 100%);
}

.contact-enterprise .contact-form-wrapper {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 28px 60px rgba(20, 141, 179, 0.14);
}

.contact-enterprise .contact-submit-btn {
    color: #167da2;
}

.contact-enterprise .contact-card.primary {
    background: #edf6fb;
    color: #155a74;
}

.contact-enterprise .contact-card.primary h4,
.contact-enterprise .contact-card.primary p {
    color: #155a74;
}

.careers-hero {
    background: linear-gradient(180deg, #f3f9fc 0%, #fcfdfd 100%);
}

.careers-hero .section-badge-modern,
.benefits-section .section-badge-modern {
    background: #edf6fb;
    color: #155a74;
    border-color: rgba(26, 178, 232, 0.16);
}

.careers-hero .hero-image-grid {
    background: rgba(242, 250, 253, 0.92);
    border-color: rgba(79, 208, 246, 0.16);
    box-shadow: 0 26px 54px rgba(20, 141, 179, 0.08);
}

.jobs-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.btn-apply:hover,
.btn-submit-application:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.benefits-section {
    background: linear-gradient(180deg, #1a9cc7 0%, #35b7dc 100%);
}

.benefits-section::before,
.about-us-modern .story-card::before,
.about-us-modern .quality-promise-modern::before,
.services-section .service-card::before,
.job-card::before {
    box-shadow: inset 0 0 0 9999px rgba(118, 203, 123, 0.08);
}

/* Services section refresh: stacked single cards */
/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION  (svc26-)  — modern bento card redesign
   ══════════════════════════════════════════════════════════════ */

.svc26-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
    background: #f4f8fc;
}

.svc26-wrap {
    padding-left:  clamp(1.5rem, 5vw, 6rem);
    padding-right: clamp(1.5rem, 5vw, 6rem);
}

/* ── Category label ───────────────────────────────────────── */
.svc26-cat-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 2.8rem 0 1.2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(26, 178, 232, 0.18);
}

.svc26-cat-label span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1ab2e8;
}

.svc26-cat-label span i {
    font-size: 0.7rem;
}

.svc26-cat-label em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8aabba;
}

.svc26-cat-label--security {
    border-color: rgba(86, 180, 49, 0.2);
    margin-top: 3.5rem;
}

.svc26-cat-label--security span {
    color: #3ea51e;
}

/* ── Card Grid ────────────────────────────────────────────── */
.svc26-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}

/* ── Card ─────────────────────────────────────────────────── */
.svc26-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border: 1px solid rgba(11, 45, 60, 0.07);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.28s ease,
                border-color 0.28s ease;
}

.svc26-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(26,178,232,0.06) 0%,
        rgba(56,197,216,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc26-card:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow:
        0 2px 0 rgba(26,178,232,0.22),
        0 24px 56px rgba(11,45,60,0.10);
    border-color: rgba(26,178,232,0.25);
    text-decoration: none;
    color: inherit;
}

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

/* Security card accent */
.svc26-card--security::before {
    background: linear-gradient(135deg,
        rgba(62,165,30,0.06) 0%,
        rgba(86,180,49,0.02) 100%);
}

.svc26-card--security:hover {
    border-color: rgba(62,165,30,0.3);
    box-shadow:
        0 2px 0 rgba(62,165,30,0.2),
        0 24px 56px rgba(11,45,60,0.10);
}

/* ── Card inner ───────────────────────────────────────────── */
.svc26-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.8rem 1.8rem 0;
    position: relative;
    z-index: 1;
}

.svc26-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1ab2e8 0%, #0e8fbb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(26,178,232,0.28);
    flex-shrink: 0;
}

.svc26-card--security .svc26-icon {
    background: linear-gradient(135deg, #3ea51e 0%, #2d8815 100%);
    box-shadow: 0 8px 24px rgba(62,165,30,0.25);
}

.svc26-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(11,45,60,0.07);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.svc26-card h3 {
    margin: 1.1rem 1.8rem 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b2d3c;
    letter-spacing: -0.01em;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.svc26-card p {
    margin: 0 1.8rem 1rem;
    font-size: 0.85rem;
    color: #64808e;
    line-height: 1.65;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* ── Feature pills ────────────────────────────────────────── */
.svc26-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 1.8rem 1.2rem;
    position: relative;
    z-index: 1;
}

.svc26-tags span {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2d7fa0;
    background: rgba(26,178,232,0.09);
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.01em;
    transition: background 0.2s;
}

.svc26-card:hover .svc26-tags span {
    background: rgba(26,178,232,0.15);
}

.svc26-card--security .svc26-tags span {
    color: #2d8015;
    background: rgba(62,165,30,0.09);
}

.svc26-card--security:hover .svc26-tags span {
    background: rgba(62,165,30,0.15);
}

/* ── Bottom CTA strip ─────────────────────────────────────── */
.svc26-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.8rem;
    border-top: 1px solid rgba(11,45,60,0.07);
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.svc26-cta span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1ab2e8;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.svc26-card--security .svc26-cta span {
    color: #3ea51e;
}

.svc26-cta i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26,178,232,0.1);
    color: #1ab2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    transition: background 0.22s, transform 0.22s;
}

.svc26-card--security .svc26-cta i {
    background: rgba(62,165,30,0.1);
    color: #3ea51e;
}

.svc26-card:hover .svc26-cta i {
    background: #1ab2e8;
    color: #fff;
    transform: translateX(3px);
}

.svc26-card--security:hover .svc26-cta i {
    background: #3ea51e;
    color: #fff;
}

/* ── Section bottom CTA ───────────────────────────────────── */
.svc26-bottom-cta {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(11,45,60,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.svc26-bottom-cta p {
    margin: 0;
    font-size: 0.92rem;
    color: #64808e;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .svc26-grid {
        grid-template-columns: 1fr 1fr;
    }
    .svc26-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .svc26-grid {
        grid-template-columns: 1fr;
    }
    .svc26-card-top,
    .svc26-card h3,
    .svc26-card p,
    .svc26-tags,
    .svc26-cta {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }
    .svc26-card-top {
        padding-top: 1.4rem;
    }
}

/* Dedicated header for /services.php overview page */
.services-overview-hero {
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
}

.services-overview-shell {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(1.4rem, 2.5vw, 2.1rem);
    border-radius: 28px;
    border: 1px solid rgba(11, 54, 73, 0.12);
    background:
        radial-gradient(circle at 8% 10%, rgba(26, 178, 232, 0.12), transparent 34%),
        radial-gradient(circle at 92% 86%, rgba(118, 203, 123, 0.12), transparent 32%),
        #fff;
    box-shadow: 0 20px 45px rgba(9, 39, 54, 0.08);
}

.services-overview-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #eaf7fc;
    color: #155a74;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.services-overview-shell h1 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    color: var(--text-dark);
}

.services-overview-shell p {
    margin: 0.9rem auto 0;
    max-width: 760px;
    color: var(--text-muted);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.7;
}

/* About section refresh: unified profile layout */
.about-us-modern .about-unified-shell {
    border-radius: 30px;
    padding: clamp(1.3rem, 2.3vw, 2.2rem);
    border: 1px solid rgba(11, 54, 73, 0.12);
    background:
        radial-gradient(circle at 8% 12%, rgba(26, 178, 232, 0.09), transparent 35%),
        radial-gradient(circle at 90% 86%, rgba(118, 203, 123, 0.09), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 253, 0.95));
}

.about-us-modern .about-focus-card {
    margin-top: 1.25rem;
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11, 54, 73, 0.1);
}

.about-us-modern .about-focus-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-us-modern .about-focus-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.about-us-modern .about-focus-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.about-us-modern .about-mini-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.about-us-modern .about-mini-item {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(11, 54, 73, 0.1);
    background: rgba(255, 255, 255, 0.82);
}

.about-us-modern .about-mini-item h5 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    color: #155a74;
}

.about-us-modern .about-mini-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.about-us-modern .about-dual-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.about-us-modern .about-service-panel {
    border-radius: 20px;
    padding: 1.1rem;
    background: #fff;
    border: 1px solid rgba(11, 54, 73, 0.1);
}

.about-us-modern .about-service-panel h4 {
    margin: 0 0 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.02rem;
    color: #155a74;
}

.about-us-modern .about-service-panel h4 i {
    color: var(--primary-color);
}

.about-us-modern .about-service-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.about-us-modern .about-service-panel li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.45;
}

.about-us-modern .about-service-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary-color);
}

@media (max-width: 991px) {
    .about-us-modern .about-dual-panel,
    .about-us-modern .about-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   sv26 — services.php standalone layout (overview + detail)
   ═══════════════════════════════════════════════════════════════════ */

/* ── OVERVIEW: HERO ─────────────────────────────────────────────── */
.sv26-hero {
    padding: clamp(6rem, 10vw, 9rem) 0 clamp(3.5rem, 6vw, 5rem);
    background: #fff;
    border-bottom: 1px solid #e8f5fb;
}

.sv26-hero-eyebrow {
    margin: 0 0 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1ab2e8;
}

.sv26-hero-title {
    margin: 0 0 1.6rem;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    color: #0b2d3c;
    letter-spacing: -0.02em;
}

.sv26-hero-title span {
    color: #1ab2e8;
}

.sv26-hero-sub {
    margin: 0 0 2.4rem;
    max-width: 560px;
    color: #4a6878;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
}

.sv26-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3.5rem;
}

.sv26-hero-chips a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s ease;
}

.sv26-hero-chips a:first-child {
    background: #0b2d3c;
    color: #fff;
}

.sv26-hero-chips a:nth-child(2) {
    background: #1ab2e8;
    color: #fff;
}

.sv26-hero-chips a:last-child {
    background: transparent;
    color: #1ab2e8;
    border: 2px solid #1ab2e8;
}

.sv26-hero-chips a:hover {
    opacity: 0.85;
    text-decoration: none;
    color: inherit;
}

.sv26-hero-stats {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
    border-top: 1px solid #e8f5fb;
    padding-top: 2rem;
}

.sv26-hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sv26-hero-stats strong {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #0b2d3c;
    line-height: 1;
}

.sv26-hero-stats span {
    font-size: 0.8rem;
    color: #607e8d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ── OVERVIEW: CATEGORY SECTIONS ────────────────────────────────── */
.sv26-cat {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #f7fbfd;
}

.sv26-cat .container-fluid {
    padding-left:  clamp(1.5rem, 5vw, 6rem);
    padding-right: clamp(1.5rem, 5vw, 6rem);
}

.sv26-cat-dark {
    background: #0b2d3c;
}

.sv26-cat-head {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.sv26-cat-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1ab2e8;
    margin-bottom: 0.85rem;
}

.sv26-cat-dark .sv26-cat-label {
    color: rgba(26, 178, 232, 0.9);
}

.sv26-cat-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #0b2d3c;
    letter-spacing: -0.015em;
}

.sv26-cat-dark .sv26-cat-head h2 {
    color: #ffffff;
}

/* ══════════════════════════════════════════════════
   OVERVIEW: TILE GRID  — modern 2026 bento style
   ══════════════════════════════════════════════════ */
.sv26-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sv26-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

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

/* ── BASE TILE ─────────────────────────────────── */
.sv26-tile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(11, 45, 60, 0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.28s ease,
                border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

/* gradient-border shimmer on hover via box-shadow */
.sv26-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(26,178,232,0.08) 0%,
        rgba(86,180,49,0.04) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.sv26-tile:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow:
        0 2px 0 rgba(26,178,232,0.25),
        0 24px 56px rgba(11, 45, 60, 0.10),
        0 4px 12px rgba(26, 178, 232, 0.08);
    border-color: rgba(26, 178, 232, 0.28);
    text-decoration: none;
    color: inherit;
}

.sv26-tile:hover::before {
    opacity: 1;
}

/* inner content wrapper with padding */
.sv26-tile > * {
    position: relative;
    z-index: 1;
}

.sv26-tile-body {
    padding: 2rem 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

/* ── ICON ──────────────────────────────────────── */
.sv26-tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1ab2e8 0%, #0e8fbb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    box-shadow: 0 6px 20px rgba(26,178,232,0.25);
}

/* ── TYPOGRAPHY ───────────────────────────────── */
.sv26-tile h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b2d3c;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.sv26-tile p {
    margin: 0;
    font-size: 0.875rem;
    color: #64808e;
    line-height: 1.65;
    flex: 1;
}

/* ── FOOTER STRIP ─────────────────────────────── */
.sv26-tile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.8rem;
    border-top: 1px solid rgba(11,45,60,0.06);
    margin-top: auto;
}

.sv26-tile-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1ab2e8;
}

.sv26-tile-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(26, 178, 232, 0.1);
    color: #1ab2e8;
    font-size: 0.8rem;
    transition: background 0.22s, transform 0.22s;
    flex-shrink: 0;
}

.sv26-tile:hover .sv26-tile-arrow {
    background: #1ab2e8;
    color: #fff;
    transform: translateX(4px);
}

/* dark variant (unused currently but kept for compat) */
.sv26-tile-dark {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.sv26-tile-dark h3 { color: #ffffff; }
.sv26-tile-dark p  { color: rgba(255,255,255,0.58); }
.sv26-tile-dark .sv26-tile-footer { border-color: rgba(255,255,255,0.07); }
.sv26-tile-dark .sv26-tile-arrow  { background: rgba(26,178,232,0.18); }
.sv26-tile-dark:hover {
    border-color: rgba(26,178,232,0.45);
    box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}

/* ── OVERVIEW: CTA BANNER ───────────────────────────────────────── */
.sv26-cta {
    padding: clamp(3rem, 5vw, 4rem) 0;
    background: #fff;
    border-top: 1px solid #e8f5fb;
}

.sv26-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.sv26-cta-inner h2 {
    margin: 0 0 0.4rem;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: #0b2d3c;
}

.sv26-cta-inner p {
    margin: 0;
    color: #5a7585;
}

.sv26-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(26, 178, 232, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sv26-cta-btn:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(26, 178, 232, 0.45);
}

/* ═══════════════════════════════════════════════════════════════════
   sv26 — DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── DETAIL HERO ────────────────────────────────────────────────── */
.sv26-detail-hero {
    padding: clamp(5.5rem, 8vw, 8rem) 0 clamp(3rem, 5vw, 4.5rem);
    background: #fff;
    border-bottom: 1px solid #e8f5fb;
}

.sv26-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: #7a9aaa;
    margin-bottom: 2rem;
}

.sv26-breadcrumb a {
    color: #1ab2e8;
    text-decoration: none;
    font-weight: 600;
}

.sv26-breadcrumb a:hover {
    text-decoration: underline;
}

.sv26-breadcrumb i {
    font-size: 0.65rem;
    color: #aac3ce;
}

.sv26-detail-hero-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.sv26-detail-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1ab2e8;
    margin-bottom: 1rem;
}

.sv26-detail-hero-text h1 {
    margin: 0 0 1.2rem;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #0b2d3c;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.sv26-detail-hero-text > p {
    margin: 0 0 1.8rem;
    max-width: 600px;
    color: #4a6878;
    font-size: 1.08rem;
    line-height: 1.75;
}

.sv26-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sv26-detail-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    background: #ecf8fd;
    color: #1a6a8a;
    border: 1px solid rgba(26, 178, 232, 0.2);
    padding: 0.38rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.sv26-detail-chips span i {
    font-size: 0.72rem;
    color: #1ab2e8;
}

.sv26-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(26, 178, 232, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sv26-detail-cta-btn:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(26, 178, 232, 0.45);
}

.sv26-detail-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 160px;
}

.sv26-detail-stat {
    padding: 1.1rem 1.3rem;
    border-radius: 18px;
    border: 1px solid rgba(26, 178, 232, 0.18);
    background: #f5fbff;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sv26-detail-stat strong {
    font-size: 1.75rem;
    font-weight: 900;
    color: #0b2d3c;
    line-height: 1;
}

.sv26-detail-stat span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1ab2e8;
}

/* ── DETAIL MAIN CONTENT ────────────────────────────────────────── */
.sv26-detail-main {
    padding: clamp(3rem, 5vw, 5rem) 0;
    background: #f7fbfd;
}

.sv26-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.sv26-detail-primary {
    display: grid;
    gap: 2rem;
}

.sv26-detail-story {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dff0f9;
    box-shadow: 0 4px 24px rgba(11,45,60,0.05);
}

.sv26-detail-story-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sv26-detail-story h2 {
    margin: 0 0 0.6rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b2d3c;
}

.sv26-detail-story p {
    margin: 0;
    color: #5a7585;
    line-height: 1.7;
}

.sv26-detail-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sv26-detail-block {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1.4rem 1.25rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dff0f9;
}

.sv26-detail-block-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ebf8fd;
    color: #1ab2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sv26-detail-block h4 {
    margin: 0 0 0.25rem;
    font-size: 0.97rem;
    font-weight: 800;
    color: #0b2d3c;
}

.sv26-detail-block p {
    margin: 0;
    font-size: 0.86rem;
    color: #6087a0;
    line-height: 1.55;
}

.sv26-detail-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sv26-detail-subcard {
    padding: 1.4rem 1.3rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dff0f9;
}

.sv26-detail-subcard-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.sv26-detail-subcard-head i {
    color: #1ab2e8;
    font-size: 1rem;
}

.sv26-detail-subcard-head h4 {
    margin: 0;
    font-size: 0.97rem;
    font-weight: 800;
    color: #0b2d3c;
}

.sv26-detail-subcard ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.sv26-detail-subcard li {
    font-size: 0.86rem;
    color: #567182;
    padding-left: 1.1rem;
    position: relative;
}

.sv26-detail-subcard li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1ab2e8;
    font-weight: 700;
}

/* ── DETAIL SIDEBAR ─────────────────────────────────────────────── */
.sv26-detail-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sv26-detail-sidebar-card {
    padding: 2rem;
    border-radius: 24px;
    background: #0b2d3c;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sv26-detail-sidebar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(26, 178, 232, 0.2);
    color: #1ab2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.sv26-detail-sidebar-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.sv26-detail-sidebar-card > p {
    margin: 0 0 1.2rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

.sv26-detail-sidebar-card ul {
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.sv26-detail-sidebar-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
}

.sv26-detail-sidebar-card li i {
    color: #1ab2e8;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sv26-detail-sidebar-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #1ab2e8;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    transition: background 0.2s, transform 0.2s;
}

.sv26-detail-sidebar-cta:hover {
    text-decoration: none;
    color: #fff;
    background: #13a0d4;
    transform: translateY(-2px);
}

.sv26-detail-sidebar-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #1ab2e8;
    font-size: 0.88rem;
    font-weight: 700;
    transition: gap 0.2s;
}

.sv26-detail-sidebar-back a:hover {
    text-decoration: none;
    gap: 0.6rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .sv26-detail-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 991px) {
    .sv26-detail-hero-body {
        grid-template-columns: 1fr;
    }

    .sv26-detail-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sv26-detail-stat {
        min-width: 140px;
    }

    .sv26-detail-layout {
        grid-template-columns: 1fr;
    }

    .sv26-detail-sidebar {
        position: static;
    }

    .sv26-detail-blocks,
    .sv26-detail-subgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sv26-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sv26-hero-stats {
        gap: 1.5rem;
    }

    .sv26-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sv26-detail-story {
        grid-template-columns: 1fr;
    }

    .sv26-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sv26-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .sv26-grid,
    .sv26-grid-3,
    .sv26-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ca26 — stellenangebote.php modern layout
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────────── */
.ca26-hero {
    overflow: hidden;
    background: linear-gradient(140deg, rgba(26,178,232,0.10) 0%, rgba(79,208,246,0.07) 25%, rgba(86,180,49,0.05) 55%, rgba(118,203,123,0.06) 75%, rgba(255,255,255,0.95) 100%), #fff;
}

.ca26-hero-layout {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    min-height: 100vh;
}

/* Linkes Panel — jetzt transparent auf dem Farbverlauf */
.ca26-hero-panel {
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dekoratives Großbuchstaben-Wasserzeichen */
.ca26-hero-panel::before {
    content: 'JT';
    position: absolute;
    right: -0.15em;
    bottom: -0.2em;
    font-size: 22rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(11,45,60,0.04);
    pointer-events: none;
    letter-spacing: -0.05em;
    user-select: none;
}

.ca26-hero-panel-inner {
    padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem) clamp(4rem, 8vw, 9rem);
    position: relative;
    z-index: 1;
    width: 100%;
}

.ca26-hero-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}

.ca26-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a6878;
    border: 1px solid rgba(26, 178, 232, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: rgba(255,255,255,0.5);
}

.ca26-hero-pill i {
    color: #1ab2e8;
    font-size: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.ca26-hero-open-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    background: #1ab2e8;
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.04em;
}

.ca26-hero-title {
    margin: 0 0 1.2rem;
    font-size: clamp(2.4rem, 3.8vw, 4.4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #0b2d3c;
    letter-spacing: -0.03em;
}

.ca26-hero-title em {
    font-style: normal;
    color: #1ab2e8;
}

.ca26-hero-tagline {
    margin: 0 0 0.6rem;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 600;
    color: #1ab2e8;
    letter-spacing: 0.01em;
}
.ca26-hero-tagline span {
    color: #56b431;
}

.ca26-hero-sub {
    margin: 0 0 2rem;
    max-width: 400px;
    color: #4a6878;
    font-size: 0.95rem;
    line-height: 1.75;
}

.ca26-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.ca26-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: #1ab2e8;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 14px;
    padding: 0.85rem 1.6rem;
    box-shadow: 0 12px 30px rgba(26, 178, 232, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ca26-hero-btn-primary:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(26, 178, 232, 0.45);
    background: #13a0d4;
}

.ca26-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.6);
    color: #0b2d3c;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid rgba(11, 45, 60, 0.15);
    border-radius: 14px;
    padding: 0.85rem 1.6rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ca26-hero-btn-ghost:hover {
    border-color: #1ab2e8;
    color: #1ab2e8;
    background: rgba(255,255,255,0.9);
}

/* Stats-Leiste */
.ca26-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(11, 45, 60, 0.1);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.ca26-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-right: 2.5rem;
}

.ca26-hero-stat strong {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 900;
    color: #0b2d3c;
    line-height: 1;
}

.ca26-hero-stat span {
    font-size: 0.72rem;
    color: #7a9aaa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.ca26-hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(11, 45, 60, 0.1);
    margin-right: 2.5rem;
    flex-shrink: 0;
}

/* Rechtes Panel — zentriertes Bild-Layout */
.ca26-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
}

/* Hero (index.php) Kreis-Szene — gleiche Struktur, eigene Größe */
.hero-circle-scene {
    position: relative;
    width: clamp(300px, 42vw, 480px);
    height: clamp(300px, 42vw, 480px);
    flex-shrink: 0;
}

.hero-circle-scene .ca26-float-tl {
    top: -1rem;
    left: -4.5rem;
}

.hero-circle-scene .ca26-float-br {
    bottom: 0;
    right: -4rem;
}

.hero-circle-scene .ca26-float-tl i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.hero-circle-scene .ca26-float-br i {
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
}

@media (max-width: 991px) {
    .hero-circle-scene {
        width: clamp(220px, 58vw, 320px);
        height: clamp(220px, 58vw, 320px);
    }

    .hero-circle-scene .ca26-float-tl {
        left: -1.5rem;
    }

    .hero-circle-scene .ca26-float-br {
        right: -1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-circle-scene {
        width: min(78vw, 220px);
        height: min(78vw, 220px);
    }

    .hero-circle-scene .ca26-float-tl,
    .hero-circle-scene .ca26-float-br {
        display: none;
    }
}

/* Szene hält alle Elemente zentriert */
.ca26-hero-img-scene {
    position: relative;
    width: clamp(320px, 38vw, 480px);
    height: clamp(320px, 38vw, 480px);
    flex-shrink: 0;
}

/* Dekorative Ringe */
.ca26-img-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.ca26-ring-outer {
    inset: -22px;
    border: 2px dashed rgba(26, 178, 232, 0.25);
    animation: ring-spin 28s linear infinite;
}

.ca26-ring-inner {
    inset: -8px;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #1ab2e8 0%, rgba(86,180,49,0.5) 50%, rgba(26,178,232,0.15) 100%) border-box;
    box-shadow: 0 0 40px rgba(26, 178, 232, 0.12);
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Kreis-Bild */
.ca26-img-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow:
        0 30px 70px rgba(11, 45, 60, 0.18),
        0 0 0 6px rgba(255,255,255,0.9);
}

.ca26-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.ca26-img-circle:hover img {
    transform: scale(1.04);
}

/* Deko-Dots (Punktraster) */
.ca26-deco-dots {
    position: absolute;
    bottom: -2rem;
    right: -2.5rem;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(26,178,232,0.3) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 0;
    opacity: 0.7;
}

/* Float-Karten */
.ca26-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(11, 45, 60, 0.14);
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 3;
    white-space: nowrap;
}

.ca26-float i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ca26-float-tl {
    top: -1rem;
    left: -4rem;
    animation: float-up 5s ease-in-out infinite;
}

.ca26-float-tl i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.ca26-float-br {
    bottom: 0rem;
    right: -3.5rem;
    animation: float-up 5s ease-in-out infinite 2.5s;
}

.ca26-float-br i {
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
}

@keyframes float-up {
    0%, 100% { transform: translateY(0);  }
    50%       { transform: translateY(-7px); }
}

.ca26-float strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #0b2d3c;
    line-height: 1.2;
}

.ca26-float span {
    display: block;
    font-size: 0.74rem;
    color: #7a9aaa;
    font-weight: 600;
}

/* ── JOBS ────────────────────────────────────────────────────────── */
.ca26-jobs {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #f7fbfd;
}

.ca26-jobs .container-fluid {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
}

.ca26-jobs-head {
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.ca26-jobs-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1ab2e8;
    margin-bottom: 0.85rem;
}

.ca26-jobs-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #0b2d3c;
    letter-spacing: -0.015em;
}

.ca26-job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ca26-job {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dff0f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ca26-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(11, 45, 60, 0.09);
    border-color: rgba(26, 178, 232, 0.35);
}

.ca26-job-accent {
    border-left: 4px solid #1ab2e8;
}

.ca26-job-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.ca26-job-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ca26-job-type {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    white-space: nowrap;
}

.ca26-type-full    { background: #dcfce7; color: #166534; }
.ca26-type-urgent  { background: #fee2e2; color: #991b1b; }
.ca26-type-part    { background: #fef9c3; color: #713f12; }
.ca26-type-azubi   { background: #ede9fe; color: #4c1d95; }

.ca26-job-body {
    flex: 1;
    min-width: 0;
}

.ca26-job-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
    flex-wrap: wrap;
}

.ca26-job-top h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0b2d3c;
    line-height: 1.2;
}

.ca26-job-top h3 span {
    font-weight: 500;
    color: #7a9aaa;
}

.ca26-job-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ca26-job-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a6878;
    background: #eef8fd;
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
}

.ca26-job-badges span i {
    font-size: 0.72rem;
    color: #1ab2e8;
}

.ca26-job-body > p {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    color: #5a7585;
    line-height: 1.6;
}

.ca26-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ca26-job-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2b5a70;
    background: #e8f5fb;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    border: 1px solid rgba(26, 178, 232, 0.18);
}

.ca26-job-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ca26-job-salary {
    font-size: 1.3rem;
    font-weight: 900;
    color: #0b2d3c;
    line-height: 1;
    white-space: nowrap;
}

.ca26-job-salary small {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7a9aaa;
}

.ca26-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #0b2d3c;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.35rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.ca26-apply-btn:hover {
    background: #1ab2e8;
    transform: translateX(3px);
}

/* ── BENEFITS ────────────────────────────────────────────────────── */
.ca26-benefits {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #0b2d3c;
}

.ca26-benefits .container-fluid {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
}

.ca26-benefits-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4rem;
    align-items: center;
}

.ca26-benefits-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 178, 232, 0.9);
    margin-bottom: 1rem;
}

.ca26-benefits-text h2 {
    margin: 0 0 1.2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.ca26-benefits-text p {
    margin: 0 0 2rem;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.75;
}

.ca26-benefits-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1ab2e8;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ca26-benefits-cta:hover {
    background: #13a0d4;
    transform: translateY(-2px);
}

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

.ca26-benefit {
    padding: 1.5rem 1.4rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, border-color 0.2s;
}

.ca26-benefit:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(26, 178, 232, 0.3);
}

.ca26-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(26, 178, 232, 0.18);
    color: #1ab2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ca26-benefit h4 {
    margin: 0 0 0.35rem;
    font-size: 0.97rem;
    font-weight: 800;
    color: #fff;
}

.ca26-benefit p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}

/* ── MODAL ───────────────────────────────────────────────────────── */
.ca26-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 45, 60, 0.65);
    backdrop-filter: blur(12px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.ca26-modal {
    background: #fff;
    border-radius: 28px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 70px rgba(11, 45, 60, 0.25);
}

.ca26-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 2rem 1.4rem;
    border-bottom: 1px solid #e8f5fb;
}

.ca26-modal-eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1ab2e8;
}

.ca26-modal-head h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: #0b2d3c;
}

.ca26-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dff0f9;
    background: #f5fbff;
    color: #5a7585;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.ca26-modal-close:hover {
    background: #0b2d3c;
    color: #fff;
    border-color: #0b2d3c;
}

.ca26-modal-form {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ca26-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ca26-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ca26-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #3a5a6b;
    letter-spacing: 0.02em;
}

.ca26-field input,
.ca26-field textarea {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1.5px solid #d8edf5;
    background: #f7fbfd;
    font-size: 0.92rem;
    color: #0b2d3c;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    resize: none;
}

.ca26-field input:focus,
.ca26-field textarea:focus {
    border-color: #1ab2e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 178, 232, 0.12);
}

.ca26-field input::placeholder,
.ca26-field textarea::placeholder {
    color: #a0bec9;
}

.ca26-file-zone {
    border-radius: 14px;
    border: 2px dashed #c5e4f0;
    background: #f5fbff;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.ca26-file-zone:hover,
.ca26-file-zone.has-file {
    border-color: #1ab2e8;
    background: #edf8fd;
}

.ca26-file-zone input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.ca26-file-zone label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.5rem;
    cursor: pointer;
    text-align: center;
}

.ca26-file-zone i {
    font-size: 1.5rem;
    color: #1ab2e8;
    margin-bottom: 0.25rem;
}

.ca26-file-zone .primary {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b2d3c;
}

.ca26-file-zone .secondary {
    font-size: 0.8rem;
    color: #7a9aaa;
}

.ca26-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.ca26-modal-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 10px 28px rgba(26, 178, 232, 0.3);
}

.ca26-modal-actions button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.ca26-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.78rem;
    color: #8aacba;
}

.ca26-privacy i {
    font-size: 0.72rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ca26-benefits-layout {
        grid-template-columns: 300px 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 1100px) {
    .ca26-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ca26-hero-visual {
        margin-top: 1.75rem;
        order: -1;
    }

    .ca26-float-tl {
        left: 1rem;
    }
}

@media (max-width: 991px) {
    .ca26-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ca26-hero-panel-inner {
        padding: 4.25rem 1.75rem 2.25rem;
    }

    .ca26-hero-visual {
        order: -1;
        padding: 3.75rem 1.25rem 1.5rem;
    }

    .ca26-hero-img-scene {
        width: clamp(220px, 58vw, 320px);
        height: clamp(220px, 58vw, 320px);
    }

    .ca26-float-tl {
        left: -2rem;
    }

    .ca26-float-br {
        right: -2rem;
    }

    .ca26-job {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto;
    }

    .ca26-job-cta {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ca26-benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ca26-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mehrfach-Kreise: nicht an Section-Kante abschneiden */
    .ca26-hero {
        overflow: visible;
    }

    .ca26-hero-visual {
        height: auto;
        min-height: 0;
        padding: 3.25rem 0.5rem 1.25rem;
        overflow: visible;
    }

    .ca26-hero-img-scene {
        width: min(80vw, 280px);
        height: min(80vw, 280px);
    }

    .ca26-dual-scene {
        width: min(86vw, 300px);
        height: min(86vw, 300px);
    }

    .ca26-hero-panel-inner {
        padding: 1.35rem 1.25rem 2rem;
    }

    .ca26-hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .ca26-hero-sub {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .ca26-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .ca26-hero-btn-primary,
    .ca26-hero-btn-ghost {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .ca26-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem 0.75rem;
        padding-top: 1.25rem;
        overflow: visible;
    }

    .ca26-hero-stat {
        padding: 0.65rem 0.7rem;
        border: 1px solid rgba(11, 45, 60, 0.08);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        min-width: 0;
    }

    .ca26-hero-stat-divider {
        display: none;
    }

    .ca26-hero-stat strong {
        font-size: clamp(1.15rem, 3.6vw, 1.45rem);
    }

    .ca26-hero-stat span {
        font-size: 0.66rem;
        line-height: 1.28;
        letter-spacing: 0.04em;
        white-space: normal;
        text-wrap: balance;
    }

}

/* ── Smartphone (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {

    .ca26-hero-img-scene {
        width: min(78vw, 250px);
        height: min(78vw, 250px);
    }

    .ca26-hero-title {
        font-size: clamp(1.75rem, 8vw, 2.2rem);
        letter-spacing: -0.02em;
    }

    .ca26-hero-top {
        gap: 0.5rem;
        margin-bottom: 1.1rem;
    }

    .ca26-hero-pill {
        font-size: 0.65rem;
        padding: 0.28rem 0.7rem;
    }

    .ca26-hero-open-badge {
        font-size: 0.65rem;
        padding: 0.28rem 0.7rem;
    }

    .ca26-hero-sub {
        font-size: 0.84rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .ca26-hero-btn-primary,
    .ca26-hero-btn-ghost {
        font-size: 0.88rem;
        padding: 0.85rem 1.25rem;
    }

    .ca26-hero-stats {
        margin-top: 1.3rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        padding-top: 1rem;
    }

    .ca26-hero-stat strong {
        font-size: 1.1rem;
    }

    .ca26-hero-stat span {
        font-size: 0.62rem;
        letter-spacing: 0.02em;
        line-height: 1.22;
    }

    /* Textblock: kein künstliches Vollbild mehr, Bilder stehen oben */
    .ca26-hero-panel-inner {
        padding: 1.25rem 1rem 2.5rem;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* Wasserzeichen auf Phone verkleinern */
    .ca26-hero-panel::before {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .ca26-job {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .ca26-job-left {
        flex-direction: row;
        align-items: center;
    }

    .ca26-job-cta {
        grid-column: 1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .ca26-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ca26-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ca26-modal {
        border-radius: 20px;
    }

    .ca26-modal-head,
    .ca26-modal-form {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   pr26 — sections/leitgedanken.php (Prozess-Section)
   ═══════════════════════════════════════════════════════════════════ */

.pr26-section {
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: linear-gradient(160deg, #e8f6fd 0%, #f2faff 40%, #edfbf0 100%);
    border-top: 1px solid rgba(26,178,232,0.12);
    border-bottom: 1px solid rgba(26,178,232,0.12);
    position: relative;
    overflow: hidden;
}

.pr26-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26,178,232,0.06) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
}

.pr26-container {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
    position: relative;
    z-index: 1;
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.pr26-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.pr26-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}

/* left-aligned variant used in services section */
.pr26-header.pr26-header--left {
    text-align: left;
}
.pr26-header.pr26-header--left .pr26-header-top {
    justify-content: flex-start;
}

.pr26-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a6878;
    border: 1px solid rgba(26, 178, 232, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: rgba(255,255,255,0.65);
    margin: 0;
}

.pr26-eyebrow i {
    color: #1ab2e8;
    font-size: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

.pr26-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #56b431;
    border: 1px solid rgba(86,180,49,0.3);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: rgba(86,180,49,0.07);
}

.pr26-title {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #0b2d3c;
    letter-spacing: -0.025em;
}

.pr26-title em {
    font-style: normal;
    color: #1ab2e8;
    position: relative;
    display: inline-block;
}

.pr26-title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1ab2e8, rgba(26,178,232,0));
    border-radius: 999px;
}

.pr26-tagline {
    margin: 0 0 0.65rem;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    font-weight: 600;
    color: #1ab2e8;
    letter-spacing: 0.01em;
}
.pr26-tagline span {
    color: #56b431;
}

.pr26-sub {
    margin: 0 auto;
    max-width: 520px;
    color: #6a8fa0;
    font-size: 1.05rem;
    line-height: 1.75;
}

.pr26-header.pr26-header--left .pr26-sub {
    margin: 0;
}

/* ── SCHRITTE ────────────────────────────────────────────────────── */
.pr26-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.pr26-step {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    border: 1px solid #e4f4fb;
    box-shadow: 0 6px 28px rgba(11, 45, 60, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pr26-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(11, 45, 60, 0.1);
}

.pr26-step-highlight {
    background: linear-gradient(145deg, #eaf7fc, #f4fdf8);
    border-color: rgba(26, 178, 232, 0.25);
}

.pr26-step-num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(26, 178, 232, 0.15);
    letter-spacing: -0.04em;
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
}

.pr26-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pr26-step-highlight .pr26-step-icon {
    background: linear-gradient(135deg, #2ecc87, #22a86e);
}

.pr26-step-body h4 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b2d3c;
}

.pr26-step-body p {
    margin: 0;
    font-size: 0.88rem;
    color: #5a7585;
    line-height: 1.65;
}

/* Pfeil zwischen Schritten */
.pr26-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    padding-top: 3rem;
    color: rgba(26, 178, 232, 0.35);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── TRUST-STRIP ─────────────────────────────────────────────────── */
.pr26-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.4rem 2rem;
    background: linear-gradient(135deg, #eaf7fc, #f0fdf6);
    border-radius: 20px;
    border: 1px solid #d4eef8;
}

.pr26-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 2rem 0 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: #2a6070;
}

.pr26-trust-item i {
    color: #1ab2e8;
    font-size: 1rem;
    flex-shrink: 0;
}

.pr26-trust-divider {
    width: 1px;
    height: 1.5rem;
    background: rgba(26, 178, 232, 0.2);
    margin-right: 2rem;
    flex-shrink: 0;
}

.pr26-trust-cta {
    margin-left: auto;
}

.pr26-trust-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 12px;
    padding: 0.7rem 1.4rem;
    box-shadow: 0 8px 24px rgba(26, 178, 232, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.pr26-trust-cta a:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(26, 178, 232, 0.38);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pr26-steps {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .pr26-steps > .pr26-step:nth-child(6),
    .pr26-steps > .pr26-step:nth-child(7),
    .pr26-steps > .pr26-step-arrow:nth-child(6) {
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .pr26-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pr26-step-arrow {
        display: none;
    }

    .pr26-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .pr26-trust-item {
        padding: 0;
    }

    .pr26-trust-divider {
        display: none;
    }

    .pr26-trust-cta {
        margin-left: 0;
        width: 100%;
    }

    .pr26-trust-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ab26 — sections/aboutus.php
   ═══════════════════════════════════════════════════════════════════ */

.ab26-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #ffffff;
    border-top: 1px solid rgba(26,178,232,0.1);
    border-bottom: 1px solid rgba(26,178,232,0.1);
    position: relative;
    overflow: hidden;
}

.ab26-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,178,232,0.07) 0%, transparent 70%);
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.ab26-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86,180,49,0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.ab26-container {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
    position: relative;
    z-index: 1;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
.ab26-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid #e8f5fb;
}

.ab26-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1ab2e8;
    margin: 0 0 1.2rem;
}

.ab26-eyebrow i {
    font-size: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

.ab26-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    color: #0b2d3c;
    letter-spacing: -0.03em;
}

.ab26-title em {
    font-style: normal;
    color: #1ab2e8;
    position: relative;
    display: inline-block;
}

.ab26-title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1ab2e8, rgba(26,178,232,0));
    border-radius: 999px;
}

.ab26-sub {
    margin: 0 0 1.8rem;
    color: #4a6878;
    font-size: 1rem;
    line-height: 1.8;
}

.ab26-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 14px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 8px 24px rgba(26, 178, 232, 0.28);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ab26-cta:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(26, 178, 232, 0.38);
}

/* ── STATS ──────────────────────────────────────────────────────── */
.ab26-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    padding: 1.75rem 2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #eaf7fc 0%, #f0faf6 100%);
    border: 1px solid #d4eef8;
    box-shadow: 0 4px 24px rgba(26, 178, 232, 0.07);
}

.ab26-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0 2.5rem 0 0;
}

.ab26-stat strong {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #0b2d3c;
    line-height: 1;
}

.ab26-stat span {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #7ab8cc;
}

.ab26-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(26, 178, 232, 0.2);
    margin-right: 2.5rem;
    flex-shrink: 0;
}

/* ── BODY ───────────────────────────────────────────────────────── */
.ab26-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

/* Werte-Grid */
.ab26-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ab26-value {
    padding: 1.6rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e8f5fb;
    box-shadow: 0 4px 20px rgba(11, 45, 60, 0.04);
    transition: border-color 0.2s, transform 0.22s, box-shadow 0.22s;
    position: relative;
    overflow: hidden;
}

.ab26-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ab2e8, rgba(26,178,232,0));
    opacity: 0;
    transition: opacity 0.2s;
}

.ab26-value:hover {
    border-color: rgba(26, 178, 232, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11, 45, 60, 0.1);
}

.ab26-value:hover::before {
    opacity: 1;
}

.ab26-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.ab26-value h4 {
    margin: 0 0 0.45rem;
    font-size: 0.97rem;
    font-weight: 800;
    color: #0b2d3c;
}

.ab26-value p {
    margin: 0;
    font-size: 0.86rem;
    color: #5a7585;
    line-height: 1.6;
}

/* Service-Panels */
.ab26-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ab26-service-card {
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid #dff0f9;
}

.ab26-service-clean {
    background: linear-gradient(135deg, #eaf7fc 0%, #f4fbfd 100%);
    border-color: #d4eef8;
}

.ab26-service-dark {
    background: linear-gradient(135deg, #e8f9f0 0%, #f0fdf6 100%);
    border-color: #c8eeda;
}

.ab26-service-dark .ab26-service-icon {
    background: linear-gradient(135deg, #2ecc87, #22a86e);
}

.ab26-service-dark .ab26-service-list li i {
    color: #2ecc87;
}

.ab26-service-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.ab26-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ab26-service-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b2d3c;
}

.ab26-service-dark h3 {
    color: #0b2d3c;
}

.ab26-service-list {
    margin: 0 0 1.4rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ab26-service-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: #3a5a6a;
}

.ab26-service-dark .ab26-service-list li {
    color: #3a5a6a;
}

.ab26-service-list li i {
    color: #1ab2e8;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ab26-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    color: #1ab2e8;
    transition: gap 0.2s;
}

.ab26-service-link:hover {
    text-decoration: none;
    gap: 0.65rem;
}

.ab26-service-link-light {
    color: #2a9c6a;
}

.ab26-service-link-light:hover {
    color: #1d7a52;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .ab26-header {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .ab26-body {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 991px) {
    .ab26-header {
        grid-template-columns: 1fr;
    }

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

    .ab26-stats {
        gap: 1rem;
    }

    .ab26-stat {
        padding-right: 1.5rem;
    }

    .ab26-stat-divider {
        margin-right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ab26-values {
        grid-template-columns: 1fr;
    }

    .ab26-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .ab26-stat-divider {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   qa26 — qualitaetssicherung.php
   ═══════════════════════════════════════════════════════════════════ */

/* Hero: Float-Icons für QS-Seite */
.qa26-hero .ca26-float-tl i {
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
}

.qa26-hero .ca26-float-br i {
    background: linear-gradient(135deg, #56b431, #3d8f22);
    color: #fff;
}

/* Gemeinsamer Container-Innenabstand */
.qa26-container {
    padding-left: clamp(2rem, 5vw, 5rem);
    padding-right: clamp(2rem, 5vw, 5rem);
}

/* ── 5 SÄULEN ─────────────────────────────────────────────────────── */
.qa26-pillars {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: #f7fbfd;
}

.qa26-pillar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qa26-pillar {
    display: grid;
    grid-template-columns: 56px 56px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dff0f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qa26-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(11, 45, 60, 0.09);
    border-color: rgba(26, 178, 232, 0.35);
}

.qa26-pillar-num {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(26, 178, 232, 0.2);
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.qa26-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1ab2e8, #0e8fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.qa26-pillar-body h3 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b2d3c;
}

.qa26-pillar-body > p {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    color: #5a7585;
    line-height: 1.65;
}

.qa26-pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.qa26-pillar-tags span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #2b5a70;
    background: #e8f5fb;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    border: 1px solid rgba(26, 178, 232, 0.18);
}

.qa26-pillar-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: #ebf8fd;
    color: #1ab2e8;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ── VERSPRECHEN-SECTION ──────────────────────────────────────────── */
.qa26-promise .ca26-benefits-label {
    color: rgba(26, 178, 232, 0.9);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .qa26-pillar {
        grid-template-columns: 44px 44px 1fr;
        grid-template-rows: auto auto;
    }

    .qa26-pillar-badge {
        grid-column: 3;
        justify-self: start;
        margin-top: -0.5rem;
    }
}

@media (max-width: 768px) {
    .qa26-pillar {
        grid-template-columns: 40px 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }

    .qa26-pillar-num {
        font-size: 1.5rem;
    }

    .qa26-pillar-icon {
        display: none;
    }

    .qa26-pillar-badge {
        grid-column: 2;
    }
}


/* ==================================================
   REFERENZEN PAGE  (rf26-)
   ================================================== */

/* ── Hero variant ─────────────────────────────────── */
.rf26-hero {
    /* reuses all .ca26-hero styles */
}

/* ── Shared container width ───────────────────────── */
.rf26-container {
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
}

/* ── Reviews section ──────────────────────────────── */
.rf26-reviews {
    background: #f8fbfe;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

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

/* ── Single card ──────────────────────────────────── */
.rf26-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 2.2rem 2rem;
    box-shadow: 0 2px 18px rgba(26,178,232,0.07);
    border: 1px solid rgba(26,178,232,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: box-shadow 0.25s, transform 0.25s;
}
.rf26-card:hover {
    box-shadow: 0 8px 32px rgba(26,178,232,0.14);
    transform: translateY(-3px);
}

/* featured card spans full width of first row on large screens */
.rf26-card-featured {
    background: linear-gradient(135deg, rgba(26,178,232,0.06) 0%, rgba(86,180,49,0.04) 100%);
    border-color: rgba(26,178,232,0.18);
    grid-column: span 1;
}

/* ── Stars ────────────────────────────────────────── */
.rf26-stars {
    display: flex;
    gap: 0.25rem;
    color: #f5a623;
    font-size: 0.95rem;
}

/* ── Quote ────────────────────────────────────────── */
.rf26-card blockquote {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.65;
    color: #374151;
    margin: 0;
    flex: 1;
}

/* ── Author ───────────────────────────────────────── */
.rf26-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,178,232,0.08);
}
.rf26-author-avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,178,232,0.15), rgba(86,180,49,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ab2e8;
    font-size: 1rem;
    flex-shrink: 0;
}
.rf26-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2740;
}
.rf26-author span {
    font-size: 0.78rem;
    color: #6b7280;
}

/* ── CTA card ─────────────────────────────────────── */
.rf26-card-cta {
    background: linear-gradient(135deg, #1ab2e8 0%, #56b431 100%);
    border: none;
    color: #fff;
    align-items: flex-start;
}
.rf26-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26,178,232,0.3);
}
.rf26-cta-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
}
.rf26-card-cta h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.rf26-card-cta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    margin: 0;
    line-height: 1.55;
}
.rf26-cta-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #1ab2e8;
    border-radius: 2rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.rf26-cta-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #0e8fb5;
    transform: translateX(3px);
}

/* ── Branches section ─────────────────────────────── */
.rf26-branches {
    background: #fff;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.rf26-branches-head {
    text-align: center;
    margin-bottom: 3rem;
}
.rf26-branches-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #1a2740;
}

.rf26-branch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.rf26-branch {
    background: #f8fbfe;
    border: 1px solid rgba(26,178,232,0.1);
    border-radius: 1rem;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: default;
}
.rf26-branch:hover {
    box-shadow: 0 4px 18px rgba(26,178,232,0.12);
    transform: translateY(-3px);
}
.rf26-branch-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(26,178,232,0.12), rgba(86,180,49,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #1ab2e8;
}
.rf26-branch span {
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1100px) {
    .rf26-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rf26-branch-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .rf26-grid {
        grid-template-columns: 1fr;
    }
    .rf26-branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .rf26-branch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==================================================
   SECTION HEADER  (sh26-)  — identischer Stil wie Hero-Textbereich
   ================================================== */

.sh26-head {
    background: linear-gradient(140deg,
        rgba(26, 178, 232, 0.13) 0%,
        rgba(79, 208, 246, 0.09) 30%,
        rgba(86, 180, 49, 0.07) 60%,
        rgba(255, 255, 255, 0.98) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(26, 178, 232, 0.18);
    box-shadow: 0 6px 32px rgba(26, 178, 232, 0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* Zentriert (z.B. Ablauf-Section) */
.sh26-head--center {
    text-align: center;
}
.sh26-head--center .ca26-hero-top {
    justify-content: center;
}
.sh26-head--center .ca26-hero-sub,
.sh26-head--center .ca26-hero-tagline {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Titelgröße — Section etwas kompakter als Fullscreen-Hero */
.sh26-head .ca26-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Sub-Abstand ohne Hero-Buttons darunter kürzer */
.sh26-head .ca26-hero-sub {
    margin-bottom: 0;
}

/* ── Section-Header Mobile ───────────────────────────────── */
@media (max-width: 768px) {
    .sh26-head {
        padding: 1.5rem 1.25rem;
        border-radius: 1rem;
        margin-bottom: 1.75rem;
    }
    .sh26-head .ca26-hero-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }
    .svc26-wrap,
    .pr26-container,
    .ab26-container,
    .ct26-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .sh26-head {
        padding: 1.25rem 1rem;
        border-radius: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .sh26-head .ca26-hero-title {
        font-size: clamp(1.5rem, 7.5vw, 1.9rem);
        letter-spacing: -0.02em;
    }
    .sh26-head .ca26-hero-sub {
        font-size: 0.83rem;
        line-height: 1.6;
    }
    .sh26-head .ca26-hero-top {
        gap: 0.4rem;
        margin-bottom: 0.9rem;
    }
    .sh26-head .ca26-hero-pill {
        font-size: 0.62rem;
    }
    .sh26-head .ca26-hero-open-badge {
        font-size: 0.62rem;
    }
    .svc26-wrap,
    .pr26-container,
    .ab26-container,
    .ct26-container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ── Section-Header mit Bild rechts ──────────────────────────── */
.sh26-head--with-img {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    padding: 0; /* Padding wird in sh26-head-content gesetzt */
}

.sh26-head--with-img .sh26-head-content {
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
}

.sh26-head-visual {
    position: relative;
    border-radius: 0 1.4rem 1.4rem 0;
    overflow: hidden;
    min-height: 280px;
}

.sh26-head-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.sh26-head-visual:hover img {
    transform: scale(1.04);
}

/* Fade von links */
.sh26-head-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(235, 250, 255, 1)   0%,
        rgba(235, 250, 255, 0.85) 15%,
        rgba(235, 250, 255, 0.4)  35%,
        transparent               60%
    );
    z-index: 1;
    pointer-events: none;
}

.sh26-head-visual::after {
    content: none;
}

/* Badge unten-rechts im Bild */
.sh26-head-visual-badge {
    position: absolute;
    bottom: 1.1rem;
    right: 1.1rem;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 178, 232, 0.22);
    border-radius: 0.75rem;
    padding: 0.5rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0b2d3c;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(11, 45, 60, 0.14);
}

.sh26-head-visual-badge i {
    color: #1ab2e8;
    font-size: 0.82rem;
}


@media (max-width: 1100px) {
    .sh26-head--with-img {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .sh26-head--with-img {
        grid-template-columns: 1fr;
        padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
    }
    .sh26-head--with-img .sh26-head-content {
        padding: 0;
    }
    .sh26-head-visual {
        display: none;
    }
}

/* Kontakt-Section Header — kein Radius unten, fließt in Formular */
.ct26-head {
    border-radius: 1.5rem 1.5rem 0 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
}

/* Spezialreinigung-Kategorie */
.sv26-cat-spezial {
    background: linear-gradient(135deg,
        rgba(239, 118, 39, 0.05) 0%,
        rgba(255, 200, 100, 0.04) 100%);
    border-top: 1px solid rgba(239, 118, 39, 0.12);
}

/* Sicherheits-Kategorie: hell statt dunkel */
.sv26-cat-security {
    background: linear-gradient(135deg,
        rgba(86, 180, 49, 0.06) 0%,
        rgba(26, 178, 232, 0.05) 100%);
    border-top: 1px solid rgba(86,180,49,0.12);
}


/* ==================================================
   CONTACT SECTION  (ct26-)
   ================================================== */

.ct26-section {
    background: linear-gradient(160deg, #eaf6fd 0%, #f5fbff 50%, #edfbf2 100%);
    border-top: 1px solid rgba(26,178,232,0.12);
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.ct26-container {
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
}

/* Header — kein Radius unten, fließt ins Layout */
.ct26-head {
    border-radius: 1.5rem 1.5rem 0 0;
    margin-bottom: 0;
    padding-bottom: 2.5rem;
}

/* Zwei-Spalten-Layout */
.ct26-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── FORM COLUMN ──────────────────────────────────── */
.ct26-form-wrap {
    background: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    border: 1px solid rgba(26,178,232,0.1);
    border-top: none;
    padding: 2.5rem 2.5rem 2.5rem;
    box-shadow: 0 4px 24px rgba(26,178,232,0.07);
}

.ct26-form-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(26,178,232,0.1);
}

.ct26-form-head-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(26,178,232,0.12), rgba(86,180,49,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1ab2e8;
    flex-shrink: 0;
}

.ct26-form-head h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2d3c;
    margin: 0 0 0.2rem;
}

.ct26-form-head p {
    font-size: 0.83rem;
    color: #6b7280;
    margin: 0;
}

/* ── INFO COLUMN ──────────────────────────────────── */
.ct26-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ct26-info-panel {
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(26,178,232,0.1);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(26,178,232,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ct26-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1ab2e8;
    margin: 0 0 0.75rem;
}

/* Info-Item (klickbar + statisch) */
.ct26-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem;
    border-radius: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

a.ct26-info-item:hover {
    background: rgba(26,178,232,0.05);
    border-color: rgba(26,178,232,0.12);
    transform: translateX(3px);
    text-decoration: none;
}

.ct26-info-item--static {
    cursor: default;
}

.ct26-info-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(26,178,232,0.14), rgba(79,208,246,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #1ab2e8;
    flex-shrink: 0;
}

.ct26-info-icon--green {
    background: linear-gradient(135deg, rgba(86,180,49,0.14), rgba(118,203,123,0.08));
    color: #56b431;
}

.ct26-info-icon--soft {
    background: rgba(26,178,232,0.07);
    color: #7db5c8;
}

.ct26-info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ct26-info-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a2740;
}

.ct26-info-text span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

.ct26-info-text small {
    font-size: 0.75rem;
    color: #9ca3af;
}

.ct26-info-arrow {
    color: #c4d9e5;
    font-size: 0.8rem;
    transition: color 0.2s;
}

a.ct26-info-item:hover .ct26-info-arrow {
    color: #1ab2e8;
}

/* Trust-Block */
.ct26-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ct26-trust-item {
    background: #fff;
    border: 1px solid rgba(26,178,232,0.1);
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
}

.ct26-trust-item i {
    color: inherit;
    font-size: 0.9rem;
}

.ct26-trust-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, rgba(26,178,232,0.14), rgba(79,208,246,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #1ab2e8;
    flex-shrink: 0;
}

.ct26-trust-icon--green {
    background: linear-gradient(135deg, rgba(86,180,49,0.14), rgba(118,203,123,0.08));
    color: #56b431;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 992px) {
    .ct26-layout {
        grid-template-columns: 1fr;
    }

    .ct26-form-wrap,
    .ct26-form-wrap.anim-ready.anim-left.anim-in,
    .ct26-info-col {
        width: 100%;
        max-width: 760px;
        margin-inline: auto;
    }

    .ct26-form-wrap {
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .ct26-info-col {
        align-items: center;
    }

    .ct26-info-col > * {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .ct26-trust {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==================================================
   FOOTER  (ft26-)
   ================================================== */

.ft26-footer {
    background: linear-gradient(160deg, #daf0fb 0%, #eaf7ff 45%, #e2f8ee 100%);
    color: #4a6878;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid rgba(26,178,232,0.22);
    box-shadow: 0 -8px 32px rgba(26,178,232,0.08);
    position: relative;
}

.ft26-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ab2e8 0%, #56b431 50%, #1ab2e8 100%);
    opacity: 0.6;
}

.ft26-container {
    padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* CTA Strip */
.ft26-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(26,178,232,0.10) 0%, rgba(86,180,49,0.07) 100%);
    border-bottom: 1px solid rgba(26,178,232,0.12);
    border-radius: 1.25rem;
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.ft26-cta-pill {
    display: block;
    width: fit-content;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1ab2e8;
    border: 1px solid rgba(26,178,232,0.3);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.6);
}

.ft26-cta-pill i {
    font-size: 0.45rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

.ft26-cta-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #0b2d3c;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.ft26-cta-text p {
    font-size: 0.95rem;
    color: #5a7a8a;
    margin: 0;
}

.ft26-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1ab2e8, #56b431);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(26,178,232,0.25);
}

.ft26-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Main Grid */
.ft26-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding: 0 0 clamp(2.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(26,178,232,0.12);
}

/* Brand Column */
.ft26-brand-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b2d3c;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.ft26-brand-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1ab2e8, #56b431);
    flex-shrink: 0;
}

.ft26-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a7a8a;
    margin-bottom: 1.75rem;
}

.ft26-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ft26-contact-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: #4a6878;
    text-decoration: none;
    transition: color 0.2s;
}

a.ft26-contact-row:hover {
    color: #1ab2e8;
    text-decoration: none;
}

.ft26-contact-row i {
    width: 1.5rem;
    text-align: center;
    color: #1ab2e8;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Link Columns */
.ft26-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1ab2e8;
    margin: 0 0 1.1rem;
}

.ft26-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ft26-links a {
    font-size: 0.88rem;
    color: #5a7a8a;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.ft26-links a:hover {
    color: #1ab2e8;
    padding-left: 4px;
}

/* Trust Cards */
.ft26-trust-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ft26-trust-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(26,178,232,0.12);
    border-radius: 0.75rem;
    transition: background 0.2s, box-shadow 0.2s;
}

.ft26-trust-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(26,178,232,0.1);
}

.ft26-trust-card i {
    font-size: 1.05rem;
    color: #1ab2e8;
    flex-shrink: 0;
    width: 1.4rem;
    text-align: center;
}

.ft26-trust-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0b2d3c;
    line-height: 1.2;
}

.ft26-trust-card span {
    display: block;
    font-size: 0.74rem;
    color: #7a9aaa;
}

/* Bottom Bar */
.ft26-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.ft26-copy {
    font-size: 0.8rem;
    color: #8aacbc;
    margin: 0;
}

.ft26-bottom-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ft26-bottom-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #8aacbc;
}

.ft26-bottom-badges i {
    color: #1ab2e8;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .ft26-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .ft26-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .ft26-grid {
        grid-template-columns: 1fr;
    }
    .ft26-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Verhindert Layout-Shift beim Rotating-Text */
#heroRotatingText {
    display: inline-block;
    min-height: 1.1em;
    min-width: 4px;
    vertical-align: top;
    border-right: 3px solid #1ab2e8;
    padding-right: 4px;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { border-color: #1ab2e8; }
    50%       { border-color: transparent; }
}


/* ==================================================
   HERO DUAL-CIRCLE SCENE
   ================================================== */

.ca26-dual-scene {
    position: relative;
    width: clamp(340px, 44vw, 540px);
    height: clamp(340px, 44vw, 540px);
    flex-shrink: 0;
}

/* Großer Kreis — oben links */
.ca26-dual-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    aspect-ratio: 1;
}

.ca26-dual-main .ca26-img-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.ca26-dual-main .ca26-ring-outer {
    inset: -18px;
    border: 2px dashed rgba(26,178,232,0.22);
    animation: ring-spin 28s linear infinite;
}

.ca26-dual-main .ca26-ring-inner {
    inset: -6px;
    border: 3px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#1ab2e8 0%,rgba(86,180,49,0.5) 50%,rgba(26,178,232,0.15) 100%) border-box;
    box-shadow: 0 0 32px rgba(26,178,232,0.1);
}

.ca26-dual-main .ca26-img-circle {
    width: 100%;
    height: 100%;
}

/* Kleiner Kreis — unten rechts, überlappend */
.ca26-dual-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    aspect-ratio: 1;
    z-index: 2;
}

.ca26-dual-secondary .ca26-img-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.ca26-dual-secondary .ca26-ring-inner {
    inset: -5px;
    border: 3px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#56b431 0%,rgba(26,178,232,0.5) 100%) border-box;
    box-shadow: 0 0 28px rgba(86,180,49,0.12);
}

.ca26-dual-secondary .ca26-img-circle {
    width: 100%;
    height: 100%;
    box-shadow:
        0 20px 50px rgba(11,45,60,0.16),
        0 0 0 5px rgba(255,255,255,0.95);
}

/* Dritter kleiner Kreis — rechts mittig */
.ca26-dual-tertiary {
    position: absolute;
    top: 15%;
    right: -8%;
    width: 40%;
    aspect-ratio: 1;
    z-index: 3;
}

.ca26-dual-tertiary .ca26-img-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.ca26-dual-tertiary .ca26-ring-inner {
    inset: -5px;
    border: 3px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#1ab2e8 0%,rgba(86,180,49,0.5) 100%) border-box;
    box-shadow: 0 0 28px rgba(26,178,232,0.12);
}

.ca26-dual-tertiary .ca26-img-circle {
    width: 100%;
    height: 100%;
    box-shadow:
        0 20px 50px rgba(11,45,60,0.16),
        0 0 0 5px rgba(255,255,255,0.95);
}

/* Float-Karten */
.ca26-dual-float-tl {
    position: absolute;
    left: -5rem;
    z-index: 10;
}

.ca26-dual-float-br {
    position: absolute;
    bottom: 0.5rem;
    right: -5rem;
    z-index: 10;
}

/* Deko-Dots — rechts unten */
.ca26-dual-scene .ca26-deco-dots {
    bottom: 0.5rem;
    right: -1.5rem;
}

/* Trennlinie zwischen den Kreisen */
.ca26-dual-scene::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .ca26-dual-scene {
        width: clamp(240px, 60vw, 320px);
        height: clamp(240px, 60vw, 320px);
    }
    .ca26-dual-float-tl {
        left: 0;
    }
    .ca26-dual-float-br {
        right: 0;
    }
}

@media (max-width: 480px) {
    .ca26-dual-scene {
        width: min(90vw, 290px);
        height: min(90vw, 290px);
    }
}

/* Hero (hero.php u. a.): auf schmalen Viewports keine Bildbewegung (Ring, Schweben, Float, Einblend-Slide) */
@media (max-width: 768px) {
    .ca26-hero-visual .ca26-ring-outer,
    .ca26-dual-scene .ca26-ring-outer {
        animation: none !important;
    }

    .ca26-hero-visual .ca26-dual-secondary,
    .ca26-hero-visual .ca26-dual-tertiary {
        animation: none !important;
    }

    .ca26-hero-visual .ca26-float,
    .ca26-hero-visual .ca26-float-tl,
    .ca26-hero-visual .ca26-float-br {
        animation: none !important;
    }

    .ca26-hero-visual .ca26-img-circle img {
        transition: none !important;
    }

    .ca26-hero-visual .ca26-img-circle:hover img,
    .ca26-hero-visual .ca26-img-circle:active img {
        transform: none !important;
    }

    .ca26-hero-visual.hero-enter-right,
    .ca26-hero-visual.hero-enter-right.anim-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .ca26-hero-panel.hero-enter-left,
    .ca26-hero-panel.hero-enter-left.anim-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 640px) {
    .ca26-dual-float-tl,
    .ca26-dual-float-br {
        display: none;
    }
}

/* ── Expertise Section ──────────────────────────────────────────────────── */
.sv26-expertise-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}
.sv26-expertise-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2.5rem;
}
.sv26-expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sv26-exp-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: #f7fbfe;
    border: 1px solid #e0eff7;
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.sv26-exp-card:hover {
    box-shadow: 0 6px 24px rgba(26,178,232,0.10);
    border-color: rgba(26,178,232,0.3);
    transform: translateY(-2px);
}
.sv26-exp-card--featured {
    background: linear-gradient(135deg, rgba(26,178,232,0.06) 0%, rgba(79,208,246,0.04) 100%);
    border-color: rgba(26,178,232,0.25);
}
.sv26-exp-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1ab2e8, #4fd0f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.sv26-exp-card h3,
.sv26-exp-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e3a;
    margin: 0 0 0.3rem;
}
.sv26-exp-card p {
    font-size: 0.875rem;
    color: #5a7a8a;
    margin: 0;
    line-height: 1.5;
}
/* Promise Sidebar */
.sv26-promise {
    position: sticky;
    top: 100px;
}
.sv26-promise-inner {
    background: linear-gradient(135deg, rgba(26,178,232,0.06) 0%, rgba(118,203,123,0.06) 100%);
    border: 1px solid rgba(26,178,232,0.2);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    margin-bottom: 1rem;
}
.sv26-promise-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1ab2e8, #4fd0f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.sv26-promise-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2e3a;
    margin-bottom: 0.75rem;
}
.sv26-promise-inner p {
    font-size: 0.875rem;
    color: #5a7a8a;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.sv26-promise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.sv26-promise-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: #334e5c;
    font-weight: 500;
}
.sv26-promise-list li i {
    color: #1ab2e8;
    font-size: 0.85rem;
    flex-shrink: 0;
}
/* Leistungsblöcke Section */
.sv26-detail-blocks-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(26,178,232,0.03) 0%, rgba(118,203,123,0.03) 100%);
}
@media (max-width: 991px) {
    .sv26-expertise-layout {
        grid-template-columns: 1fr;
    }
    .sv26-promise {
        position: static;
    }
}

/* ── Toprow: Icon + Nummer ─────────────────────────────────────── */
.sv26-tile-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.sv26-tile-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(11,45,60,0.18);
    letter-spacing: 0.06em;
    line-height: 1;
    padding-top: 0.2rem;
}

/* Icon-Varianten */
.sv26-tile-icon--spezial {
    background: linear-gradient(135deg, #ef7627 0%, #f5a623 100%);
    box-shadow: 0 6px 20px rgba(239,118,39,0.22);
}

.sv26-tile-icon--security {
    background: linear-gradient(135deg, #56b431 0%, #3a9e20 100%);
    box-shadow: 0 6px 20px rgba(86,180,49,0.22);
}

/* ── Rich-Tile: Kachel mit Feature-Liste ───────────────────────── */
.sv26-tile-rich {
    display: flex;
    flex-direction: column;
}

/* Feature-Liste im Kachel-Footer */
.sv26-tile-cards {
    list-style: none;
    padding: 1rem 1.8rem 1.2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-top: 1px solid rgba(11,45,60,0.07);
}

.sv26-tile-cards li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #5a7a8a;
    font-weight: 500;
    line-height: 1.3;
}

.sv26-tile-cards li i {
    font-size: 0.7rem;
    color: #1ab2e8;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(26,178,232,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sv26-tile:hover .sv26-tile-cards li {
    color: #1a7fa0;
}
.sv26-tile:hover .sv26-tile-cards li i {
    background: rgba(26,178,232,0.18);
    color: #0e8fbb;
}

/* ── Detail-Hero Breadcrumb (oben, außerhalb der Hero-Section) ───────────── */
.sv26-breadcrumb-top {
    background: #f4fafd;
    border-bottom: 1px solid #e0eff7;
    padding: 0.75rem 0;
}
.sv26-breadcrumb-top .container-fluid {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #7a9aaa;
}
.sv26-breadcrumb-top a {
    color: #1ab2e8;
    text-decoration: none;
    font-weight: 600;
}
.sv26-breadcrumb-top a:hover { text-decoration: underline; }
.sv26-breadcrumb-top i { font-size: 0.65rem; color: #aac3ce; }
.sv26-breadcrumb-top span { color: #334e5c; font-weight: 600; }

/* ── Detail-Hero: Bild-Override ─────────────────────────────────────────── */
.sv26-detail-hero-ca .ca26-img-circle img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ── Hero-Chips (Feature-Tags im Detail-Hero) ───────────────────────────── */
.ca26-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.4rem;
}
.ca26-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(26,178,232,0.08);
    border: 1px solid rgba(26,178,232,0.2);
    color: #1a7fa0;
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.ca26-hero-chip i { font-size: 0.75rem; color: #1ab2e8; }

/* ==================================================
   BREAKPOINT SYNC FIX (Mobile <=1212, Desktop >=1213)
   ================================================== */
@media (max-width: 1212px) {
    .header .navbar .navbar-toggler {
        display: inline-flex !important;
    }

    .header .navbar .navbar-collapse:not(.show) {
        display: none !important;
    }

    .header .navbar .navbar-collapse.show {
        display: flex !important;
    }

    .header .navbar .mobile-nav-close i {
        display: block !important;
        font-size: 1rem !important;
        line-height: 1 !important;
        color: inherit !important;
        opacity: 1 !important;
    }
}

@media (min-width: 1213px) {
    .header .navbar .navbar-toggler {
        display: none !important;
    }

    .header .navbar .navbar-collapse {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        right: auto !important;
        top: auto !important;
        box-shadow: none !important;
        border: 0 !important;
        background: transparent !important;
    }

    .header .navbar .mobile-nav-header,
    .header .navbar .mobile-nav-footer {
        display: none !important;
    }
}

/* ==================================================
   DESKTOP NAVBAR SPACING FIX (einheitlich)
   ================================================== */
@media (min-width: 1213px) {
    .header .navbar .navbar-nav {
        gap: 0.28rem !important;
        align-items: center !important;
    }

    .header .navbar .navbar-nav .nav-item {
        display: flex !important;
        align-items: center !important;
    }

    .header .navbar .navbar-nav .nav-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 42px !important;
        padding: 0.72rem 0.98rem !important;
        margin: 0 !important;
        border-radius: 9px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }

    /* Kontakt exakt gleich wie die anderen Nav-Items */
    .header .navbar .navbar-nav .nav-link.nav-cta {
        min-height: 42px !important;
        padding: 0.72rem 0.98rem !important;
        margin: 0 !important;
        border-radius: 9px !important;
        line-height: 1.2 !important;
    }

    /* Dropdown-Link nicht breiter als die anderen */
    .header .navbar .nav-item.dropdown .dropdown-toggle {
        padding-right: 0.98rem !important;
        gap: 0 !important;
    }

    /* Pfeil konsistent hinter dem Text */
    .header .navbar .nav-item.dropdown > .nav-link::after,
    .header .navbar .nav-item.dropdown > .dropdown-toggle::after,
    .header .navbar .nav-item.dropdown > .dropdown-hover-toggle::after {
        margin-left: 0.36rem !important;
        top: 0 !important;
    }
}

/* ==================================================
   FINAL MOBILE NAV FIX (dominant override)
   ================================================== */
@media (max-width: 1212px) {
    body.nav-open {
        overflow: hidden;
    }

    /* Hero schon ab Hamburger-Breakpoint etwas tiefer setzen */
    .ca26-hero-panel-inner {
        padding-top: 6rem !important;
    }

    .header .navbar {
        min-height: 82px !important;
        padding-top: 0.72rem !important;
        padding-bottom: 0.72rem !important;
    }

    .header .navbar .container-fluid {
        padding-left: 0.9rem !important;
        padding-right: 4.1rem !important; /* Platz für fixed Hamburger */
    }

    .header .navbar .navbar-brand {
        max-width: calc(100% - 72px) !important;
        min-width: 0 !important;
        gap: 0.4rem !important;
    }

    .header .navbar .logo-image {
        height: 46px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(10, 24, 34, 0.32);
        z-index: 999;
        pointer-events: none;
        backdrop-filter: blur(0.8px);
    }

    /* Hamburger / Toggler klar definieren */
    .header .navbar .navbar-toggler {
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        margin-right: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: calc(1,2rem + env(safe-area-inset-top, 0px)) !important;
        right: 0.95rem !important;
        z-index: 1105 !important;
        border: 1px solid #d4e6ee !important;
        border-radius: 12px !important;
        background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%) !important;
        box-shadow: 0 6px 18px rgba(12, 43, 59, 0.14) !important;
    }

    .header .navbar .navbar-toggler-icon {
        width: 1.1rem !important;
        height: 1.1rem !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,131,168,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.35' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .header .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815,131,168,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.35' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e") !important;
    }

    /* Hamburger im geschlossenen Zustand sichtbar */
    .header .navbar .navbar-toggler {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Bei geöffnetem Panel nur den X-Button im Panel zeigen */
    body.nav-open .header .navbar .navbar-toggler,
    .header .navbar .navbar-toggler[aria-expanded="true"] {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .header .navbar .navbar-collapse,
    .header .navbar .navbar-collapse.collapse,
    .header .navbar .navbar-collapse.collapsing,
    .header .navbar .navbar-collapse.show {
        position: fixed !important;
        top: 0 !important;
        right: -105% !important;
        left: auto !important;
        width: min(88vw, 360px) !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        background: #ffffff !important;
        border-left: 1px solid #e9ecef !important;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12) !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        z-index: 1000 !important;
        transition: right 0.33s ease !important;
    }

    .header .navbar .navbar-collapse.show,
    .header .navbar .navbar-collapse.collapsing {
        right: 0 !important;
    }

    .header .navbar .navbar-collapse::before,
    .header .navbar .navbar-collapse::after {
        display: none !important;
    }

    .header .navbar .mobile-nav-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.6rem !important;
        padding: 0.9rem 1rem !important;
        background: #f8f9fa !important;
        border-bottom: 1px solid #e9ecef !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 5 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header .navbar .mobile-nav-brand {
        display: flex !important;
        align-items: center !important;
        gap: 0.55rem !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header .navbar .mobile-nav-brand > div {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    .header .navbar .mobile-nav-logo {
        height: 40px !important;
        width: auto !important;
        flex-shrink: 0 !important;
    }

    .header .navbar .mobile-nav-name {
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .header .navbar .mobile-nav-tagline {
        display: block !important;
        margin-top: 0.12rem !important;
        color: #6c757d !important;
        font-size: 0.64rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .header .navbar .mobile-nav-close {
        appearance: none !important;
        -webkit-appearance: none !important;
        border: 1px solid #d5dbe1 !important;
        background: #ffffff !important;
        color: #4a5560 !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 7 !important;
        transition: all 0.2s ease !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
        flex-shrink: 0 !important;
    }

    .header .navbar .mobile-nav-close:hover,
    .header .navbar .mobile-nav-close:active {
        background: #2f3a45 !important;
        border-color: #2f3a45 !important;
        color: #ffffff !important;
    }

    .header .navbar .navbar-nav {
        padding: 0.72rem 0.78rem 0.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.08rem !important;
        width: 100% !important;
    }

    .header .navbar .navbar-nav .nav-item {
        width: 100% !important;
    }

    .header .navbar .navbar-nav .nav-link {
        display: flex !important;
        align-items: center !important;
        gap: 0.72rem !important;
        padding: 0.8rem 0.88rem !important;
        margin: 0 0 0.2rem !important;
        border-radius: 0.65rem !important;
        border: 1px solid #e9ecef !important;
        background: #ffffff !important;
        color: #1f2933 !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header .navbar .navbar-nav .nav-link i {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        border-radius: 0.5rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(26, 178, 232, 0.12) !important;
        color: #1ab2e8 !important;
        margin: 0 !important;
    }

    .header .navbar .nav-link:hover,
    .header .navbar .nav-link:active {
        background: #f6f8fa !important;
        border-color: #d5dbe1 !important;
        color: #2f3a45 !important;
    }

    .header .navbar .nav-link:hover i,
    .header .navbar .nav-link:active i {
        background: rgba(26, 178, 232, 0.2) !important;
        color: #0f88b0 !important;
    }

    .header .navbar .nav-item.dropdown > .nav-link::after,
    .header .navbar .dropdown-toggle::after {
        content: '' !important;
        width: 7px !important;
        height: 7px !important;
        border-right: 2px solid #8d99a6 !important;
        border-bottom: 2px solid #8d99a6 !important;
        border-top: none !important;
        border-left: none !important;
        transform: rotate(45deg) !important;
        margin-left: auto !important;
        position: static !important;
        display: block !important;
        background: transparent !important;
    }

    .header .navbar .nav-item.dropdown.show > .nav-link::after,
    .header .navbar .nav-item.dropdown.show > .dropdown-toggle::after {
        transform: rotate(-135deg) !important;
        border-color: #1ab2e8 !important;
    }

    .header .navbar .nav-item.dropdown.show > .nav-link {
        background: #f6f8fa !important;
        border-color: #d5dbe1 !important;
    }

    .header .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f7f8fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 0.65rem !important;
        margin: -0.04rem 0 0.38rem !important;
        padding: 0.28rem 0.35rem !important;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04) !important;
        max-height: none !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .header .navbar .nav-item.dropdown.show > .dropdown-menu,
    .header .navbar .dropdown-menu.show {
        display: block !important;
    }

    .header .navbar .dropdown-item {
        border-radius: 0.45rem !important;
        color: #2f3a45 !important;
        padding: 0.52rem 0.72rem !important;
        font-size: 0.84rem !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        margin: 0 !important;
    }

    .header .navbar .dropdown-item i {
        width: 1rem !important;
        font-size: 0.76rem !important;
        color: #1ab2e8 !important;
    }

    .header .navbar .dropdown-item:hover {
        background: #eef2f5 !important;
        color: #2f3a45 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .header .navbar .dropdown-header {
        font-size: 0.6rem !important;
        letter-spacing: 0.1em !important;
        color: #98a6b3 !important;
        text-transform: uppercase !important;
        padding: 0.62rem 0.65rem 0.2rem !important;
    }

    .header .navbar .dropdown-divider {
        margin: 0.22rem 0.44rem !important;
        border-color: #dfe6eb !important;
        height: 0 !important;
        background: transparent !important;
    }

    .header .navbar .mobile-nav-footer {
        margin-top: 0.35rem !important;
        background: transparent !important;
        border-top: 1px solid #e9ecef !important;
        padding: 0.68rem 0.78rem calc(0.68rem + env(safe-area-inset-bottom)) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.45rem !important;
    }

    .header .navbar .mobile-nav-contact-item {
        display: flex !important;
        align-items: center !important;
        gap: 0.7rem !important;
        text-decoration: none !important;
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 0.55rem !important;
        padding: 0.66rem 0.8rem !important;
        box-shadow: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header .navbar .mobile-nav-contact-item strong {
        color: #2f3a45 !important;
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
    }

    .header .navbar .mobile-nav-contact-item span {
        color: #6c7b88 !important;
        font-size: 0.66rem !important;
    }

    .header .navbar .mobile-nav-contact-icon {
        width: 34px !important;
        height: 34px !important;
        border-radius: 0.5rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #5b6c7b !important;
        background: #eef2f5 !important;
    }

    .header .navbar .mobile-nav-contact-icon--green {
        color: #56b431 !important;
        background: #eaf7e6 !important;
    }
}

/* Hero einspaltig (u. a. services.php): Abstand zur fixen Navi am oberen *Bild*,
   nicht doppelt großer Abstand oberhalb des Textblocks (überschreibt panel-inner in FINAL MOBILE NAV) */
@media (max-width: 1100px) {
    .ca26-hero-visual {
        padding-top: 5.25rem !important;
    }

    .ca26-hero-panel-inner {
        padding-top: 1.1rem !important;
    }
}
