/* ============================================
   KASSEN MAHN - WEBSITE STYLES
   Farben: #E31E24 (Rot) | #1a1a1a (Schwarz) | #FFFFFF (Weiß)
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Farben */
    --primary-color: #E31E24;        /* Rot - Logo */
    --secondary-color: #1a1a1a;      /* Schwarz/Dunkelgrau */
    
    /* Neutral Farben */
    --gray-light: #6B7280;
    --gray-dark: #374151;
    --off-white: #F9FAFB;
    --white: #FFFFFF;
    
    /* Zusatz */
    --primary-hover: #B71C1C;
    --secondary-hover: #000000;
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.1);
    --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.15);
    --shadow-lg: 0 8px 32px rgba(26, 26, 26, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(26, 26, 26, 0.1);
    z-index: 10000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #E31E24 0%, #51c5c8 100%);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
    position: relative;
}

.scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* === SCROLL TO TOP BUTTON === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #E31E24, #c01a20);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #c01a20, #E31E24);
    transform: translateY(-5px) scale(1);
    box-shadow: 0 12px 35px rgba(227, 30, 36, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Pulsing Animation beim ersten Erscheinen */
.scroll-to-top.show {
    animation: pulse-once 0.6s ease-out;
}

@keyframes pulse-once {
    0% {
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(227, 30, 36, 0),
                    0 0 0 30px rgba(227, 30, 36, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
    }
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* === SCROLL ANIMATIONS === */
/* Elemente die animiert werden sollen */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Verzögerungen für gestaffelte Animation */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Spezielle Animations-Typen */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Für Cards mit Hover-Effekt */
.card.animate-on-scroll {
    transform: translateY(30px) scale(0.95);
}

.card.animate-on-scroll.animated {
    transform: translateY(0) scale(1);
}

/* Mobile: Reduzierte Animation */
@media (max-width: 768px) {
    .animate-on-scroll,
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale {
        transform: translateY(20px);
    }
    
    .animate-slide-left {
        transform: translateY(20px);
    }
    
    .animate-slide-right {
        transform: translateY(20px);
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .animate-fade-in,
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Grid Pattern Background - Logo DNA */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(227, 30, 36, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 30, 36, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* === TOP BAR === */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-size: 0.875rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-item i {
    color: #E31E24;
    font-size: 0.9rem;
}

.top-bar-item:hover {
    color: #E31E24;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.top-bar-social {
    display: flex;
    gap: 0.8rem;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: #E31E24;
    transform: translateY(-2px);
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-text i {
    color: #51c5c8;
    margin-right: 0.4rem;
}

/* Mobile: Top Bar */
@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .top-bar-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .top-bar-left {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-right {
        display: none; /* Auf Mobile ausblenden */
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 42px; /* Platz für Top Bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Wenn Top Bar versteckt ist, Navigation nach oben */
.navbar.top-bar-hidden {
    top: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 0.5rem 0;
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* CTA Buttons in Nav */
.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-phone {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.btn-phone:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.4);
}

.btn-contact {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.btn-contact:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 4rem 2rem; /* Extra Padding für Top Bar + Navigation */
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Große 25+ Zahl - Branding Element */
.hero-number {
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.15);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: -10px;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation */
.typing-text {
    display: inline-block;
    min-width: 300px;
    text-align: left;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    background: var(--primary-color);
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

/* Quadrat-Akzent */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

.hero-btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    background: var(--primary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: var(--off-white);
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.4);
}

/* === SECTIONS === */
section {
    padding: 5rem 2rem;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

/* Rote Quadrate als Logo-DNA */
.section-header h2::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -25px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    transform: rotate(45deg);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === CARDS & GRIDS === */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.card {
    background: var(--white);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(227, 30, 36, 0.1);
    transition: var(--transition);
    position: relative;
}

/* Rotes Quadrat in Ecke */
.card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
}

.card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 rgba(227, 30, 36, 0.15);
    border-color: var(--primary-color);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Rotes Quadrat-Akzent bei Buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 4px 4px 0 rgba(227, 30, 36, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(227, 30, 36, 0.4);
}

/* === LEISTUNGEN SECTION === */
.leistungen-section {
    background: var(--white);
    position: relative;
}

/* Hero-Style Hauptleistung */
.leistung-hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    padding: 3.5rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid rgba(227, 30, 36, 0.15);
    position: relative;
    overflow: hidden;
}

.leistung-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.leistung-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background: rgba(227, 30, 36, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.leistung-hero h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.leistung-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.leistung-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.hero-stat i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Visual Items - Rechte Seite */
.leistung-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.visual-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.visual-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.15);
}

.visual-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 14px;
    flex-shrink: 0;
}

.visual-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Service Grid - Untere Leistungen */
.leistungen-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-column {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.service-column:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.service-column:hover .service-icon-wrapper {
    background: var(--primary-color);
    transform: rotate(-5deg);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
}

.service-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.service-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 0;
}

/* Visual Items als Links */
.visual-item {
    cursor: pointer;
}

.visual-item:hover {
    transform: scale(1.05);
    background: rgba(227, 30, 36, 0.1);
}

/* CTA am Ende */
.leistungen-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(227, 30, 36, 0.04);
    border-radius: 16px;
    border: 1px dashed rgba(227, 30, 36, 0.3);
}

.leistungen-cta p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.leistungen-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* === WARUM KASSEN MAHN SECTION === */
.warum-section {
    background: linear-gradient(180deg, var(--off-white) 0%, #fafbfc 100%);
    position: relative;
}

/* Intro-Bereich */
.warum-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.warum-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.warum-intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.warum-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin: 0;
}

.warum-intro-highlight {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.08);
    border: 2px solid var(--primary-color);
    position: relative;
}

.warum-intro-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.highlight-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-text strong {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.highlight-text span {
    font-size: 0.95rem;
    color: var(--gray-light);
}

/* Warum Grid */
.warum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.warum-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: var(--transition);
    position: relative;
}

.warum-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.warum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(26, 26, 26, 0.1);
    border-color: var(--primary-color);
}

.warum-card:hover::after {
    opacity: 1;
}

.warum-primary {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
    color: var(--white);
    border: none;
}

.warum-primary::after {
    background: linear-gradient(90deg, var(--primary-color), var(--white));
}

.warum-primary h3,
.warum-primary p {
    color: var(--white) !important;
}

.warum-primary p {
    opacity: 0.95;
}

.warum-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.warum-card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.warum-primary .warum-card-header i {
    background: rgba(227, 30, 36, 0.15);
}

.warum-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.warum-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0;
}

.warum-badge-list {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.mini-badge {
    display: inline-block;
    background: rgba(227, 30, 36, 0.15);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

/* Testimonial */
.warum-testimonial {
    background: var(--white);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 4rem;
    color: rgba(227, 30, 36, 0.1);
}

.warum-testimonial blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--secondary-color);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* === FAQ SECTION === */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(227, 30, 36, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0028 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 2rem 3rem 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cert-badge {
    background: rgba(227, 30, 36, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    min-width: 24px;
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-details strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-details span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer CTA */
.footer-cta {
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin: 0 2rem 3rem 2rem;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-btn.btn-phone {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

.footer-btn.btn-phone:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5);
}

.footer-btn.btn-email {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.footer-btn.btn-email:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Große Zahl - Mobile */
    .hero-number {
        font-size: 10rem;
        right: 5%;
        opacity: 0.8;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Leistungen Hero - Mobile */
    .leistung-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .leistung-hero h3 {
        font-size: 1.5rem;
    }
    
    .leistungen-service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Warum Section - Mobile */
    .warum-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .warum-intro-text h2 {
        font-size: 1.8rem;
    }
    
    .warum-grid {
        grid-template-columns: 1fr;
    }
    
    .warum-primary {
        grid-column: span 1;
    }
    
    .warum-testimonial {
        padding: 2rem;
    }
    
    .warum-testimonial blockquote {
        font-size: 1.1rem;
    }
    
    .testimonial-icon {
        font-size: 3rem;
        right: 1.5rem;
    }
    
    /* Über uns Section - Mobile */
    section > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
