/* ===== MODERN & VIBRANT DESIGN - FINANZPHILIPP ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
    /* Vibrant Color Palette - Professionell */
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --accent: #00d4ff;
    --accent-vibrant: #00bcd4;
    --accent-warm: #ff9500;
    --success: #00e676;
    --warning: #ffc107;
    --danger: #ff3d00;
    
    --dark: #0a0f1e;
    --dark-soft: #1a1f35;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f7f9fc;
    --white: #ffffff;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 102, 255, 0.24);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-warm: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    --gradient-success: linear-gradient(135deg, #00e676 0%, #00b8d4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== MODERN NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 58, 138, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(59, 130, 246, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 200, 255, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e5e7eb !important;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO - ULTRA MODERN ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 32px 120px;
    background: linear-gradient(180deg, var(--white) 0%, #fafbff 100%);
}

/* Logo als Wasserzeichen im Hintergrund */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: url('../logo.png') center/contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
}

/* Wave Trenner nach Hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,48 C300,80 600,20 900,48 C1050,66 1150,56 1200,48 L1200,80 L0,80 Z' fill='%23f7f9fc'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 10;
}

/* Animated Background Elements */
.hero-gradient,
.hero-orb {
    position: absolute;
    pointer-events: none;
}

.hero-orb {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-wild 15s ease-in-out infinite;
}

.hero-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent 70%);
    top: -200px;
    left: -150px;
    animation-duration: 18s;
}

.hero-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-duration: 22s;
    animation-delay: 2s;
}

.hero-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    animation-duration: 20s;
    animation-delay: 4s;
}

@keyframes float-wild {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    25% { 
        transform: translate(50px, -60px) scale(1.1);
    }
    50% { 
        transform: translate(-30px, 40px) scale(0.9);
    }
    75% { 
        transform: translate(40px, 30px) scale(1.05);
    }
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 4px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 600px;
}

.hero p strong {
    color: var(--dark);
    font-weight: 800;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Premium Buttons with Animations */
.btn {
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* KPIs with Icons */
.hero-kpis {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-start;
}

.kpi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    color: var(--dark);
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.kpi:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.kpi i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Hero Visual - 3D Card Effect */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.hero-logo-card {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 500px;
    height: 340px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    display: grid;
    place-items: center;
    animation: card-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes card-float {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: translateY(-20px) rotateX(2deg) rotateY(-2deg);
    }
    50% { 
        transform: translateY(-10px) rotateX(-1deg) rotateY(3deg);
    }
    75% { 
        transform: translateY(-15px) rotateX(1deg) rotateY(-1deg);
    }
}

.hero-logo-large {
    max-width: 70%;
    max-height: 60%;
    filter: drop-shadow(0 8px 24px rgba(0, 102, 255, 0.25));
}

/* Floating Feature Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-card:hover {
    transform: translateY(-12px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 800;
    color: var(--dark);
    font-size: 1rem;
}

.card-1 {
    top: 10%;
    right: 15%;
    animation: float-card 4s ease-in-out infinite;
}

.card-2 {
    top: 65%;
    right: -50%;
    animation: float-card 5s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 15%;
    right: 20%;
    animation: float-card 4.5s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -20px) rotate(-2deg); }
    50% { transform: translate(10px, -35px) rotate(2deg); }
    75% { transform: translate(-10px, -15px) rotate(-1deg); }
}

/* ===== SECTION HEADERS - BOLD ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.header-underline {
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 3px;
}

.header-underline.light {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

.section-header.light h2,
.section-header.light .section-subtitle {
    color: var(--white);
}

/* ===== ÜBER MICH - MODERN SPLIT ===== */
.uber {
    padding: 140px 32px;
    position: relative;
    background: #f7f9fc;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

.uber::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 102, 255, 0.04), rgba(0, 212, 255, 0.02)),
        linear-gradient(180deg, rgba(247, 249, 252, 0.85), rgba(247, 249, 252, 0.90)),
        url('assets/images/uber-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) contrast(1.02) brightness(1.05);
    z-index: 0;
}

/* Diagonaler Trenner nach Über Mich */
.uber::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1200,30 L1200,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 10;
}

.uber > .container {
    position: relative;
    z-index: 1;
}

.uber-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.uber-text h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.uber-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.qualifications {
    display: grid;
    gap: 20px;
}

.qual-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.qual-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
 160px;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.top3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(0, 102, 255, 0.01) 60px, rgba(0, 102, 255, 0.01) 61px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%),
        linear-gradient(180deg, rgba(0, 102, 255, 0.02), rgba(0, 212, 255, 0.01)),
        url('assets/images/top3-bg.jpg');
    background-size: auto, cover, cover, cover;
    background-position: 0 0, center, center, center;
    filter: grayscale(0.15) brightness(1.12) contrast(1.02);
    z-index: 0;
}

/* Versicherungs-Icons Pattern im Hintergrund */
.top3::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%230066ff' fill-opacity='0.02'%3E%3Cpath d='M50 18L70 28V48C70 62 58 74 50 78C42 74 30 62 30 48V28L50 18z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 140px 140px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1: var(--white);
    overflow: hidden;
}

.top3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 100%),
        linear-gradient(180deg, rgba(0, 102, 255, 0.03), rgba(0, 212, 255, 0.02)),
        url('assets/images/top3-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(0.12) brightness(1.1);
    z-index: 0;
}

.top3 > .container {
    position: relative;
    z-index: 1;
}

/* Asymmetrisches Bento-Style Grid */
.top3-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 8px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
    transform: translateY(-20px) rotate(-1deg);
    box-shadow: 0 24px 64px rgba(0, 102, 255, 0.3);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Card-Nummer - große Zahl im Hintergrund */
.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

/* Große Karte links (2 Zeilen hoch) */
.card-large {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02), rgba(0, 212, 255, 0.01));
}

/* Featured Karte mittig */
.card-featured {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
}

.card-featured h3,
.card-featured p,
.card-featured .features-list li {
    color: var(--white);
}

.card-featured .card-number {
    color: rgba(255, 255, 255, 0.15);
}

.card-featured:hover {
    transform: translateY(-20px) scale(1.05) rotate(1deg);
}

/* Kompakte Karte rechts unten */
.card-compact {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08), rgba(0, 184, 212, 0.05));
}

/* Letzte Spalte bleibt leer für Asymmetrie */
.top3-grid-asymmetric::after {
    content: '';
    grid-column: 11 / 13;
    grid-row: 1 / 3;
}

/* Hot Badge */
.badge-hot {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-hot);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.badge-hot i {
    animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Card Icons mit Gradienten */
.card-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
}

.gradient-bg-success {
    background: var(--gradient-success);
}

.card-icon i {
    font-size: 3rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.card-featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.card-featured p {
    color: rgba(255, 255, 255, 0.95);
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 36px;
}

.features-list li {
    padding: 14px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 600;
}

.card-featured .features-list li {
    color: var(--white) 160px;
    background: linear-gradient(180deg, #fafbff 0%, #f0f4ff 100%);
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

/* Newspaper Pattern im Hintergrund */
.news::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%230066ff' fill-opacity='0.015'%3E%3Crect x='10' y='15' width='40' height='4' rx='2'/%3E%3Crect x='10' y='25' width='60' height='2' rx='1'/%3E%3Crect x='10' y='31' width='55' height='2' rx='1'/%3E%3Crect x='10' y='37' width='50' height='2' rx='1'/%3E%3Crect x='10' y='48' width='35' height='3' rx='1.5'/%3E%3Crect x='10' y='56' width='45' height='2' rx='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Accent Blobs */
.news::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06), transparent 65%);
    top: 15%;
    right: -150px;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0ght);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
    top: 10%;
    right: -100px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* Masonry-Style Grid */
.news-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-auto-rows: 200px;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-item {
    background: var(--white);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-item:hover {
    transform: translateY(-16px) rotate(-2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.news-item:hover::after {
    transform: scaleX(1);
}

/* Große News-Karte (Featured) */
.news-large {
    grid-row: span 2;
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 212, 255, 0.02));
}

/* News Badge */
.news-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gradient-hot);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(255, 0, 110, 0.3);
}

/* Icon statt Bild */
.news-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.news-icon i {
    font-size: 2rem;
    color: var(--white);
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
    flex-wrap: wrap;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.news-meta i {
    color: var(--primary);
}

.news-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.3;
}

.news-large h3 {
    font-size: 2rem;
}

.news-item p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: auto;
    font-size: 1.05rem;
    font-weight: 500;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px; 160px;
    background: var(--white);
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

/* Euro-Zeichen Pattern im Hintergrund */
.angebote::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%230066ff' fill-opacity='0.015'%3E%3Cpath d='M50,30 C40,30 32,38 32,48 C32,58 40,66 50,66 C56,66 61,63 64,58 M30,45 L55,45 M30,51 L55,51' stroke='%230066ff' stroke-width='2' fill='none' opacity='0.02'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Diagonaler Top-Trenner */
.angebote::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L1200,70 L1200,0 L0,0 Z' fill='%23f0f4ff'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 1
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 1rem;
}

.news-link:hover {
    gap: 16px;
    color: var(--accent);
}

/* ===== ANGEBOTE - PRICING CARDS ===== */
.angebote {
    padding: 140px 32px;
    background: var(--white);
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.angebot-card {
    background: var(--white);
    border: 3px solid rgba(0, 102, 255, 0.15);
    border-radius: 32px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.angebot-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.angebot-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.angebot-card:hover::before {
    opacity: 1;
}

.angebot-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.angebot-badge {
    display: none;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.angebot-card.featured .angebot-badge {
    display: block;
}

.angebot-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.angebot-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.angebot-price span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray);
}

.angebot-card p { 160px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2ff 100%);
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

/* Kontakt-Icons Pattern im Hintergrund */
.kontakt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%230066ff' fill-opacity='0.018'%3E%3Cpath d='M40,35 L50,35 C52,35 54,37 54,39 L54,51 C54,53 52,55 50,55 L40,55 C38,55 36,53 36,51 L36,39 C36,37 38,35 40,35 Z M38,57 L52,57 M45,55 L45,60 M70,42 C74,42 77,45 77,49 C77,53 74,56 70,56 C66,56 63,53 63,49 C63,45 66,42 70,42 Z M70,56 L70,61 M67,61 L73,61'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Wave-Trenner oben */
.kontakt::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C400,60 800,20 1200,40 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 1
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.angebot-features {
    list-style: none;
    margin-bottom: 40px;
}

.angebot-features li {
    padding: 14px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
}

.angebot-features li i {
    color: var(--success);
    font-size: 1.4rem;
}

/* ===== KONTAKT - SPLIT LAYOUT ===== */
.kontakt {
    padding: 140px 32px 160px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2ff 100%);
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

/* Kontakt-Icons Pattern im Hintergrund */
.kontakt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%230066ff' fill-opacity='0.018'%3E%3Cpath d='M40,35 L50,35 C52,35 54,37 54,39 L54,51 C54,53 52,55 50,55 L40,55 C38,55 36,53 36,51 L36,39 C36,37 38,35 40,35 Z M38,57 L52,57 M45,55 L45,60 M70,42 C74,42 77,45 77,49 C77,53 74,56 70,56 C66,56 63,53 63,49 C63,45 66,42 70,42 Z M70,56 L70,61 M67,61 L73,61'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Wave-Trenner oben */
.kontakt::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C400,60 800,20 1200,40 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.kontakt > .container {
    position: relative;
    z-index: 2;
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.kontakt-form {
    background: var(--white);
    padding: 56px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 102, 255, 0.1);
}

.kontakt-form h3 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    font-weight: 500;
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-box {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-content p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent);
}

.info-meta {
    color: var(--gray) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    margin-top: 4px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.map-embed {
    margin-top: 12px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 102, 255, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ===== FOOTER - DARK MODE ===== */
.footer {
    background: linear-gradient(180deg, #0A193C 0%, #050d1f 100%);
    color: var(--white);
    padding: 80px 32px 40px;
    position: relative;
    border-top: 3px solid #0066FF;
}

/* Dezentes Grid-Pattern im Footer */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    pointer-events: none;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a,
.footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-col a:hover,
.footer a:hover {
    color: #e5e7eb !important;
    padding-left: 8px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer-links a:hover {
    color: #e5e7eb !important;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.3rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    color: #ffffff !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 40px;
    padding: 56px;
    border-radius: 32px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--dark);
    padding-bottom: 24px;
    border-bottom: 4px solid var(--primary);
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 40px 0 20px;
    color: var(--dark);
}

.modal-content p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-content ul {
    margin: 20px 0;
    padding-left: 28px;
    color: var(--gray);
}

.modal-content ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.modal-content a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.close {
    position: absolute;
    top: 32px;
    right: 40px;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--dark);
    background: var(--light);
    transform: rotate(90deg) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner,
    .uber-content,
    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    /* Top3 Grid Anpassung */
    .top3-grid-asymmetric {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .card-large,
    .card-featured,
    .card-compact {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    /* News Grid Anpassung */
    .news-grid-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .news-large {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 58, 138, 0.98);
        padding: 20px 0;
        gap: 10px;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero {
        padding: 120px 24px 60px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-logo-card {
        width: 90%;
        height: 300px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .card-number {
        font-size: 5rem;
        top: 10px;
        right: 20px;
    }
    
    .modal-content {
        padding: 40px 28px;
        margin: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-card {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .card-number {
        font-size: 4rem;
    }
}

/* ===== USP SECTION ===== */
.usp {
    padding: 120px 32px;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.90) 100%),
        url('../assets/images/usp-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.usp-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    text-align: center;
}

.usp-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.usp-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.usp-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.usp-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.usp-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.gradient-bg-accent {
    background: var(--gradient-warm);
}

/* ===== LEISTUNGEN SECTION ===== */
.leistungen {
    padding: 140px 32px;
    background: 
        linear-gradient(180deg, rgba(250, 251, 255, 0.88) 0%, rgba(255, 255, 255, 0.92) 100%),
        url('../assets/images/leistungen-bg.jpg') center/cover no-repeat fixed;
    position: relative;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

.leistung-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(0, 102, 255, 0.06);
    text-align: center;
}

.leistung-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.leistung-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistung-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.leistung-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.leistung-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== PROZESS SECTION ===== */
.prozess {
    padding: 140px 32px 160px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.prozess::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(255, 255, 255, 0.02) 60px, rgba(255, 255, 255, 0.02) 61px);
    pointer-events: none;
}

.prozess-timeline {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.prozess-step {
    flex: 1;
    max-width: 360px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px 32px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-content:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.step-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.prozess-connector {
    flex: 0 0 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    margin-top: 50px;
}

.prozess-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid rgba(255, 255, 255, 0.4);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.prozess-cta {
    text-align: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}

/* ===== BU SEKTION - BERUFSUNFÄHIGKEITSVERSICHERUNG ===== */
.bu-section {
    padding: 140px 32px;
    background: linear-gradient(135deg, #fef3f2 0%, #fee2e2 100%);
    position: relative;
    overflow: hidden;
}

.bu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.bu-stats-card {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.bu-stats-card .stat-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bu-stats-card .stat-icon i {
    font-size: 3rem;
    color: var(--white);
}

.bu-stats-card .stat-content {
    color: var(--white);
}

.bu-stats-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.bu-stats-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.bu-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.bu-info-grid .info-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

.bu-info-grid .info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: #dc2626;
}

.bu-info-grid .info-card i {
    font-size: 1.8rem;
    color: #dc2626;
    flex-shrink: 0;
    margin-top: 4px;
}

.bu-info-grid .info-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.bu-info-grid .info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bu-reasons {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.bu-reasons h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reason-item {
    position: relative;
    width: 100%;
}

.reason-bar-container {
    width: 100%;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.reason-bar-fill {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-width: fit-content;
}

.reason-bar-fill:hover {
    filter: brightness(1.1);
}

.reason-label {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-right: 16px;
}

.reason-percent {
    font-weight: 900;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bu-back-button {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

/* ===== ALTERSVORSORGE SEKTION ===== */
.altersvorsorge-section {
    padding: 140px 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.altersvorsorge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.altersvorsorge-stats-card {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(22, 163, 74, 0.3);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.altersvorsorge-stats-card .stat-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.altersvorsorge-stats-card .stat-icon i {
    font-size: 3rem;
    color: var(--white);
}

.altersvorsorge-stats-card .stat-content {
    color: var(--white);
}

.altersvorsorge-stats-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.altersvorsorge-stats-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.altersvorsorge-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.altersvorsorge-info-grid .info-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(22, 163, 74, 0.1);
    transition: all 0.3s ease;
}

.altersvorsorge-info-grid .info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: #16a34a;
}

.altersvorsorge-info-grid .info-card i {
    font-size: 1.8rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 4px;
}

.altersvorsorge-options {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.altersvorsorge-options h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark);
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 100%);
    border-radius: 16px;
    border: 2px solid rgba(22, 163, 74, 0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #16a34a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.15);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.option-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.option-content p {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.option-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.option-content ul li i {
    color: #16a34a;
    font-size: 0.8rem;
}

.altersvorsorge-form-wrapper {
    position: sticky;
    top: 120px;
}

.altersvorsorge-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(22, 163, 74, 0.1);
}

.altersvorsorge-form-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.altersvorsorge-back-button {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(22, 163, 74, 0.1);
}

/* ===== HAFTPFLICHT SEKTION ===== */
.haftpflicht-section {
    padding: 140px 32px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.haftpflicht-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.haftpflicht-stats-card {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.haftpflicht-stats-card .stat-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.haftpflicht-stats-card .stat-icon i {
    font-size: 3rem;
    color: var(--white);
}

.haftpflicht-stats-card .stat-content {
    color: var(--white);
}

.haftpflicht-stats-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.haftpflicht-stats-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.haftpflicht-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.haftpflicht-info-grid .info-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.haftpflicht-info-grid .info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: #2563eb;
}

.haftpflicht-info-grid .info-card i {
    font-size: 1.8rem;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 4px;
}

.haftpflicht-scenarios {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.haftpflicht-scenarios h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark);
}

.scenarios-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.scenario-card {
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff 0%, var(--white) 100%);
    border-radius: 16px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.scenario-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.scenario-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.scenario-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.scenario-cost {
    padding: 10px 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
}

.scenario-cost strong {
    color: #2563eb;
    font-weight: 800;
}

.haftpflicht-features {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.haftpflicht-features h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, var(--white) 100%);
    border-radius: 12px;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.feature-box i {
    color: #2563eb;
    font-size: 1.2rem;
}

.feature-box span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.haftpflicht-form-wrapper {
    position: sticky;
    top: 120px;
}

.haftpflicht-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(37, 99, 235, 0.1);
}

.haftpflicht-form-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.haftpflicht-back-button {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

/* ===== CHATBOT WIDGET STYLING ===== */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.4);
}

.chatbot-toggle.active {
    transform: scale(0.9);
}

.chat-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    animation: chatBadgePulse 2s infinite;
}

@keyframes chatBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.chatbot-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 400px;
    height: 600px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%) scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chatbot-header-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.chatbot-status {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chatbot-message {
    display: flex;
    gap: 12px;
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.message-bubble {
    max-width: 75%;
    padding: 14px 18px;
    border-radius: 18px;
    line-height: 1.5;
}

.bot-message .message-bubble {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.user-message .message-bubble {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    margin-left: auto;
}

.message-bubble p {
    margin: 0;
    font-size: 15px;
}

.bot-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bot-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.chatbot-quick-replies {
    padding: 12px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-reply {
    padding: 8px 16px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #334155;
}

.quick-reply:hover {
    background: #e0e7ff;
    border-color: #3b82f6;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.chatbot-input-area {
    padding: 16px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chatbot-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.chatbot-send {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.chatbot-send:active {
    transform: scale(0.95);
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 120px 32px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1e3a8a);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 56px rgba(30, 58, 138, 0.25);
}

.news-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.15);
    opacity: 0.85;
}

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 36px;
    background: white;
}

.news-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: #3b82f6;
    font-size: 1rem;
}

.news-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.3;
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.05rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e3a8a;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(30, 58, 138, 0.1);
}

.news-link:hover {
    color: white;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    gap: 14px;
    border-color: transparent;
    transform: translateX(4px);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 24px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
}

.news-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.news-cta .btn {
    background: white;
    color: #1e3a8a;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.news-cta .btn:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .news-cta {
        padding: 40px 24px;
    }
    
    .news-cta p {
        font-size: 1.1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 100px);
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
    
    .message-bubble {
        max-width: 85%;
    }
}

.bu-form-wrapper {
    position: sticky;
    top: 120px;
}

.bu-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(220, 38, 38, 0.1);
}

.bu-form-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.bu-form .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.bu-form .radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.bu-form .radio-label:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.bu-form .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-disclaimer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-disclaimer i {
    color: #dc2626;
}

.bu-benefits {
    margin-top: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.bu-benefits h3 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: #dc2626;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== ENERGIE SEKTION - STROM & GAS ===== */
.energie {
    padding: 140px 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.energie::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9500 0%, #ffb800 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.badge-new i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.energie-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.savings-card {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.savings-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.savings-icon i {
    font-size: 3rem;
    color: var(--white);
}

.savings-amount {
    color: var(--white);
}

.savings-amount .currency {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
}

.savings-amount h3 {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 8px 0;
    line-height: 1;
}

.savings-amount .period {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.energie-features {
    display: grid;
    gap: 20px;
}

.feature-item {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.energie-form-wrapper {
    position: sticky;
    top: 120px;
}

.energie-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(0, 102, 255, 0.1);
}

.energie-form-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.form-intro {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.energie-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 102, 255, 0.05);
    border: 2px solid rgba(0, 102, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.checkbox-label:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.checkbox-label i {
    color: var(--primary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 140px 32px 160px;
    background: var(--gradient-primary);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='20' y='70' font-size='80' fill='%23ffffff' opacity='0.03' font-family='Georgia,serif'%3E%E2%80%9C%3C/text%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 36px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.testimonial-card.featured {
    border: 3px solid rgba(255, 255, 255, 0.6);
    background: var(--white);
}

.testimonial-badge {
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--gradient-warm);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffa000;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--primary-light);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
    .prozess-timeline {
        flex-direction: column;
        gap: 60px;
    }
    
    .prozess-connector {
        width: 4px;
        height: 60px;
        margin: 0 auto;
    }
    
    .prozess-connector::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -12px;
        top: auto;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 12px solid rgba(255, 255, 255, 0.4);
    }
    
    .step-number {
        left: 50%;
    }
}

@media (max-width: 768px) {
    .usp-grid,
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
