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

:root {
    /* Verbesserte Farbpalette mit besserem Kontrast */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #475569;
    --accent-color: #0891b2;
    --success-color: #059669;
    --warning-color: #d97706;
    --error-color: #dc2626;
    
    /* Helle, lesbare Textfarben */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    /* Helle, saubere Hintergründe */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-dark: #1e293b;
    
    /* Subtile Rahmen */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Moderne Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --gradient-accent: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    
    /* Sanfte Schatten */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);
    
    /* Abgerundete Ecken */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Sanfte Übergänge */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 800;
}
h2 { 
    font-size: clamp(2rem, 4vw, 2.75rem); 
    font-weight: 700;
}
h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Verbesserte Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.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: 2px solid var(--border-color);
}

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

/* Header - Klarer und professioneller */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.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;
}

.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(--gradient-primary);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-left: 1rem;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-link.cta-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 - Klarer und fokussierter */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-text {
    max-width: 600px;
}

.hero-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: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

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

.hero-heading {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.tech-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-core {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    animation: pulse 3s ease-in-out infinite;
}

.sphere-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    border-color: rgba(37, 99, 235, 0.3);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-2 {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -140px;
    border-color: rgba(8, 145, 178, 0.2);
    animation-duration: 30s;
}

.ring-3 {
    width: 360px;
    height: 360px;
    top: -180px;
    left: -180px;
    border-color: rgba(37, 99, 235, 0.1);
    animation-duration: 35s;
    animation-direction: reverse;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    animation: float 6s ease-in-out infinite;
    min-width: 100px;
}

.float-item.security {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-item.performance {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.float-item.support {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.float-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Stats Section - Klarer und übersichtlicher */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

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

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

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

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

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

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

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

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

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

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.expertise-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%;
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

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

.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);
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.card-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

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

.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);
}

/* 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 - Bessere Darstellung */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.testimonial-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);
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.author-avatar i {
    color: var(--text-light);
    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 - Klarer Call-to-Action */
.cta {
    padding: 100px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

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

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

.cta-feature i {
    color: var(--success-color);
}

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

.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);
}

/* 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;
    }
}

/* Animationen */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 32px rgba(30,32,38,0.10);
        z-index: 1001;
        padding: 2rem 0 2rem 0;
        gap: 1.5rem;
        align-items: center; /* Zentriert die Reiter */
        justify-content: center;
    }
    .nav.active .nav-list {
        display: flex;
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .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 {
        padding-left: 4vw;
        padding-right: 4vw;
        box-sizing: border-box;
    }
    .hero-content {
        padding: 0 0.5rem; /* Noch weniger Padding auf sehr kleinen Bildschirmen */
    }
    .tech-sphere {
        width: 250px; /* Noch kleinere Sphere */
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-content {
        padding: 0 0.25rem; /* Minimales Padding */
    }

    .tech-sphere {
        width: 200px; /* Sehr kleine Sphere für sehr kleine Bildschirme */
        height: 200px;
    }

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

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

    .expertise,
    .solutions,
    .process,
    .testimonials,
    .cta {
        padding: 60px 0;
    }

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

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

/* About Page Specific Styles */
.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) {
    .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: 100px 0;
    background: var(--bg-secondary);
}

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

.contact-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);
    text-align: center;
}

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

.contact-detail {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.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 */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.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: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

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

.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;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px 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;
}

.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: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.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-icons {
        gap: 1rem;
    }
    
    .contact-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon-large 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;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .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: 60px 0;
    background: var(--bg-secondary);
}

.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 */
.faq-categories {
    padding: 80px 0;
    background: var(--bg-primary);
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.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: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.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 */
.faq-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.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 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* 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;
    }
}

/* Downloads Page Styles */
.download-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.download-stats .stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.download-stats .stat-icon {
    width: 60px;
    height: 60px;
    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;
    margin: 0 auto 20px;
}

.download-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.download-stats .stat-label {
    color: #64748b;
    font-weight: 500;
}

.downloads-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.downloads-visual {
    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;
}

.newsletter-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 40px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

.newsletter-features .feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Responsive Design für Downloads */
@media (max-width: 768px) {
    .download-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-container {
        max-width: none;
    }
    
    .filter-controls {
        justify-content: center;
    }
    
    .download-categories {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .preview-features {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .download-stats .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-stats .stat-item {
        padding: 20px;
    }
    
    .download-stats .stat-number {
        font-size: 2rem;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .download-features {
        flex-direction: column;
    }
    
    .download-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .newsletter-form input {
        border-radius: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 15px;
    }
}

.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) {
    .footer-row {
        flex-direction: column;
        gap: 0.7rem;
        padding: 22px 0 6px 0;
    }
    .footer-links-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* 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;
    }
}