:root {
/* =============================================================================
SAUBERES FARBSYSTEM - Nur das was wirklich genutzt wird
============================================================================= 
/* ---------- BACKGROUNDS ---------- */
--color-bg-primary: #ffffff;        /* Weiße Sections (Standard) */
--color-bg-overlay: rgba(255, 255, 255, 0.7);
/* Dunkler Gradient für Header/Footer/CTA */
--color-hero-center: #2d284a;       /* Heller Mittelpunkt */
--color-hero-mid: #25243b;          /* Mittlerer Ring */
--color-hero-edge: #1e222d;         /* Dunkle Ränder */
--gradient-primary: radial-gradient(ellipse at center, var(--color-hero-center) 0%, var(--color-hero-mid) 45%, var(--color-hero-edge) 100%);
/* ---------- AKZENTFARBE ---------- */
--color-akzent: #f30303;
          /* Icons + Buttons etc (Firmenfarbe) */
--color-akzent-1: #ffaa00;          /* Icons + Buttons etc (Firmenfarbe) */
/* ---------- TEXT ---------- */
--color-text-primary: #353F4F;      /* Überschriften auf weißem Hintergrund */
--color-text-secondary: #475569;    /* Normale Texte auf weißem Hintergrund */
--color-text-inverse: #ffffff;      /* Text auf dunklem Hintergrund */
--color-text-inverse-rgb :rgba(255, 255, 255, 0.7); /* Text auf dunklem Hintergrund transparent */
/* ---------- TRANSPARENZ ---------- */
--color-akzent-rgb: 62, 177, 255;   /* Akzent für Mesh */
--color-akzent-1-rgb: 185, 28, 124;
--color-hero-center-rgb: 45, 40, 74; /* Akzent für variabel */
/* ---------- STATUS COLORS (falls benötigt) ---------- */
--color-success: #10b981;
--color-warning: #f59e0b;
--color-danger: #ef4444;
/* ---------- MESH GRADIENT ---------- */
--gradient-mesh: radial-gradient(at 20% 50%, rgba(var(--color-akzent-rgb), 0.2) 0, transparent 80%),
radial-gradient(at 80% 50%, rgba(var(--color-akzent-rgb), 0.15) 0, transparent 80%);
/* ---------- Typography ---------- */
--font-primary: Arial, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
/* Font Sizes */
--font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
--font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
--font-size-base: clamp(1.0625rem, 1.05rem + 0.1vw, 1.125rem);
--font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
--font-size-xl: clamp(1.25rem, 1.125rem + 0.625vw, 1.5rem);
--font-size-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
--font-size-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
--font-size-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
--font-size-5xl: clamp(3rem, 2rem + 5vw, 5rem);
/* Font Weights */
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;
/* Line Heights */
--line-height-tight: 1.1;
--line-height-snug: 1.25;
--line-height-normal: 1.5;
--line-height-relaxed: 1.75;
/* Letter Spacing */
--letter-spacing-tight: -0.025em;
--letter-spacing-wide: 0.025em;
--letter-spacing-widest: 0.1em;
/* ---------- Spacing ---------- */
--space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
--space-sm: clamp(0.375rem, 0.3rem + 0.4vw, 0.75rem);
--space-md: clamp(0.7rem, 0.45rem + 1vw, 1.15rem);
--space-lg: clamp(1rem, 0.75rem + 1.5vw, 1.75rem);
--space-xl: clamp(1.5rem, 1rem + 2vw, 2.5rem);
--space-2xl: clamp(2rem, 1.5rem + 3vw, 3.5rem);
--space-3xl: clamp(2.5rem, 2rem + 4vw, 4.5rem);
/* ---------- Border Radius ---------- */
--radius-sm: 0.5rem;
--radius-md: 0.75rem;
--radius-lg: 1rem;
--radius-xl: 1.5rem;
--radius-full: 9999px;
/* ---------- Shadows ---------- */
--shadow-soft: 0 0 4px rgba(50, 50, 50, 0.3);
--shadow-strong: 0 4px 12px rgba(50, 50, 50, 0.4);
/* ---------- Transitions ---------- */
--transition-fast: 150ms ease-in-out;
--transition-base: 200ms ease-in-out;
--transition-slow: 300ms ease-in-out;
--transition-slower: 500ms ease-in-out;
/* ---------- Z-Index ---------- */
--z-10: 10;
/* ---------- Button Gradient ---------- */
--gradient-button: linear-gradient(135deg, var(--color-akzent) 0%, color-mix(in srgb, var(--color-akzent) 80%, white) 100%);
--gradient-button-hover: linear-gradient(135deg, color-mix(in srgb, var(--color-akzent) 90%, black) 0%, var(--color-akzent) 100%);
}
/* =============================================================================
2. GLOBAL RESETS & BASE STYLES
============================================================================= */
*, *::before, *::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Firefox & andere moderne Browser */
scrollbar-width: thin;
scrollbar-color: var(--color-bg-elevated) var(--color-bg-secondary);
}
body {
margin: 0;
font-family: var(--font-primary);
font-size: var(--font-size-base);
font-weight: var(--font-weight-normal);
line-height: var(--line-height-normal);
color: var(--color-text-primary);
background-color: var(--color-bg-primary);
overflow-x: hidden;
word-wrap: break-word;
overflow-wrap: break-word;
}
/* Selection - KORRIGIERT */
::selection {
    background: #ffffff;
    color: #333333;
}

::-moz-selection {
    background: #ffffff;
    color: #333333;
}

/* Focus States */
:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Scrollbar - Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;           /* ← DA! */
    height: 10px;          /* ← DA! */
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

::-webkit-scrollbar-corner {
    background: var(--color-bg-secondary);
}
/* =============================================================================
3. TYPOGRAPHY
============================================================================= */
h1, h2, h3, h4, h5, h6 {
margin: 0 0 var(--space-md) 0;
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
letter-spacing: var(--letter-spacing-tight);
color: var(--color-text-primary);
}
h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }
p {
margin: 0 0 var(--space-md) 0;
line-height: var(--line-height-relaxed);
}
a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--color-primary-light);
}
.blank-link {color: var(--color-akzent);font-size: var(--font-size-xl);}
/* Gradient Text */
.gradient-text {
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* =============================================================================
6. SECTIONS & LAYOUT
============================================================================= */
section, footer {
padding: var(--space-xl) 0;
position: relative;
}
/* Section Header */
.section-header {
text-align: center;
margin-bottom: var(--space-xl);
}
.section-background {
position: absolute;
inset: 0;
z-index: 0;
}
.section-glow {
position: absolute;
bottom: -20%;
left: 50%;
width: 100%;
height: 80%;
background: var(--gradient-mesh);
filter: blur(80px);
opacity: 0.9;
transform: translateX(-50%);
}
.section-badge {
display: inline-block;
background: rgba(var(--color-akzent-rgb), 0.2);
color: var(--color-text-secondary);
border-radius: var(--radius-full);
font-size: var(--font-size-sm);
font-weight: var(--font-weight-semibold);
letter-spacing: var(--letter-spacing-wide);
}
.section-description {
font-size: var(--font-size-base);
color: var(--color-text-secondary);
max-width: 600px;
margin: 0 auto;
}
.section-title {
max-width: 700px;
margin: 0 auto;
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
}
/* =============================================================================
1. NAVIGATION HEAD
============================================================================= */
/* Logo Styling */
.logo-svg {
width: 150px; 
height: auto;
color: var(--color-text-inverse);
transition: color var(--transition-base);
}
.navbar.scrolled .logo-svg {
color: var(--color-akzent);
}
.navbar a {
text-decoration: none;
display: inline-flex;
align-items: center;
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1050;
background: var(--color-bg-primary);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transition: all var(--transition-base);
padding: var(--space-md) 0;
}
.navbar.scrolled {
padding: var(--space-md) 0;
background: var(--color-bg-overlay);
box-shadow: var(--shadow-soft);
}
@media (max-width: 991.98px) {
.navbar:has(.navbar-collapse.show) {
background: white !important;
backdrop-filter: none;
-webkit-backdrop-filter: none;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* Logo dunkler machen NUR wenn Menü offen ist */
.navbar:has(.navbar-collapse.show) .navbar-brand .logo-svg {
color: var(--color-akzent) !important;
transition: color var(--transition-base);
}
/* Toggle-Button (drei Striche) auch dunkler machen */
.navbar:has(.navbar-collapse.show) .navbar-toggler {
color: var(--color-akzent) !important;
transition: color var(--transition-base);
}
.navbar:has(.navbar-collapse.show) .navbar-toggler svg {
stroke: var(--color-akzent) !important;
transition: stroke var(--transition-base);
}
.navbar:has(.navbar-collapse.show) .navbar-toggler svg path {
stroke: var(--color-akzent) !important;
}
}
/* Progress Bar */
.navbar-progress {
height: 3px;
background: var(--color-akzent);
transition: width 0.1s ease;
width: 0;
}
.navbar .nav-link{
color: var(--color-text-primary);
font-weight: var(--font-weight-medium);
transition: color var(--transition-fast);
position: relative;
font-size: var(--font-size-base);
}
.navbar.scrolled .nav-link{
color: var(--color-text-primary);
}
.navbar .navbar-toggler svg  {
color: var(--color-text-primary);
}
.navbar.scrolled .navbar-toggler svg  {
color: var(--color-text-primary);
}
/* Toggle Icon Animation */
.dropdown-icon {
width: 20px;
height: 20px;
transition: transform 0.3s ease;
display: inline-block;
}
/* Beim Hover über den Container dreht sich das Icon */
.mega-dropdown:hover .dropdown-icon,
.dropdown-container:hover .dropdown-icon {
transform: rotate(90deg);
}
/* Mega-Menü Container */
.mega-dropdown {
position: static; /* Wichtig! */
}
.mega-menu {
display: none;
position: fixed; /* Statt absolute */
top: 80px; /* Höhe der Navbar anpassen */
left: 0;
right: 0;
width: 100%;
max-width: 1200px;
margin: 0 auto; /* Zentriert den Container */
background: var(--color-bg-primary);
box-shadow: var(--shadow-soft);
border-radius: var(--radius-md);
z-index: 1000;
}
.mega-menu-promo {
background: var(--gradient-primary);
border-radius: var(--radius-lg);
color: var(--color-text-inverse);
height: 100%;
}
.promo-badge {
font-size: var(--font-size-lg);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
}
/* Unsichtbarer Hover-Bereich */
.mega-menu::before {
content: '';
position: absolute;
top: -20px;
left: 0;
width: 100%;
height: 20px;
background-color: transparent;
}
/* Hover-Aktivierung */
.mega-dropdown:hover .mega-menu,
.mega-menu:hover {
display: block;
}
.mega-category-title {
display: block;
font-weight: var(--font-weight-medium);
color: var(--color-text-secondary);
width: 100%;
font-size: var(--font-size-lg);
text-transform: uppercase;
letter-spacing: var(--letter-spacing-tight);
background: rgba(var(--color-akzent-rgb), 0.2);
border-radius: var(--radius-sm);
}
/* Mega-Menü Links */
.mega-link {
display: block;
color: var(--color-akzent);
text-decoration: none;
transition: all 0.2s ease;
font-size: var(--font-size-base);
font-weight: var(--font-weight-medium);
}
.mega-link:hover {
color: var(--color-text-secondary);
transform: translateX(5px);
}
.search-trigger {
border: none;
background: transparent;
}
/* Social Icons Styling */
.navbar .social-icons {
transition: transform 0.3s ease;
color: var(--color-text-inverse);
width: 24px;
height: 24px;
}
.social-icons a:hover {
transform: translateY(-3px);
color: var(--color-primary-rgb);
}
/* Social Links Grid für Mega-Menü */
.social-links-grid {
display: grid;
grid-template-columns: 1fr 1fr;
}
.social-mega-link {
display: flex;
align-items: center;
text-decoration: none;
transition: all 0.2s ease;
border-radius: var(--radius-sm);
color: var(--color-akzent);
}
.social-mega-link:hover, .mega-link:hover {
background: rgba(var(--color-primary-rgb), 0.1);
color: var(--color-akzent);
transform: translateX(5px);
border-radius: var(--radius-sm);
}
.social-icon-mega {
width: 24px;
height: 24px;
flex-shrink: 0;
}
.about-text {
color: var(--color-text-secondary);
line-height: 1.6;
}
/* Mobile Optimierungen */
@media (max-width: 991.98px) {
/* Mega-Menü für Mobile - IMMER OFFEN */
.mega-menu {
position: static;
width: 100%;
transform: none;
box-shadow: none;
margin-top: var(--space-md);
display: block !important; /* IMMER SICHTBAR */
border-radius: 0;
}
.mega-link {
font-size: var(--font-size-xl);
}
.navbar .nav-link {
color: var(--color-text-secondary);
}
/* Mobile Dropdown Toggle ausblenden */
.dropdown-icon {
display: none;
}
.navbar-collapse {
background: var(--color-bg-primary);
margin-top: var(--space-md);
max-height: 80vh;
overflow-y: auto;
}
/* Social Links Grid auf Mobile */
.social-links-grid {
grid-template-columns: 1fr;
}
}
.mega-search-form .input-group {
background: rgba(var(--color-primary-rgb), 0.05);
border-radius: var(--radius-lg);
overflow: hidden;
}
.mega-search-form .input-group-text {
color: var(--color-akzent);
}
.mega-search-input {
border: none;
background: rgba(var(--color-akzent-rgb), 0.2);
font-size: var(--font-size-base);
color: var(--color-text-primary);
}
.mega-search-input:focus {
outline: none;
box-shadow: none;
}
.mega-search-input::placeholder {
color: var(--color-text-secondary);
}
.mega-search-form .btn {
border-radius: 0;
background: var(--color-akzent);
}
/* =============================================================================
7. HERO SECTION
============================================================================= */
.hero-section {

display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: var(--gradient-mesh);
padding-top: calc(var(--space-3xl) + 80px);
}
/* Hero Content */
.hero-content {
position: relative;
z-index: 1;
}
.badge-icon {
font-size: var(--font-size-lg);
}
.hero-title {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
color:	var(--color-text-primary);
}
.hero-description {
font-size: var(--font-size-base);
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
margin-bottom: var(--space-xl);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
}
/* Hero Visual */
.hero-visual {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.hero-visual svg {
width: 80%;
height: 80%;
}
/* =============================================================================
BANNER SECTION
============================================================================= */
.banner-info {
box-shadow: var(--shadow-soft);
}
.svg-container {
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
background: #E2E2E2;
}
.banner svg {
width: 90px;
height: auto;
fill: var(--color-akzent);
}
.banner-title{
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-bold);
}
.text-primary {
color: var(--color-akzent) !important;
}
.additional-text p {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-semibold);
}
.additional-text li {
font-size: var(--font-size-lg);
font-weight: var(--font-weight-medium);
}
@media (max-width: 768px) {
.banner .col-4 {
flex: 0 0 30%;
max-width: 30%;
}
.banner .col-8 {
flex: 0 0 70%;
max-width: 70%;
}
.banner svg {
width: 60px;
}
.banner-title{
font-size: var(--font-size-xl);
}
}
.svg-circle {
background-color: var(--color-akzent);
width: 35px;
height: 35px;
}
.svg-circle svg {
width: 20px;
height: auto;
fill: white;
}
.svg-circle {
background-color: var(--color-akzent);
width: 35px;
height: 35px;
}
.svg-circle svg {
width: 20px;
height: auto;
fill: white;
}
.check-circle {
background-color: var(--color-akzent);
width: 20px;
height: 20px;
flex-shrink: 0;
}
/* =============================================================================
HERO SECTION INFO
============================================================================= */
.hero-section-info {
align-items: center;
position: relative;
overflow: hidden;
background: var(--gradient-primary);
padding-top: calc(var(--space-3xl) + 80px);
}
.impressum-section{
background: var(--color-bg-primary);
}
.section-title-info {
color: var(--color-text-primary);
max-width: 700px;
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
line-height: var(--line-height-tight);
}
.impressum-section p,strong {
color: var(--color-text-secondary);
}
/* =============================================================================
Marquee Section Styles
============================================================================= */
.marquee-section {
padding: var(--space-sm) 0;
overflow: hidden;
    background: var(--gradient-primary);
}
.marquee-wrapper {
--marquee-duration: 30s;
--marquee-gap: var(--space-lg);
mask-image: linear-gradient(
to right,
transparent,
black 10%,
black 90%,
transparent
);
}
.marquee {
display: flex;
overflow: hidden;
user-select: none;
gap: var(--marquee-gap);
}
.marquee__group {
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: space-around;
gap: var(--marquee-gap);
min-width: 100%;
animation: scroll-x var(--marquee-duration) linear infinite;
}
.marquee__item {
flex: 0 0 auto;
padding: var(--space-md) var(--space-xl);
transition: all var(--transition-base);
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-bg-primary);
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
}

/* Hover Effekt */
.marquee__item:hover .logo-svg,
.marquee__item:hover .logo-style {
opacity: 1;
transform: scale(1.05);
filter: grayscale(0); /* Bei Hover wieder farbig */
}
@keyframes scroll-x {
from {
transform: translateX(0);
}
to {
transform: translateX(calc(-100% - var(--marquee-gap)));
}
}
/* =============================================================================
7. TRUST SECTION
============================================================================= */
.trust {
 
    padding: var(--space-md)); 
    padding-top: 0; 
}

.trust-rating {
color: var(--color-aktent);
font-size: var(--font-size-sm);
}
/* Mobile Responsive */
@media (max-width: 768px) {
.trust-container {
flex-direction: column;
border: none;
background: none;
}
.trust-rating {
flex-direction: column;
margin: var(--space-xs) 0;
} 
.trust-stats {
gap: 2rem !important;
}
.trust-rating svg {
width: 20px;
height: 20px;
}
}
/* =============================================================================
FEATURES GRID - DESKTOP/MOBILE LAYOUT
============================================================================= */
.features-section {
background: var(--color-bg-primary);
}
/* Desktop: 2x2 Grid */
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
/* Feature Item - Horizontal Layout für Desktop */
.feature-item {
display: flex;
align-items: flex-start;
transition: var(--transition-base);
}
.feature-item:hover {
transform: none;
background: transparent;
}
.feature-item:hover .feature-icon {
transform: scale(1.1);
}
/* Feature Icon - Angepasst für seitliche Anordnung */
.feature-icon {
flex-shrink: 0;
width: 60px;
height: 60px;
margin: 0;
background: transparent;
border-radius: 0;
display: flex;
align-items: center;
justify-content: center;
box-shadow: none;
transition: var(--transition-base);
}
.feature-icon svg {
width: 100%;
height: 100%;
color: var(--color-akzent);
}
/* Feature Content Wrapper */
.feature-content {
flex: 1;
}
/* Feature Title */
.feature-title {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-semibold);
text-align: left;
}
/* Feature Description */
.feature-description {
color: var(--color-text-secondary);
line-height: 1.6;
text-align: left;
margin: 0;
font-size: var(--font-size-base);
}
/* Mobile: Vertical Layout */
@media (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
}
}


/* =============================================================================
OBJECT-FIT-SECTION
============================================================================= */
.object-fit-section {
background: var(--color-bg-primary);
overflow: hidden;
}
.object-fit-section .container {
background: rgba(var(--color-akzent-rgb), 0.2);
overflow: hidden;
}
.object-fit-title {
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-bold);
color: var(--color-text-primary);
}
.object-fit-title-under {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
color: var(--color-text-primary);
}
.service-card-description {
font-size: var(--font-size-base);
line-height: var(--line-height-relaxed);
color: var(--color-text-inverse-rgb);
}
.object-fit-ul {
list-style: none;
padding: 0;
flex-grow: 1;
}
.object-fit-ul li {
display: flex;
align-items: center;
color: var(--color-text-secondary);
}
/* Neue Kreis-Icon Styles */
.object-fit-ul svg {
width: 28px;
height: 28px;
flex-shrink: 0;
color: var(--color-akzent);
box-sizing: content-box;
}
/* =============================================================================
2. Button`s
============================================================================= */
.nav .btn-arrow {
background-color: var(--color-akzent);
color: var(--color-bg-primary);
transition: all 0.3s ease;
font-size: var(--font-size-base);
font-weight: var(--font-weight-semibold);
text-decoration: none;
border: none;
border-radius: var(--radius-full);
box-shadow: var(--shadow-akzent);
}
.btn-arrow {
background-color: var(--color-akzent);
color: var(--color-bg-primary);
transition: all 0.3s ease;
font-size: var(--font-size-xl);
font-weight: var(--font-weight-semibold);
text-decoration: none;
border: none;
border-radius: var(--radius-full);
}
.btn-arrow:hover {
background: var(--gradient-button-hover) !important;
color: var(--color-bg-primary);
}
.btn-arrow-icon {
width: 1.25rem;
height: 1.25rem;
transition: transform 0.3s ease;
}
.btn-arrow:hover .btn-arrow-icon {
transform: translateX(4px);
}
/* Utility Klassen */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }
/* =============================================================================
8. FEATURE CARDS
============================================================================= */
.feature-cards-section {
background: var(--color-bg-primary);
}
.feature-card {
box-shadow: var(--shadow-soft);
background: var(--color-bg-tertiary);
border-radius: var(--radius-xl);
height: 100%;
display: flex;
flex-direction: column;
transition: all var(--transition-slow);
position: relative;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-sm);
}
.card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.card-title {
font-size: var(--font-size-lg);
font-weight: var(--font-weight-semibold);
margin: 0;
}
.card-action {
width: 40px;
height: 40px;
background: var(--gradient-primary);
border: none;
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-text-inverse);
cursor: pointer;
transition: all var(--transition-fast);
box-shadow: var(--shadow-hero);
flex-shrink: 0; 
}
.feature-card:hover .card-action {
transform: rotate(45deg);
}
.card-description {
color: var(--color-text-secondary);
flex-grow: 1;
}
.card-visual {
text-align: center;
}
.card-visual svg {
width: 60%;
}
.card-badge {
width: 60px;
height: 60px;
background: var(--gradient-primary);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: var(--shadow-hero);
transition: all 0.3s ease;
}
.feature-card:hover .card-badge {
transform: scale(1.1) rotate(5deg);
}

/* =============================================================================
10. SPLIT SECTION
============================================================================= */
.split-section {
position: relative;
background: var(--color-bg-primary);
}
.split-section .section-title {
color: var(--color-text-primary);
font-size: var(--font-size-xl);
}
.tech-item {
display: flex;
align-items: flex-start;
transition: all var(--transition-base);
}
.tech-item:hover {
transform: translateX(10px);
}
.tech-icon {
width: 50px;
height: 50px;
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
background: #E2E2E2;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-primary);
flex-shrink: 0;
}
.tech-icon svg {
width: 32px;
height: 32px;
color: var(--color-akzent);
}
.tech-content h3 {
font-size: var(--font-size-lg);
}
.tech-content p {
color: var(--color-text-secondary);
margin: 0;
}
.split-visual {
background-color: var(--color-akzent);
overflow: hidden;
color: var(--color-text-inverse);
border-radius: var(--bs-border-radius-xl);
}
.split-visual h3 {
font-size: var(--font-size-3xl);
color: var(--color-text-inverse);
}
.split-visual p {
font-size: var(--font-size-lg);
color: var(--color-text-inverse);
}
.text-end img {
margin-right: -2rem;
margin-bottom: -2rem;
border-radius: 9px 0 0 0;
box-shadow: var(--shadow-hero);
}
/* Mobile Fix: Nur overflow ändern */
@media (max-width: 767px) {
.split-visual {
}
.text-end img{margin-right: -16px; margin-bottom: -16px;}
}
/* =============================================================================
11. TESTIMONIALS
============================================================================= */
.testimonials-section {
background: var(--color-bg-primary);
}
.testimonial-card {
background: var(--color-bg-tertiary);
height: 100%;
display: flex;
flex-direction: column;
transition: all var(--transition-base);
}
.testimonial-rating {
display: flex;
}
.testimonial-rating svg {
width: 20px;
height: 20px;
color: var(--color-warning);
}
.testimonial-text {
font-size: var(--font-size-lg);
line-height: var(--line-height-relaxed);
color: var(--color-text-primary);
flex-grow: 1;
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
background: var(--gradient-primary);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: var(--font-weight-bold);
flex-shrink: 0;
}
.author-name {
font-weight: var(--font-weight-semibold);
color: var(--color-text-primary);
}
.author-role {
font-size: var(--font-size-sm);
color: var(--color-text-muted);
}

/* =============================================================================
13. CTA SECTION
============================================================================= */
.cta-section {
background: rgba(var(--color-akzent-rgb), 0.1);
position: relative;
overflow: hidden;
padding: var(--space-2xl);
}
.cta-content {
text-align: center;
position: relative;
z-index: 1;
}
.cta-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
color: white;
font-size: var(--font-size-xs);
font-weight: var(--font-weight-bold);
text-transform: uppercase;
letter-spacing: var(--letter-spacing-widest);
border-radius: var(--radius-full);
}
.cta-title {
font-size: var(--font-size-3xl);
color: var(--color-text-primary);
max-width: 600px;
margin: 0 auto;
}
.cta-description {
font-size: var(--font-size-xl);
color: var(--color-text-secondary);
max-width: 600px;
}
.cta-note {
display: flex;
align-items: center;
color: var(--color-text-secondary);
font-size: var(--font-size-sm);
}
.cta-note svg {
width: 20px;
height: 20px;
}
/* =============================================================================
FAQ SECTION
============================================================================= */
.faq-section {
background: var(--color-bg-primary);
}
.section-title {
color: var(--color-text-primary);
}
.faq-question {
display: flex;
align-items: flex-start;
}
.faq-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: var(--color-akzent);
color: var(--color-text-inverse);
border-radius: var(--radius-full);
flex-shrink: 0;
}
.faq-icon svg {
width: 24px;
height: 24px;
}
.faq-question h3 {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
color: var(--color-text-primary);
margin: 0;
line-height: var(--line-height-snug);
}
.faq-answer p {
color: var(--color-text-secondary);
line-height: var(--line-height-relaxed);
}
.faq-answer strong {
color: var(--color-text-primary);
font-weight: var(--font-weight-semibold);
}
.faq-section a{
color: var(--color-akzent);
font-weight: var(--font-weight-bold);
}

/* =============================================================================
FOOTER
============================================================================= */
.footer-section {
position: relative;
background: var(--gradient-primary);
overflow: hidden;
}
/* Footer Content */
.footer-top {
position: relative;
z-index: var(--z-10);
border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
}
.footer-logo {
display: inline-block;
color: var(--color-text-inverse);
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-bold);
text-decoration: none;
}
.footer-description {
color: var(--color-text-inverse-rgb);
line-height: var(--line-height-relaxed);
}
/* Footer Social */
.footer-social {
display: flex;
gap: var(--space-sm);
}
.social-footer-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(var(--color-primary-rgb), 0.2);
border-radius: var(--radius-full);
color: var(--color-text-inverse);
transition: all var(--transition-base);
}
.social-footer-link:hover {
background: var(--color-akzent);
transform: translateY(-3px);
color: var(--color-text-inverse);
}
.social-footer-link svg {
width: 20px;
height: 20px;
}
.footer-title {
color: var(--color-text-inverse);
font-size: var(--font-size-lg);
font-weight: var(--font-weight-bold);
}
/* Footer Links */
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links a {
color: var(--color-text-inverse-rgb);
text-decoration: none;
transition: all var(--transition-base);
display: inline-block;
}
.footer-links a:hover {
color: var(--color-text-inverse);
transform: translateX(5px);
}
/* Footer Bottom */
.footer-bottom {
position: relative;
z-index: var(--z-10);
}
.footer-copyright {
color: var(--color-text-inverse-rgb);
margin: 0;
}
.footer-bottom-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: flex-end;
}
.footer-bottom-links a {
color: var(--color-text-inverse-rgb);
text-decoration: none;
transition: color var(--transition-base);
}
.footer-bottom-links a:hover {
color: var(--color-text-inverse);
}
/* Mobile Responsive */
@media (max-width: 767.98px) {
.footer-bottom-links {
justify-content: center;
flex-wrap: wrap;
}
.footer-copyright {
text-align: center;
}
.footer-widget {
text-align: center;
}
.footer-social {
justify-content: center;
}
}
/* =============================================================================
20. ANIMATIONS & UTILITIES
============================================================================= */
.btn-arrow.pulse {
position: relative !important;
overflow: visible !important;
z-index: 1 !important;
}
.btn-arrow.pulse::after {
content: '' !important;
position: absolute !important;
top: 50% !important;
left: 50% !important;
width: 100% !important;
height: 100% !important;
border-radius: inherit !important;
transform: translate(-50%, -50%) !important;
pointer-events: none !important;
z-index: -1 !important;
animation: pulse-effect 2s infinite !important;
}
@keyframes pulse-effect {
0% {
box-shadow: 0 0 0 0 rgba(var(--color-akzent-1-rgb), 0.3);
transform: translate(-50%, -50%) scale(1);
}
70% {
box-shadow: 0 0 0 10px rgba(var(--color-akzent-1-rgb), 0);
transform: translate(-50%, -50%) scale(1);
}
100% {
box-shadow: 0 0 0 0 rgba(var(--color-akzent-1-rgb), 0);
transform: translate(-50%, -50%) scale(1);
}
}
/* =============================================================================
21. RESPONSIVE DESIGN
============================================================================= */
/* Mobile */
@media (max-width: 767.98px) {
/* Spacing */
/* Typography */
.hero-title {
font-size: var(--font-size-xl);
}
.section-title {
font-size: var(--font-size-xl);
}
.stats-overlay {
position: static;
transform: none;
}
}
/* =============================================================================
STICKY CONTACT BAR - Optimiert & Mobile-First
============================================================================= */
/* Base Styles */
.sticky-contact-bar {
position: fixed;
z-index: 1000;
background-color: var(--color-akzent);
border-radius: var(--radius-md);
box-shadow: var(--shadow-strong);
animation: slideInMobile 0.5s ease-out;
/* Mobile Default: Unten zentriert */
left: 50%;
bottom: 1rem;
transform: translateX(-50%);
padding: 0.5rem;
}
.contact-item {
background-color: var(--color-akzent);
border-radius: var(--radius-md);
text-decoration: none;
transition: all var(--transition-base);
position: relative;
overflow: hidden;
/* Mobile Default */
flex-direction: column;
width: 100px;
padding: 0.5rem;
}
.contact-item svg {
width: 24px;
height: 24px;
color: var(--color-text-inverse);
transition: transform var(--transition-base);
z-index: 2;
}
.contact-label {
font-size: 12px;
color: var(--color-text-inverse);
font-weight: var(--font-weight-medium);
line-height: 1;
white-space: nowrap;
/* Mobile: Sichtbar */
opacity: 1;
margin-top: 0.25rem;
}
/* Trennlinien zwischen Items */
.contact-item:not(:last-child) {
border-right: 1px solid white;
}
/* Hover Effects */
.contact-item:hover {
transform: translateY(-3px);
text-decoration: none;
}
/* Desktop Overrides */
@media (min-width: 992px) {
.sticky-contact-bar {
right: 1.5rem;
bottom: 50%;
left: auto;
transform: translateY(50%);
padding: 1rem;
animation: slideInDesktop 0.5s ease-out;
}
.contact-item {
width: 60px;
height: 60px;
padding: 0;
}
.contact-label {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%) translateY(100%);
font-size: 10px;
margin-top: 0;
padding-bottom: 8px;
opacity: 0;
transition: all var(--transition-base);
}
.contact-item:hover svg {
transform: translateY(-8px);
}
.contact-item:hover .contact-label {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.contact-item:not(:last-child) {
border-right: none;
border-bottom: 1px solid white;
}
}
/* Accessibility */
.contact-item:focus {
outline: 2px solid var(--color-akzent);
outline-offset: 2px;
}
/* Animations */
@keyframes slideInMobile {
from {
opacity: 0;
transform: translateX(-50%) translateY(20px);
}
to {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
}
@keyframes slideInDesktop {
from {
opacity: 0;
transform: translateY(50%) translateX(20px);
}
to {
opacity: 1;
transform: translateY(50%) translateX(0);
}
}
/* =============================================================================
21. Statistic-page 
============================================================================= */
.statistic-page .stat-number {
color: var(--color-akzent);
font-size: var(--font-size-3xl);
font-weight: var(--font-weight-bold);
}
.statistic-page .stat-label {
color: var(--color-akzent);
font-size: var(--font-size-xl);
}
.rounded-circle.statistic {
background-color: var(--color-akzent);
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
}
.section-statistic .card, .section-statistic .card-header, .section-statistic .card-body {
border: none;
}
.section-statistic thead th,
.section-statistic th[scope="col"],
.section-statistic th[scope="row"] {
background-color: var(--color-akzent);
color: var(--color-text-inverse);   /* heller Text auf dunklem Akzent */
}
.section-statistic .color-1 thead th,
.section-statistic .color-1 th[scope="col"],
.section-statistic .color-1 th[scope="row"] {
background: rgba(var(--color-akzent-rgb), 0.1);
color: var(--color-text-primary); 
}
.table-of-contents {
background: var(--color-bg-primary);
}
.navi-anker {
background: var(--color-bg-primary);
}

.navi-anker .btn {
border-color: var(--color-akzent);
color: var(--color-text-secondary);
}
.navi-anker .btn:hover {
background: var(--color-akzent);
color: var(--color-text-inverse);
}
.toc-title {
color: var(--color-akzent);
}
.toc-list a {
transition: color 0.3s ease;
}
.toc-list a:hover {
color: var(--color-akzent);
}
.toc-arrow {
color: var(--color-akzent);
transition: transform 0.3s ease;
}
.toc-list a:hover .toc-arrow {
transform: translateX(3px);
}

/* =============================================================================
KONTAKTFORM 
============================================================================= */
.kontaktform {
	    background: var(--gradient-primary);
}
.kontaktform .section-title, .kontaktform .feature-title,.kontaktform .feature-icon svg {
	color: var(--color-bg-primary);
}
.kontaktform .section-description,.kontaktform .feature-description {color: var(--color-text-inverse-rgb);}

/* Custom Styles für das Kontaktformular */
#kontaktformular .form-control:focus {
    border-color: var(--color-akzent);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-akzent-1-rgb), 0.25);
}

#kontaktformular .form-check-input:checked {
    background-color: var(--color-akzent);
    border-color: var(--color-akzent);
}

#kontaktformular .form-check-input:focus {
    border-color: var(--color-akzent);
    box-shadow: 0 0 0 0.2rem rgba(var(--color-akzent-1-rgb), 0.25);
}

#kontaktformular .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-akzent-1-rgb), 0.3);
}

#kontaktformular .card {
    background: var(--color-bg-primary);
}

@media (max-width: 991.98px) {
    #kontaktformular .pe-lg-4 {
        padding-right: 0 !important;
        margin-bottom: 2rem;
    }
}

.form-header-bar {
    background: var(--color-bg-primary);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-inverse);
}

.form-header-bar h2{
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin: 0;
    padding: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
        background: rgba(var(--color-akzent-rgb), 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    z-index: 10;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #a31735;
    border-radius: var(--radius-full);
    animation: pulse-red 2s infinite;
}

.live-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #a31735;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Floating Label Styles */
.floating-label-group {
    position: relative;
    margin-bottom: 0;
}

.floating-input {
    padding: 1.2rem 1rem 0.6rem 1rem !important;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md, 0.75rem) !important;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto !important;
}

.floating-textarea {
    padding-top: 1.8rem !important;
    resize: vertical;
    min-height: 120px;
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    font-size: 1rem;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--color-bg-primary);
    padding: 0 0.25rem;
    font-weight: 500;
    z-index: 1;
}

/* Label Animation beim Focus oder wenn Input gefüllt ist */
.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-akzent);
    font-weight: 600;
    transform: translateY(0);
}

/* Spezielle Animation für Textarea */
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-akzent);
    font-weight: 600;
}

/* Focus Styles */
.floating-input:focus {
    border-color: var(--color-akzent) !important;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-akzent-1-rgb), 0.25) !important;
    outline: none;
}

/* Error States */
.floating-input.is-invalid {
    border-color: #dc3545 !important;
}

.floating-input.is-invalid + .floating-label {
    color: #dc3545 !important;
}

/* Valid States */
.floating-input.is-valid {
    border-color: #28a745 !important;
}

.floating-input.is-valid + .floating-label {
    color: #28a745 !important;
}

/* Smooth hover effect */
.floating-label-group:hover .floating-input:not(:focus) {
    border-color: #ced4da;
}

/* Newsletter Checkbox Styles */
#newsletter:checked + label {
    color: var(--color-text-primary) !important;
}

#newsletter + label:hover {
    cursor: pointer;
}

/* Newsletter Info Box Hover */
.alert-light:hover {
    background-color: rgba(var(--color-akzent-1-rgb), 0.08) !important;
    transition: background-color 0.3s ease;
}

/* Checkbox Animation */
.form-check-input {
    transition: all 0.3s ease;
}

.form-check-input:checked {
    transform: scale(1.05);
}