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

:root {
    /* Logo-Blau als Basis */
    --primary-color: #2f6fae;
    --primary-dark: #245a8c;
    --primary-light: #5b93c7;
    --primary-warm: #3b7fbe;
    --secondary-color: #334155;
    --accent-color: #1a8ccf;
    --accent-warm: #3aa5e3;
    --success-color: #10b981;
    --success-warm: #059669;
    --warning-color: #f59e0b;
    --error-color: #dc2626;
    
    /* Helle, lesbare Textfarben */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    /* Wärmere, einladendere Hintergründe */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-warm: #fefefe;
    --bg-card: #ffffff;
    --bg-dark: #1e293b;
    
    /* Subtile Rahmen */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-warm: #e8f0f8;
    
    /* Lebendigere Gradients */
    --gradient-primary: linear-gradient(180deg, #2f6fae 0%, #2f6fae 100%);
    --gradient-warm: linear-gradient(180deg, #2f6fae 0%, #2f6fae 100%);
    --gradient-accent: linear-gradient(180deg, #1a8ccf 0%, #1a8ccf 100%);
    --gradient-success: linear-gradient(180deg, #10b981 0%, #10b981 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    --gradient-hero: linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
    
    /* Typografie */
    --font-body: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Sora', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Tiefere, lebendigere Schatten */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 36px rgba(15, 23, 42, 0.14);
    --shadow-glow: none;
    --shadow-glow-warm: none;
    --shadow-colored: 0 10px 24px rgba(47, 111, 174, 0.12);
    
    /* Abgerundete Ecken */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    
    /* Sanfte Übergänge */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    * {
        box-sizing: border-box;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
}

/* Main Content - Platz für fixed Header */
.main {
    padding-top: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Typography - Professionelle Lesbarkeit */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.015em;
}

h1 { 
    font-size: clamp(1.75rem, 5vw, 3.25rem); 
    font-weight: 700;
    line-height: 1.15;
    max-width: 100%;
}
h2 { 
    font-size: clamp(1.5rem, 4vw, 2.5rem); 
    font-weight: 700;
    line-height: 1.25;
    max-width: 100%;
}
h3 { 
    font-size: clamp(1.25rem, 3vw, 1.875rem); 
    font-weight: 600;
    line-height: 1.3;
    max-width: 100%;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Verbesserte Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: none;
    border: 1px solid var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47, 111, 174, 0.06);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: none;
}

/* Header - Klarer und professioneller */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 9997;
    transition: all 0.2s ease;
    box-shadow: none;
}

.header.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    border-bottom-color: var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

.nav-link.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: none;
    margin-left: 1rem;
    border: 1px solid var(--primary-dark);
}

.nav-link.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: none;
    background: var(--primary-dark);
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.login-button {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}

.nav-link.login-button i {
    color: var(--primary-color);
}

.nav-link.login-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    color: var(--text-light);
}

.nav-link.login-button:hover i {
    color: var(--text-light);
}

.nav-link.login-button::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section - Schlicht & strukturiert */
.hero {
    padding: 120px 0 72px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-background-overlay {
    display: none;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-pattern {
    display: none;
}

@keyframes pattern-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Dekorative Blobs */
.hero::after {
    display: none;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

.hero-content-compact {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
    text-align: left;
}

/* Wenn keine hero-services-preview vorhanden ist, zentrieren und volle Breite */
.hero-content-compact:has(.hero-main:only-child),
.hero-content-compact:not(:has(.hero-services-preview)) {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .hero-content-compact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-content-compact:has(.hero-main:only-child),
    .hero-content-compact:not(:has(.hero-services-preview)) {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-services-preview {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    align-items: flex-start;
    width: 100%;
}

/* Wenn hero-main allein ist, zentrieren */
.hero-content-compact:has(.hero-main:only-child) .hero-main,
.hero-content-compact:not(:has(.hero-services-preview)) .hero-main {
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-main {
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

/* Kompakte Badge-Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    width: fit-content;
    margin: 0;
    border: 1px solid var(--border-color);
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

.hero-badge i {
    font-size: 0.95rem;
    animation: none;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-heading {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 auto;
    color: var(--text-primary);
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: clamp(1.625rem, 6vw, 2rem);
        line-height: 1.25;
        text-align: center;
    }
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.15em;
    left: 0;
    right: 0;
    height: 0.18em;
    background: rgba(47, 111, 174, 0.18);
    border-radius: 999px;
    z-index: -1;
    animation: none;
}

@keyframes highlight-glow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 auto;
    font-weight: 400;
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        text-align: center;
    }
}

/* Prominente Telefonnummer in Hero-Section */
.hero-phone-prominent {
    margin: 2rem auto 1.5rem;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone-card-prominent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.phone-card-prominent::before {
    display: none;
}

.phone-card-prominent:hover {
    transform: translateY(-1px);
    box-shadow: none;
    border-color: var(--primary-color);
}

.phone-icon-large {
    width: 56px;
    height: 56px;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: pulse-phone 2s ease-in-out infinite;
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.phone-icon-large i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.phone-content {
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: left;
}

.phone-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-number-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.phone-number-large:hover {
    color: var(--primary-dark);
}

.phone-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.phone-availability i {
    font-size: 0.5rem;
    color: var(--success-color);
    animation: blink 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .hero-phone-prominent {
        margin: 1.5rem auto;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .phone-card-prominent {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .phone-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .phone-icon-large i {
        font-size: 1.75rem;
    }
    
    .phone-number-large {
        font-size: 1.5rem;
    }
    
    .phone-availability {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-contact-info {
        align-items: center;
    }
}

.contact-phone,
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-color);
}

.contact-phone i,
.contact-email i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.btn-phone-primary {
    background: var(--primary-color);
    box-shadow: none;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border: 1px solid var(--primary-dark);
}

.btn-phone-primary:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 0;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
}

/* Hero Features Compact */
.hero-features-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.feature-item-compact {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-item-compact:hover {
    background: var(--bg-primary);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.feature-item-compact i {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-features-compact {
        justify-content: center;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .feature-item-compact {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        width: auto;
        max-width: 100%;
    }
}

.hero-services-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 968px) {
    .hero-services-preview {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
}

@media (max-width: 600px) {
    .hero-services-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-services-preview {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

.service-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.service-preview-card::before {
    display: none;
}

.service-preview-card::after {
    display: none;
}

@media (max-width: 480px) {
    .service-preview-card {
        padding: 1.25rem;
    }
}

.service-preview-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.service-preview-card .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-preview-card:hover .service-icon {
    transform: none;
}

.service-preview-card .service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    filter: none;
}

.service-preview-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.service-preview-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Einheitliche Hero-Features für alle Seiten */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-features .feature-item i {
    color: var(--success-color);
    font-size: 1rem;
}


/* Stats Section - Kompakt */
.stats-compact {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats-compact::before {
    display: none;
}

.stats-grid-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 100%;
}

@media (max-width: 768px) {
    .stats-grid-compact {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-compact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
}

.stat-item-compact {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-item-compact:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.stat-number-compact {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    filter: none;
}

.stat-label-compact {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: var(--border-color);
    opacity: 1;
    border-radius: 0;
}

.stat-item {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.stat-icon i {
    font-size: 1.375rem;
    color: var(--text-light);
}

.stat-content {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Expertise Section - Bessere Struktur */
.expertise-compact {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.section-header-compact {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 100%;
}

.section-title-compact {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    max-width: 100%;
    padding: 0 1rem;
    line-height: 1.2;
}

.section-subtitle-compact {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 0 1rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-header-compact {
        margin-bottom: 2.5rem;
    }
    
    .section-title-compact {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0 0.5rem;
        margin-bottom: 0.875rem;
    }
    
    .section-subtitle-compact {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.65;
    }
}

.expertise-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .expertise-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .expertise-grid-compact {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
}

/* Einheitliche Section-Hintergründe */
section:nth-child(even):not(.hero):not(.cta) {
    background: var(--bg-secondary);
}

section:nth-child(odd):not(.hero):not(.cta) {
    background: var(--bg-primary);
}

/* Einheitliche Section-Styles für alle Seiten */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Einheitliche Section-Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    color: var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Einheitliche Card-Styles für alle Seiten */
.expertise-card {
    background: var(--bg-card);
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.expertise-card::after {
    display: none;
}

@media (max-width: 768px) {
    .expertise-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .expertise-card {
        padding: 1.25rem;
    }
}

.expertise-card::before {
    display: none;
}

.expertise-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0;
}

.card-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.expertise-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    flex-grow: 1;
    font-weight: 400;
    text-align: center;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.card-icon::before {
    display: none;
}

.expertise-card:hover .card-icon {
    transform: none;
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    filter: none;
    transition: var(--transition);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

.expertise-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
}

.card-features {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    text-align: left;
    max-width: 90%;
    width: 100%;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    justify-content: flex-start;
}

.card-features i {
    color: var(--success-color);
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Solutions Section - Klarere Darstellung */
.solutions {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Einheitliche Card-Hover-Effekte */
.expertise-card,
.testimonial-card,
.contact-card,
.download-item,
.about-card {
    transition: var(--transition);
}

.expertise-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.download-item:hover,
.about-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.solutions-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse .solution-content {
    direction: ltr;
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.solution-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.solution-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.solution-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.solution-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Process Section - Übersichtlicher */
.process {
    padding: 100px 0;
    background: var(--bg-primary);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-marker {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonials Section - Kompakt */
.testimonials {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 1rem;
    }
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    display: none;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1.125rem;
    filter: none;
    animation: none;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-rating i {
    transform: none;
}

.testimonial-rating i:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-rating i:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-rating i:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-rating i:nth-child(5) {
    animation-delay: 0.8s;
}

blockquote {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 100%;
    word-wrap: break-word;
    font-weight: 400;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    blockquote {
        font-size: 1.125rem;
        line-height: 1.7;
    }
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    transform: none;
    box-shadow: none;
}

.author-avatar i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section - Kompakt */
.cta {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.cta::before {
    display: none;
}

@keyframes cta-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.cta::after {
    display: none;
}

@keyframes cta-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.2);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 0 0.5rem;
    }
}

.cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    max-width: 100%;
    padding: 0 1rem;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 100%;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
        padding: 0 0.5rem;
    }
    
    .cta p {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
}

.cta-feature:hover {
    transform: translateY(-1px);
    border-color: var(--primary-color);
    box-shadow: none;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1rem;
    filter: none;
}

.cta-feature span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}


.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

.cta .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta .btn-outline {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta .btn-outline:hover {
    background: var(--bg-card);
}

/* Schnellkontakt - Lead-Gen */
.quick-contact {
    padding: 2.5rem 0 0;
    background: var(--bg-primary);
}

.quick-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.quick-contact-text h2 {
    margin-bottom: 0.75rem;
}

.quick-contact-text p {
    margin-bottom: 1rem;
}

.quick-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.quick-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-contact-item i {
    color: var(--success-color);
}

.quick-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 220px;
}

.quick-contact-actions .btn {
    justify-content: center;
}

@media (max-width: 900px) {
    .quick-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .quick-contact-actions {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .quick-contact-card {
        padding: 2rem 1.5rem;
    }

    .quick-contact-actions {
        flex-direction: column;
    }
}

/* Footer - Professioneller */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--text-light);
    padding: 60px 0 0;
    position: relative;
    box-shadow: 0 -8px 32px rgba(30,41,59,0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 8px 32px rgba(30,41,59,0.08);
    padding: 48px 32px 32px 32px;
}

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

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(30,41,59,0.12);
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.1rem;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-info {
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.2rem;
    color: #cbd5e1;
    font-size: 1.05rem;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-info i {
    color: #38bdf8;
    width: 22px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 2px 10px rgba(59,130,246,0.12);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #fff;
    border-color: #38bdf8;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 24px rgba(59,130,246,0.18);
}

.footer-bottom {
    border-top: 1.5px solid #334155;
    padding: 1.5rem 0 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(17,24,39,0.98);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 2px 12px rgba(30,41,59,0.07);
}

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 0;
    font-size: 0.98rem;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.01rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-content {
        padding: 32px 10px 24px 10px;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 24px 4vw 16px 4vw;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.7rem;
        border-radius: 0 0 16px 16px;
    }
}

/* Einheitliche Animationen für alle Seiten */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Einheitliche Section-Abstände - Kompakt */
section {
    padding: 60px 0;
}

section.hero {
    padding: 100px 0 60px;
}

section.cta {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    section.hero {
        padding: 80px 0 50px;
    }
    
    section.cta {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    section.hero {
        padding: 70px 0 40px;
    }
    
    section.cta {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Einheitliche Container-Abstände */
.section-header {
    margin-bottom: 4rem;
}

.section-header + * {
    margin-top: 0;
}

/* ============================================
   UMFASSENDE MOBILE OPTIMIERUNGEN
   ============================================ */

/* Basis-Mobile-Optimierungen */
@media (max-width: 768px) {
    /* Header optimieren */
    .header {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-container {
        padding: 0 1rem;
        height: 70px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo-image {
        height: 40px;
        max-width: 100%;
    }
    
    /* Navigation Mobile - Modernes Design */
    .nav {
        position: relative;
        z-index: 9999;
    }
    
    /* Overlay Hintergrund wenn Menü offen */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
        pointer-events: none;
    }
    
    .nav.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    /* Navigation Mobile - Nav-List */
    .nav .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        z-index: 9999 !important;
        padding: 1.5rem 1rem 2rem 1rem;
        gap: 0.5rem;
        align-items: stretch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, 
                    visibility 0.3s ease,
                    transform 0.3s ease;
        pointer-events: none;
    }
    
    /* Navbar aktiv - Menü anzeigen */
    .nav.active .nav-list {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        z-index: 9999 !important;
        pointer-events: all !important;
    }
    
    .nav-list li {
        width: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .nav.active .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav.active .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav.active .nav-list li:nth-child(2) {
        transition-delay: 0.15s;
    }
    
    .nav.active .nav-list li:nth-child(3) {
        transition-delay: 0.2s;
    }
    
    .nav.active .nav-list li:nth-child(4) {
        transition-delay: 0.25s;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        padding: 1.125rem 1.25rem;
        font-size: 1.0625rem;
        font-weight: 500;
        width: 100%;
        text-align: left;
        white-space: normal;
        border-radius: var(--radius-lg);
        margin: 0;
        min-height: 52px;
        box-sizing: border-box;
        color: var(--text-primary);
        background: transparent;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: transform 0.2s ease;
        border-radius: 0 4px 4px 0;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-secondary);
        color: var(--primary-color);
        transform: translateX(4px);
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.cta-button {
        margin: 0.75rem 0 0 0;
        text-align: center;
        justify-content: center;
        background: var(--gradient-primary);
        color: var(--text-light);
        padding: 1.125rem 1.5rem;
        border-radius: var(--radius-xl);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        font-weight: 600;
        min-height: 56px;
    }
    
    .nav-link.cta-button::before {
        display: none;
    }
    
    .nav-link.cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        background: var(--gradient-warm);
    }
    
    .nav-link.cta-button.active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }
    
    /* Mobile Menu Toggle Button - Modernisiert */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 10000 !important;
        padding: 0.625rem;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: background 0.2s ease;
        position: relative;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--bg-secondary);
    }
    
    .mobile-menu-toggle span {
        width: 26px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .mobile-menu-toggle.active {
        background: var(--bg-secondary);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--primary-color);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--primary-color);
    }
    
    /* Container optimieren */
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Main Content */
    .main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        padding-top: 0;
        box-sizing: border-box;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 90px 0 50px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        margin-top: 0;
    }
    
    /* Hero Content Compact Mobile */
    .hero-content-compact {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-main {
        order: 0;
    }
    
    .hero-services-preview {
        order: 1;
        margin-top: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem; /* Reduziertes Padding für mobile */
    }

    .hero-visual {
        order: -1;
    }

    .tech-sphere {
        width: 300px; /* Kleinere Sphere auf mobilen Geräten */
        height: 300px;
    }

    .float-item {
        display: none;
    }

    .ring-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .ring-3 {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
    }

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

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .solution-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-item.reverse {
        direction: ltr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content-compact {
        gap: 2rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content-compact:has(.hero-main:only-child),
    .hero-content-compact:not(:has(.hero-services-preview)) {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-main {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-services-preview {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .stats-grid-compact {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }
    
    .phone-card-prominent {
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-phone-prominent {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Header noch kompakter */
    .header-container {
        padding: 0 0.875rem;
        height: 65px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav::before {
        top: 65px;
    }
    
    .nav-list {
        top: 65px;
        padding: 1.25rem 0.875rem 1.75rem 0.875rem;
        max-height: calc(100vh - 65px);
        gap: 0.375rem;
    }
    
    .nav-link {
        padding: 1rem 1.125rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: var(--radius-md);
    }
    
    .nav-link.cta-button {
        padding: 1rem 1.25rem;
        min-height: 52px;
        margin-top: 0.5rem;
        border-radius: var(--radius-lg);
    }
    
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    /* Container noch kompakter */
    .container {
        padding: 0 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Hero Section noch kompakter */
    .hero {
        padding: 80px 0 40px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Buttons kleiner */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 44px;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    /* Hero Actions */
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* CTA Actions */
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Contact Actions */
    .contact-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .contact-actions .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content-compact {
        padding: 0;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content-compact:has(.hero-main:only-child),
    .hero-content-compact:not(:has(.hero-services-preview)) {
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .hero-main {
        gap: 1.125rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .hero-services-preview {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-heading {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
        line-height: 1.3;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-description {
        font-size: 0.9375rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-phone-prominent {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 1.5rem auto;
    }
    
    .phone-card-prominent {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 1rem;
    }
    
    .hero-actions {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-features-compact {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .service-preview-card {
        padding: 1.125rem;
    }
    
    .service-preview-card h3 {
        font-size: 0.9375rem;
    }
    
    .service-preview-card p {
        font-size: 0.75rem;
    }

    .expertise-card {
        padding: 1.25rem;
    }
    
    .expertise-card p {
        font-size: 0.875rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .expertise-compact,
    .testimonials,
    .cta {
        padding: 40px 0;
    }

    .expertise-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }
}

/* About Page Specific Styles - Kompakt */
.about-personal-compact {
    padding: 50px 0;
    background: var(--bg-secondary);
}

.about-personal-compact p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-personal-compact {
        padding: 40px 0;
    }
    
    .about-personal-compact p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.about-personal-compact p:last-child {
    margin-bottom: 0;
}

.about-grid-compact {
    padding: 50px 0;
    background: var(--bg-primary);
}

.about-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .about-grid-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .about-grid-inner {
        gap: 1rem;
    }
}

.about-card-compact {
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid var(--border-light);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.about-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.about-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.about-card-compact i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.about-card-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.about-trust-compact {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(8, 145, 178, 0.04) 100%);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
}

@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-content {
        padding: 1.25rem;
    }
}

.trust-content i {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.trust-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Neue kompakte About-Styles */
.about-content-compact {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-content-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-text-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-text-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

/* Über-uns Seite - Einheitliches Design */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-secondary);
    padding: 120px 0 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}
.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.about-hero-particles {
    display: none;
}
.about-hero-grid {
    display: none;
}
.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto 4rem auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}
.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: none;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    display: none;
}
.about-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: var(--primary-color);
}
.about-card:hover::before {
    transform: none;
}
.about-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.about-card-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.about-card-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}
.about-personal,
.about-trust {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}
.about-personal strong {
    color: var(--primary-color);
    font-weight: 600;
}
.about-trust {
    background: var(--bg-secondary);
    border-left: 3px solid var(--primary-color);
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.about-trust i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.about-final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 0 1.5rem;
}
@media (max-width: 900px) {
    .about-grid { gap: 1.5rem; }
}
@media (max-width: 700px) {
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-personal, .about-trust { padding: 2rem 1.5rem; font-size: 1rem; }
}
@media (max-width: 480px) {
    .about-hero { padding: 80px 0 40px; min-height: 50vh; }
    .about-personal, .about-trust { padding: 1.5rem 1rem; }
    .about-card { padding: 2rem 1.5rem; }
}
@media (max-width: 768px) {
    .about-hero { padding: 100px 0 60px; min-height: 60vh; }
}

@media (max-width: 768px) {
    .about-content-compact {
        padding: 3rem 0;
    }
    
    .about-text-box p {
        font-size: 1.0625rem;
        line-height: 1.75;
    }
    
    .about-values-compact,
    .about-services-compact {
        padding: 3rem 0;
    }
    
    .contact-methods-compact {
        padding: 3rem 0;
    }
    
    .expertise-compact {
        padding: 3.5rem 0;
    }
}

.about-values-compact {
    padding: 5.5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.about-values-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.value-card-compact {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-warm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(37, 99, 235, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.value-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-compact:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: var(--transition);
}

.value-card-compact:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--text-light);
}

.value-card-compact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.value-card-compact p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-values-compact {
        padding: 2.5rem 0;
    }
    
    .values-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

.about-services-compact {
    padding: 5.5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-services-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card-compact {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.25rem;
    text-align: center;
    border: 2px solid var(--border-warm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(37, 99, 235, 0.05);
}

.service-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-compact:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.service-icon-compact {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.service-card-compact:hover .service-icon-compact {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-icon-compact i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card-compact h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card-compact p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 768px) {
    .about-services-compact {
        padding: 2.5rem 0;
    }
    
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

.trust-quote-compact {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(8, 145, 178, 0.05) 100%);
    position: relative;
}

.trust-quote-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(8, 145, 178, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3.5rem;
    background: var(--gradient-card);
    border-radius: 24px;
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: quote-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes quote-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.quote-box i {
    color: var(--primary-color);
    font-size: 3.5rem;
    opacity: 0.25;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
    animation: quote-icon-float 4s ease-in-out infinite;
}

@keyframes quote-icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.quote-box p {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    font-style: italic;
    font-weight: 400;
}

.quote-author {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .trust-quote-compact {
        padding: 3rem 0;
    }
    
    .quote-box {
        padding: 2.5rem 2rem;
    }
    
    .quote-box p {
        font-size: 1.25rem;
        line-height: 1.75;
    }
    
    .quote-box i {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-author {
        font-size: 1rem;
    }
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-circle {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-circle {
    background: var(--bg-card);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-circle:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-circle .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-circle .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.story-icon i {
    font-size: 1.25rem;
    color: var(--text-light);
}

.story-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.story-timeline {
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-grid-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-circle {
        gap: 1rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-circle .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-circle .stat-label {
        font-size: 0.7rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Contact Page Specific Styles */
.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.contact-icon-large:nth-child(1) {
    animation-delay: 0s;
}

.contact-icon-large:nth-child(2) {
    animation-delay: 2s;
}

.contact-icon-large:nth-child(3) {
    animation-delay: 4s;
}

.contact-icon-large i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-icon-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Contact Info Section */
.contact-info {
    padding: 50px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1rem;
    }
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--border-light);
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    pointer-events: none;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

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

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    line-height: 1;
    display: inline-block;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: ring 3s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-details {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    max-width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .contact-number {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.875rem;
    }
}

.contact-number i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.025em;
    word-break: break-word;
}

@media (max-width: 768px) {
    .contact-detail {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .contact-detail {
        font-size: 1rem;
        text-align: center;
    }
}

.availability-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.availability-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 100%;
}

@media (max-width: 480px) {
    .availability-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.625rem;
    }
}

.availability-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.availability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.availability-icon i {
    color: #10b981;
    font-size: 0.875rem;
}

.availability-item.emergency .availability-icon {
    background: rgba(245, 158, 11, 0.1);
}

.availability-item.emergency .availability-icon i {
    color: #f59e0b;
}

.availability-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.availability-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.availability-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 6px;
    border-left: 3px solid rgba(59, 130, 246, 0.2);
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 480px) {
    .contact-note {
        flex-direction: column;
        text-align: center;
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
}

.contact-note i {
    color: #3b82f6;
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-btn {
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    border: 1px solid var(--primary-dark);
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: none;
}

.contact-btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
    color: white;
}

.btn-ripple {
    display: none;
}

.contact-btn:hover .btn-ripple {
    display: none;
}


/* Card-specific styles */
.phone-card .card-icon {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.phone-card .card-icon i {
    color: white;
    position: relative;
    transform: translate(1px, 1px);
}

.phone-card .contact-btn {
    background: #10b981;
    box-shadow: none;
}

.phone-card .contact-btn:hover {
    box-shadow: none;
}

.email-card .card-icon {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.email-card .card-icon i {
    color: white;
    position: relative;
    transform: translate(0px, 1px);
}

.email-card .contact-btn {
    background: #3b82f6;
    box-shadow: none;
}

.email-card .contact-btn:hover {
    box-shadow: none;
}

.visit-card .card-icon {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.visit-card .card-icon i {
    color: #7c3aed;
}

.visit-card .contact-btn {
    background: #7c3aed;
    box-shadow: none;
}

.visit-card .contact-btn:hover {
    box-shadow: none;
}

.availability {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Contact Form Section - Kompakt */
.contact-form-section {
    padding: 5.5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
    max-width: 100%;
}

@media (max-width: 968px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.form-info {
    padding-right: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Neue kompakte Contact-Styles */
.contact-methods-compact {
    padding: 5.5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.contact-methods-compact::before {
    display: none;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-method-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.contact-method-card::before {
    display: none;
}

.contact-method-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-method-card:hover::before {
    transform: none;
}

.method-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.75rem;
    background: rgba(47, 111, 174, 0.1);
    border: 1px solid rgba(47, 111, 174, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: var(--transition);
}

.contact-method-card:hover .method-icon {
    transform: none;
    box-shadow: none;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-method-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.method-detail {
    margin-bottom: 1.5rem;
}

.method-detail a,
.method-detail span {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.method-detail a:hover {
    color: var(--primary-dark);
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    width: 100%;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-method-card .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-methods-compact {
        padding: 2.5rem 0;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.form-info-compact {
    padding-right: 2rem;
}

@media (max-width: 968px) {
    .form-info-compact {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

.form-benefits-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--success-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1.5px solid var(--border-light);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Verhindert Zoom auf iOS */
        padding: 0.875rem 1rem;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

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

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

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.75rem;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-info {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-number {
        padding: 0.75rem;
    }
    
    .contact-detail {
        font-size: 1.125rem;
    }
    
    .availability-item {
        padding: 0.5rem;
    }
    
    .availability-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-note {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .contact-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-icon-large {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-large i {
        font-size: 1.25rem;
    }
}

/* FAQ Page Specific Styles */
.faq-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-icon-large {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.faq-icon-large:nth-child(1) {
    animation-delay: 0s;
}

.faq-icon-large:nth-child(2) {
    animation-delay: 2s;
}

.faq-icon-large:nth-child(3) {
    animation-delay: 4s;
}

.faq-icon-large i {
    font-size: 2rem;
    color: var(--primary-color);
}

.faq-icon-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* FAQ Search Section */
.faq-search {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-search .container {
    position: relative;
    z-index: 1;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 2;
}

.search-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 1.1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-stats {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Categories Section - Kompakt */
.faq-categories {
    padding: 4.5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.faq-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-categories .container {
    position: relative;
    z-index: 1;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    max-width: 100%;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .category-tabs {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
    }
    
    .category-tab {
        width: 100%;
        justify-content: center;
    }
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .category-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.category-tab i {
    font-size: 1rem;
}

/* FAQ Content Section - Kompakt */
.faq-content {
    padding: 4.5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-content .container {
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1.5px solid var(--border-light);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
    max-width: calc(100% - 40px);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 0.9375rem;
    }
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .faq-answer p {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
}

/* FAQ Details */
.faq-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
}

/* FAQ Benefits */
.faq-benefits h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-benefits ul {
    list-style: none;
    padding-left: 0;
}

.faq-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.faq-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Security Layers */
.security-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.layer-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.layer-icon i {
    color: var(--text-light);
    font-size: 1rem;
}

.layer-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.layer-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* FAQ Timeline */
.faq-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Pricing Models */
.pricing-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-model {
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    text-align: center;
}

.pricing-model h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-model p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.price-info {
    margin-top: 1rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Consultation Benefits */
.consultation-benefits h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.consultation-benefits ul {
    list-style: none;
    padding-left: 0;
}

.consultation-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.consultation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-icons {
        gap: 1rem;
    }
    
    .faq-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .faq-icon-large i {
        font-size: 1.5rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .security-layers {
        grid-template-columns: 1fr;
    }
    
    .pricing-models {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .search-container input {
        padding: 0.875rem 1rem 0.875rem 2.5rem;
        font-size: 1rem;
    }
    
    .search-stats {
        display: none;
    }
    
    .faq-icon-large {
        width: 50px;
        height: 50px;
    }
    
    .faq-icon-large i {
        font-size: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
}

/* Calculator Page Styles */
.calculator-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.calculator-icons {
    display: flex;
    gap: 40px;
    align-items: center;
}

.calc-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.calc-icon-large:nth-child(2) {
    animation-delay: 1s;
}

.calc-icon-large:nth-child(3) {
    animation-delay: 2s;
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: #f8fafc;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-header p {
    color: #64748b;
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Customer Type Selector */
.customer-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-container {
    position: relative;
    cursor: pointer;
}

.radio-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.radio-container input[type="radio"]:checked + .radio-content {
    border-color: #3b82f6;
    background: #eff6ff;
}

.radio-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.radio-text {
    display: flex;
    flex-direction: column;
}

.radio-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.radio-description {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

/* Service Options */
.service-options {
    margin-top: 24px;
}

.service-description {
    margin-top: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.package-details {
    margin-top: 8px;
    padding: 12px;
    background: #f0f9ff;
    border-radius: 8px;
    font-size: 13px;
    color: #0369a1;
    line-height: 1.5;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-content {
    flex: 1;
}

.checkbox-label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 4px;
}

.checkbox-description {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.price-tag {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Calculator Result */
.calculator-result {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 32px;
}

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

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.result-header p {
    color: #64748b;
    font-size: 14px;
}

.total-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    color: white;
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.price-breakdown {
    margin-bottom: 24px;
}

.no-selection {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 20px;
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.info-item i {
    color: #3b82f6;
}

/* Pricing Info Section */
.pricing-info {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-header {
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.card-content p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
}

.card-features i {
    color: #10b981;
    font-size: 12px;
}

/* Responsive Design for Calculator */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .customer-type-selector {
        grid-template-columns: 1fr;
    }
    
    .calculator-icons {
        gap: 20px;
    }
    
    .calc-icon-large {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.minimal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.download-icons {
    display: flex;
    gap: 30px;
    animation: float 6s ease-in-out infinite;
}

.download-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.download-icon-large:nth-child(2) {
    animation-delay: 0.5s;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.download-icon-large:nth-child(3) {
    animation-delay: 1s;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Download Controls */
.download-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-controls {
    display: flex;
    gap: 15px;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    color: #1e293b;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.download-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.category-tab:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.category-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.category-tab i {
    font-size: 1.1rem;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 5px;
}

.category-tab:not(.active) .category-count {
    background: #f1f5f9;
    color: #64748b;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.download-card.featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.download-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.download-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.download-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.featured-badge i {
    font-size: 0.7rem;
}

.download-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.download-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-tag i {
    font-size: 0.7rem;
    color: #3b82f6;
}

.download-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 0.9rem;
}

.meta-item i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.download-actions {
    display: flex;
    gap: 10px;
}

.download-actions .btn {
    flex: 1;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.download-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.preview-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.modal-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.preview-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.preview-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.preview-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.preview-feature i {
    color: #3b82f6;
    font-size: 0.8rem;
}

.preview-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fef3c7;
    color: #92400e;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.preview-note i {
    margin-top: 2px;
    font-size: 1rem;
}

.modal-footer {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.modal-footer .btn {
    flex: 1;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 12px;
}

.minimal-footer {
    background: #10131a;
    color: #e5e7eb;
    padding: 0;
    border-top: 1.5px solid #23263a;
    box-shadow: 0 -2px 24px rgba(16,19,26,0.12);
    font-size: 1.05rem;
}
.minimal-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    padding: 32px 0 10px 0;
    text-align: center;
}
.footer-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 1.15rem;
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
    font-size: 1.05rem;
    opacity: 0.92;
}
.footer-contact i {
    color: #38bdf8;
    font-size: 1.1rem;
}
.footer-socials {
    display: flex;
    gap: 0.7rem;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #23263a;
    border-radius: 50%;
    color: #e5e7eb;
    background: none;
    font-size: 1.15rem;
    transition: all 0.2s;
    margin: 0 2px;
}
.footer-social-link:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    background: #181c25;
}
.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.5rem 0 0.2rem 0;
}
.footer-links-row a {
    color: #a1a1aa;
    font-size: 0.98rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links-row a:hover {
    color: #38bdf8;
    text-decoration: underline;
}
.footer-copyright {
    text-align: center;
    color: #52525b;
    font-size: 0.93rem;
    padding-bottom: 18px;
    margin-top: 0.2rem;
}
@media (max-width: 900px) {
    .footer-row {
        gap: 1.1rem;
        padding: 28px 0 8px 0;
        font-size: 0.98rem;
    }
}
@media (max-width: 600px) {
    .minimal-footer .container {
        padding: 0 1rem;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 0.75rem;
        padding: 20px 0 8px 0;
        align-items: center;
    }
    
    .footer-brand {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-contact {
        font-size: 0.875rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .footer-socials {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
        align-items: center;
    }
    
    .footer-links-row a {
        font-size: 0.875rem;
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-copyright {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem 1rem 1rem;
        text-align: center;
        line-height: 1.5;
    }
}

/* ============================================
   ERWEITERTE MOBILE OPTIMIERUNGEN
   ============================================ */

/* Footer Mobile Optimierung */
@media (max-width: 768px) {
    .minimal-footer {
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .minimal-footer .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-row {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 24px 0 8px 0;
        font-size: 0.9rem;
    }
    
    .footer-brand {
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .footer-contact {
        font-size: 0.875rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.375rem;
    }
    
    .footer-socials {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .footer-links-row {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.75rem 0;
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .footer-links-row a {
        font-size: 0.875rem;
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-copyright {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem 1rem 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .minimal-footer .container {
        padding: 0 0.875rem;
    }
    
    .footer-row {
        gap: 0.75rem;
        padding: 20px 0 6px 0;
    }
    
    .footer-brand {
        font-size: 0.9375rem;
    }
    
    .footer-contact {
        font-size: 0.8125rem;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .footer-contact i {
        font-size: 0.875rem;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.625rem 0;
    }
    
    .footer-links-row a {
        font-size: 0.8125rem;
        width: 100%;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
        padding: 0.625rem 0.875rem 0.875rem 0.875rem;
    }
}

/* Allgemeine Mobile Verbesserungen */
@media (max-width: 768px) {
    /* Bessere Touch-Targets */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Text-Größen optimieren */
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        line-height: 1.2;
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        line-height: 1.4;
    }
    
    p {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
    
    /* Section Padding reduzieren */
    section {
        padding: 40px 0 !important;
    }
    
    section.hero {
        padding: 80px 0 40px !important;
    }
    
    /* Cards optimieren */
    .expertise-card,
    .testimonial-card,
    .service-preview-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    /* Grids zu einer Spalte */
    .expertise-grid,
    .testimonials-grid,
    .stats-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Hero Badge */
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
    
    /* Section Headers */
    .section-header,
    .section-header-compact {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title,
    .section-title-compact {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle,
    .section-subtitle-compact {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    /* Noch kompakter */
    h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    h2 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }
    
    h3 {
        font-size: clamp(1.125rem, 5vw, 1.375rem);
    }
    
    p {
        font-size: 0.875rem;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    section.hero {
        padding: 70px 0 30px !important;
    }
    
    .expertise-card,
    .testimonial-card,
    .service-preview-card {
        padding: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4375rem 0.75rem;
    }
    
    .section-header,
    .section-header-compact {
        margin-bottom: 1.5rem;
    }
    
    .section-title,
    .section-title-compact {
        font-size: clamp(1.25rem, 7vw, 1.75rem);
    }
    
    .section-subtitle,
    .section-subtitle-compact {
        font-size: 0.875rem;
    }
}

/* Verhindert horizontales Scrollen global */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Verhindert Text-Overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Links brechen um */
    a[href^="http"],
    a[href^="mailto:"] {
        word-break: break-all;
        overflow-wrap: break-word;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 32, 38, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-banner[style*="display: flex"] {
  opacity: 1;
}
.cookie-banner-content {
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,32,38,0.12);
  max-width: 420px;
  width: 90vw;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}
.cookie-banner-header i {
  color: #1e90ff;
  font-size: 1.5rem;
}
.cookie-banner-content p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}
.cookie-banner-content a {
  color: #1e90ff;
  text-decoration: underline;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 400;
  color: #222;
}
.cookie-option input[type="checkbox"] {
  accent-color: #1e90ff;
  width: 1.1em;
  height: 1.1em;
}
.cookie-option small {
  color: #888;
  font-weight: 400;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  min-width: 120px;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.5em 1.1em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cookie-actions .btn-primary {
  background: #1e90ff;
  color: #fff;
  border: none;
}
.cookie-actions .btn-primary:hover {
  background: #176dc1;
}
.cookie-actions .btn-outline {
  background: #fff;
  color: #1e90ff;
  border: 1.5px solid #1e90ff;
}
.cookie-actions .btn-outline:hover {
  background: #eaf4ff;
}
.cookie-actions .btn-secondary {
  background: #f5f5f5;
  color: #222;
  border: 1.5px solid #e0e0e0;
}
.cookie-actions .btn-secondary:hover {
  background: #e0e0e0;
}
@media (max-width: 600px) {
  .cookie-banner-content {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    font-size: 0.98rem;
  }
  .cookie-banner-header {
    font-size: 1.05rem;
  }
  .cookie-actions .btn {
    min-width: 90px;
    font-size: 0.98rem;
    padding: 0.45em 0.7em;
  }
}

/* Process Result Pages */
.process-result,
.contact-result {
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.result-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.success-message,
.error-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-message {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    border: 2px solid #4ade80;
}

.error-message {
    background: linear-gradient(135deg, #fff8f8 0%, #f8e8e8 100%);
    border: 2px solid #f87171;
}

.success-icon,
.error-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.success-icon {
    color: #22c55e;
}

.error-icon {
    color: #ef4444;
}

.success-message h1,
.error-message h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.success-message p,
.error-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.next-steps li i {
    color: #22c55e;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.error-details {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: #dc2626;
    font-weight: 500;
}

.alternative-contact {
    margin: 40px 0;
}

.alternative-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-option i {
    color: #3b82f6;
    margin-right: 15px;
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    min-width: 200px;
}

/* Responsive Design für Process Result */
@media (max-width: 768px) {
    .process-result {
        padding: 100px 20px 60px;
    }
    
    .success-message,
    .error-message {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .success-message h1,
    .error-message h1 {
        font-size: 2rem;
    }
    
    .success-icon,
    .error-icon {
        font-size: 60px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .next-steps li,
    .contact-option {
        padding: 12px 15px;
    }
}

/* ============================================
   Datenschutz & Impressum Seiten Styles
   ============================================ */

/* Privacy & Impressum Sections */
.privacy-section,
.impressum-section {
    padding: 60px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.privacy-content,
.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.legal-section {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul,
.info-box ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.info-box li {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-box li:last-child {
    margin-bottom: 0;
}

.info-box strong {
    color: var(--text-primary);
    font-weight: 600;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: underline;
    word-break: break-all;
}

.info-box a:hover {
    color: var(--primary-dark);
}

.info-box small {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.legal-info-grid .info-box {
    margin-bottom: 0;
}

.legal-info-grid .info-box h3 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.legal-info-grid .info-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0 0;
}

.legal-info-grid .info-box li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.legal-info-grid .info-box li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.legal-info-grid .info-box li:last-child {
    margin-bottom: 0;
}

/* Privacy & Impressum Visual Elements */
.privacy-visual,
.impressum-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.privacy-icons,
.legal-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.privacy-icon-large,
.legal-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.privacy-icon-large:nth-child(2),
.legal-icon-large:nth-child(2) {
    animation-delay: 1s;
}

.privacy-icon-large:nth-child(3),
.legal-icon-large:nth-child(3) {
    animation-delay: 2s;
}

/* Contact Section für Legal Pages */
.contact-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.contact-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-actions .btn {
    min-width: 180px;
    flex: 1;
    max-width: 250px;
}

/* ============================================
   Mobile Styles für Datenschutz & Impressum
   ============================================ */

@media (max-width: 768px) {
    .privacy-section,
    .impressum-section {
        padding: 40px 0;
    }
    
    .privacy-content,
    .impressum-content {
        padding: 0 1rem;
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding: 0;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .info-box {
        padding: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .info-box p {
        font-size: 0.9375rem;
        line-height: 1.65;
    }
    
    .info-box ul,
    .info-box ol {
        padding-left: 1.25rem;
        font-size: 0.9375rem;
    }
    
    .legal-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .legal-info-grid .info-box {
        width: 100%;
        max-width: 100%;
    }
    
    .privacy-visual,
    .impressum-visual {
        height: 150px;
    }
    
    .privacy-icons,
    .legal-icons {
        gap: 1.5rem;
    }
    
    .privacy-icon-large,
    .legal-icon-large {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
    }
    
    .contact-actions .btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .privacy-section,
    .impressum-section {
        padding: 30px 0;
    }
    
    .privacy-content,
    .impressum-content {
        padding: 0 0.875rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .legal-section h3 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .info-box {
        padding: 1rem;
        margin-bottom: 0.75rem;
        border-radius: var(--radius-md);
    }
    
    .info-box p {
        font-size: 0.875rem;
        line-height: 1.6;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .info-box ul,
    .info-box ol {
        padding-left: 1rem;
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .info-box li {
        margin-bottom: 0.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .info-box strong {
        font-size: 0.9375rem;
    }
    
    .info-box a {
        word-break: break-all;
        overflow-wrap: break-word;
    }
    
    .info-box small {
        font-size: 0.8125rem;
    }
    
    .legal-info-grid {
        gap: 1rem;
    }
    
    .legal-info-grid .info-box h3 {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .legal-info-grid .info-box ul {
        margin-top: 0.625rem;
    }
    
    .legal-info-grid .info-box li {
        font-size: 0.875rem;
        margin-bottom: 0.625rem;
        flex-wrap: wrap;
    }
    
    .legal-info-grid .info-box li i {
        font-size: 0.875rem;
    }
    
    .privacy-visual,
    .impressum-visual {
        height: 120px;
    }
    
    .privacy-icons,
    .legal-icons {
        gap: 1rem;
    }
    
    .privacy-icon-large,
    .legal-icon-large {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-content {
        padding: 0 0.875rem;
    }
    
    .contact-content h2 {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        margin-bottom: 0.875rem;
        line-height: 1.3;
    }
    
    .contact-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.65;
    }
    
    .contact-actions {
        gap: 0.75rem;
    }
    
    .contact-actions .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Sehr kleine Bildschirme (z.B. iPhone SE) */
@media (max-width: 360px) {
    .privacy-content,
    .impressum-content {
        padding: 0 0.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.125rem;
    }
    
    .legal-section h3 {
        font-size: 0.9375rem;
    }
    
    .info-box {
        padding: 0.875rem;
    }
    
    .info-box p {
        font-size: 0.8125rem;
    }
    
    .info-box ul,
    .info-box ol {
        font-size: 0.8125rem;
        padding-left: 0.875rem;
    }
    
    .contact-content h2 {
        font-size: 1.125rem;
    }
    
    .contact-content p {
        font-size: 0.875rem;
    }
}

/* Hero-Section für Datenschutz & Impressum optimieren */
.hero .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.hero .hero-text {
    flex: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero .hero-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .hero .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero .hero-text {
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .hero-heading {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.9375rem !important;
        line-height: 1.65 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero .hero-content {
        padding: 0 0.875rem;
        gap: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
    
    .hero-heading {
        font-size: clamp(1.25rem, 7vw, 1.75rem) !important;
        line-height: 1.3 !important;
    }
    
    .hero-description {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
}

/* Verhindert horizontales Scrollen */
@media (max-width: 768px) {
    .privacy-section,
    .impressum-section,
    .contact-section {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .privacy-content,
    .impressum-content,
    .contact-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .legal-section,
    .info-box,
    .legal-info-grid {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Verhindert, dass lange URLs oder Texte ausbrechen */
    .privacy-section *,
    .impressum-section *,
    .contact-section * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Spezielle Behandlung für Links */
    .privacy-section a,
    .impressum-section a,
    .contact-section a {
        word-break: break-all;
    }
    
    /* Spezielle Behandlung für E-Mail-Adressen und URLs */
    .info-box a[href^="mailto:"],
    .info-box a[href^="http"] {
        word-break: break-all;
        overflow-wrap: break-word;
    }
    
    /* Container auf mobilen Geräten */
    .privacy-section .container,
    .impressum-section .container,
    .contact-section .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .privacy-section .container,
    .impressum-section .container,
    .contact-section .container {
        padding: 0 0.875rem;
    }
}

@media (max-width: 360px) {
    .privacy-section .container,
    .impressum-section .container,
    .contact-section .container {
        padding: 0 0.75rem;
    }
}

/* Kontaktseite - Textfarbe für kompakte Karten */
.kontakt-card .contact-value,
.kontakt-card .contact-info,
.kontakt-card .contact-label,
.kontakt-card .contact-note {
    color: var(--text-primary);
}

/* Neues, schlichtes Layout */
.intro {
    padding: 120px 0 96px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.intro-visual {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.visual-hero {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.visual-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.visual-metrics div {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    text-align: center;
    background: var(--bg-secondary);
}

.visual-metrics strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.intro-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.intro-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.intro-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.intro-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.intro-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.intro-highlights div {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.6rem 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.intro-highlights i {
    color: var(--primary-color);
}

.intro-highlights .highlight-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.intro-highlights strong {
    font-size: 1.05rem;
    color: var(--primary-color);
}

.intro-highlights span {
    font-weight: 600;
    color: var(--text-secondary);
}

.intro-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.panel-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.panel-contact span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.panel-contact a {
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.panel-contact small {
    display: block;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.panel-stats strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.panel-stats span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.section {
    padding: 96px 0;
}

.section-neutral {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-head {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.section-head p {
    color: var(--text-secondary);
}

.section-note {
    margin-top: 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.service-grid,
.value-grid,
.steps,
.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card,
.value-grid > div,
.steps > div {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.service-card p,
.value-grid > div p,
.steps > div p {
    margin-bottom: 0;
}

.service-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.steps span {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.quote-grid blockquote {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 0;
}

.quote-grid blockquote span {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-cta {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.cta-box h2 {
    margin-bottom: 0.5rem;
}

/* Neuer Footer */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-meta {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    box-shadow: var(--shadow-md);
}

.sticky-cta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sticky-cta .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        width: calc(100% - 24px);
        justify-content: space-between;
        border-radius: var(--radius-xl);
    }

    .sticky-cta span {
        display: none;
    }
}

/* Seiten-Layouts */
.page-hero {
    padding: 96px 0 64px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.page-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    align-self: start;
}

.page-hero-aside {
    display: grid;
    gap: 1rem;
    align-self: start;
}

.hero-image {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-row {
    display: grid;
    gap: 0.2rem;
}

.page-hero-card .card-row span:first-child {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.page-hero-card a {
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
}

.page-section {
    padding: 88px 0;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.profile-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

@media (max-width: 600px) {
    .profile-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-photo {
        margin: 0 auto;
    }

    .form-visual {
        margin-left: 0;
    }

    .form-visual img {
        margin: 0 auto;
    }
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.list-check i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.form-visual {
    margin-top: 1.5rem;
    margin-left: -15rem;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.form-visual img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .page-hero-grid,
    .form-layout {
        grid-template-columns: 1fr;
    }
}

/* FAQ schlicht */
.faq-tools {
    display: grid;
    gap: 1.5rem;
}

.search-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
}

.search-container input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-primary);
}

.search-stats {
    color: var(--text-muted);
    font-size: 0.85rem;
    white-space: nowrap;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-tab {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.category-tab.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.faq-content .faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    background: var(--bg-card);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-answer {
    margin-top: 0.75rem;
}


@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .panel-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .intro-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .panel-stats {
        grid-template-columns: 1fr;
    }
}