/**
 * Hero Section Styles
 * Smart Web Solutions
 */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #030a15 0%, #061525 30%, #0a1f3d 60%, #0d2847 100%);
    overflow: hidden;
    padding: 96px 16px;
    transition: background 0.4s ease;
}

/* Light Theme Hero */
[data-theme="light"] .hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 30%, #FFFFFF 60%, #E8F4FD 100%);
}

/* Premium Background Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(75, 160, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 93, 184, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(75, 160, 255, 0.08) 0%, transparent 35%);
    pointer-events: none;
    z-index: 1;
}

/* Light Theme Hero Glow */
[data-theme="light"] .hero::before {
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(30, 93, 184, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(43, 127, 229, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(30, 93, 184, 0.05) 0%, transparent 35%);
}

/* Animated Tech Lines */
.hero-tech-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.8;
    z-index: 2;
}

.tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(75, 160, 255, 0.4) 50%, transparent 100%);
    box-shadow: 0 0 30px 4px rgba(75, 160, 255, 0.2);
    transform: rotate(-28deg);
    animation: none;
}

/* Light Theme Tech Lines */
[data-theme="light"] .tech-line {
    background: linear-gradient(90deg, transparent 0%, rgba(30, 93, 184, 0.25) 50%, transparent 100%);
    box-shadow: 0 0 30px 4px rgba(30, 93, 184, 0.1);
}

.tech-line:nth-child(1) {
    top: 12%;
    right: -15%;
    width: 1000px;
}

.tech-line:nth-child(2) {
    top: 28%;
    right: -10%;
    width: 1200px;
    opacity: 0.65;
}

.tech-line:nth-child(3) {
    top: 48%;
    right: -8%;
    width: 950px;
    opacity: 0.45;
}

.tech-line:nth-child(4) {
    top: 68%;
    right: -12%;
    width: 1100px;
    opacity: 0.35;
}

@keyframes techLineMove {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* REMOVED - Tech lines are static, not animated */

/* Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.65;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #fff 0%, #b3d0f7 100%);
    border-radius: 50%;
    box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.5), 0 0 2px #fff;
    animation: none;
}

/* Light Theme Particles */
[data-theme="light"] .particle {
    background: radial-gradient(circle, #1E5DB8 0%, #2B7FE5 100%);
    box-shadow: 0 0 12px 2px rgba(30, 93, 184, 0.3), 0 0 2px rgba(30, 93, 184, 0.5);
}

.particle:nth-child(odd) {
    /* REMOVED animation duration - particles are static */
}

.particle:nth-child(1) { top: 15%; left: 20%; }
.particle:nth-child(2) { top: 25%; left: 68%; opacity: 0.55; }
.particle:nth-child(3) { top: 42%; left: 38%; opacity: 0.68; }
.particle:nth-child(4) { top: 58%; left: 75%; opacity: 0.48; }
.particle:nth-child(5) { top: 72%; left: 28%; opacity: 0.58; }
.particle:nth-child(6) { top: 35%; left: 85%; opacity: 0.42; }
.particle:nth-child(7) { top: 65%; left: 55%; opacity: 0.52; }
.particle:nth-child(8) { top: 48%; left: 15%; opacity: 0.44; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* REMOVED - Particles are static, not animated */

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 960px;
    text-align: center;
    color: var(--color-text-primary);
    padding: 0 20px;
    transition: color 0.3s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, #a5e8f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

/* Light Theme Hero Title */
[data-theme="light"] .hero-title {
    background: linear-gradient(135deg, #0F172A 0%, #1E5DB8 60%, #2B7FE5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(30, 93, 184, 0.15));
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: -0.2px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Light Theme Hero Subtitle */
[data-theme="light"] .hero-subtitle {
    color: #475569;
    text-shadow: none;
}

/* Hero Eyebrow */
.hero-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-glow);
    margin-bottom: var(--space-lg);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(75, 160, 255, 0.1);
    border: 1px solid rgba(75, 160, 255, 0.2);
    border-radius: 100px;
}

[data-theme="light"] .hero-eyebrow {
    color: var(--color-primary-base);
    background: rgba(30, 93, 184, 0.08);
    border: 1px solid rgba(30, 93, 184, 0.15);
}

/* Hero Title Lines */
.hero-title-line {
    display: block;
}

.hero-title-highlight {
    display: block;
    color: var(--color-primary-glow);
    -webkit-text-fill-color: var(--color-primary-glow);
}

[data-theme="light"] .hero-title-highlight {
    color: var(--color-primary-base);
    -webkit-text-fill-color: var(--color-primary-base);
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefit svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-glow);
}

[data-theme="light"] .hero-benefit {
    color: var(--color-text-secondary);
}

[data-theme="light"] .hero-benefit svg {
    color: var(--color-primary-base);
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PREMIUM MAINTENANCE PAGE
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes progress-spin {
    from { stroke-dashoffset: 377; }
    to { stroke-dashoffset: 100; }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Main Container */
.maintenance-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.maintenance-content {
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 16px;
}

/* Logo Container mit Glow */
.maintenance-logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease-out, float 4s ease-in-out infinite 1s;
}

.logo-glow-ring {
    display: none;
}

.logo-pulse-ring {
    display: none;
}

.maintenance-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(30, 93, 184, 0.4));
    position: relative;
    z-index: 2;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

.status-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Gradient Text */
.maintenance-heading {
    margin: 0 0 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
    display: block;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e5db8 0%, #2b7fe5 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.maintenance-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 50px;
    max-width: 580px;
    padding: 0 20px;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Progress Ring */
.progress-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 377;
    stroke-dashoffset: 377;
    animation: progress-spin 2s ease-in-out infinite;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-icon {
    font-size: 32px;
    margin-bottom: 4px;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.progress-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Glass Buttons */
.maintenance-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 300ms;
}

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

.glass-btn-primary {
    background: rgba(30, 93, 184, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(43, 127, 229, 0.3);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(30, 93, 184, 0.2);
}

.glass-btn-primary:hover {
    background: rgba(30, 93, 184, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 93, 184, 0.35);
}

.glass-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.glass-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* Info Glass Card */
.info-glass-card {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 28px;
}

.info-content {
    text-align: left;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.info-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(43, 127, 229, 0.1);
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float-shape 15s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float-shape 18s ease-in-out infinite 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 20%;
    animation: float-shape 22s ease-in-out infinite 6s;
}

/* Responsive */
/* ============================================
   RESPONSIVE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    /* Typography */
    .gradient-text { 
        font-size: 38px;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }
    
    .maintenance-heading {
        margin: 0 0 16px;
    }
    
    .maintenance-description { 
        font-size: 16px;
        line-height: 1.6;
        padding: 0 24px;
        margin-bottom: 36px;
        max-width: 100%;
    }
    
    /* Logo */
    .maintenance-logo-container { 
        width: 140px;
        height: 140px;
        margin-bottom: 36px;
    }
    
    /* Status Badge */
    .status-badge {
        font-size: 13px;
        padding: 10px 20px;
        margin-bottom: 24px;
    }
    
    /* Progress Ring */
    .progress-container {
        width: 110px;
        height: 110px;
        margin-bottom: 36px;
    }
    
    .progress-ring {
        width: 110px;
        height: 110px;
    }
    
    .progress-ring-circle,
    .progress-ring-circle-bg {
        r: 48;
        cx: 55;
        cy: 55;
        stroke-width: 6;
    }
    
    .progress-label {
        font-size: 11px;
    }
    
    /* Actions */
    .maintenance-actions { 
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 36px;
        gap: 12px;
    }
    
    .glass-btn { 
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    /* Info Card */
    .info-glass-card { 
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        margin: 0 20px;
    }
    
    .info-divider { 
        width: 60px;
        height: 1px;
    }
    
    .info-icon-box {
        width: 44px;
        height: 44px;
    }
    
    .info-icon-box svg {
        width: 20px;
        height: 20px;
    }
    
    .info-title {
        font-size: 13px;
    }
    
    .info-desc {
        font-size: 11px;
    }
    
    /* Stars Animation - Mobile angepasst */
    .stars-svg {
        opacity: 0.5;
    }
    
    /* Content Container */
    .maintenance-content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .gradient-text { 
        font-size: 32px;
    }
    
    .maintenance-description { 
        font-size: 15px;
        padding: 0 20px;
    }
    
    .maintenance-logo-container { 
        width: 120px;
        height: 120px;
    }
    
    .info-glass-card {
        margin: 0 16px;
        padding: 20px 16px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: transparent;
    padding: 96px 16px;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 21, 37, 0.3) 0%, rgba(10, 31, 61, 0.5) 100%);
    pointer-events: none;
}

/* Light Theme: Remove dark overlay from services section */
[data-theme="light"] .services-section::before {
    background: transparent;
}

/* Section Eyebrow */
.section-eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-glow);
    margin-bottom: var(--space-md);
    text-align: center;
    width: 100%;
}

[data-theme="light"] .section-eyebrow {
    color: var(--color-primary-base);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

/* Text Gradient for Highlights */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, #a5e8f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .text-gradient {
    background: linear-gradient(135deg, var(--color-primary-base) 0%, #2B7FE5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .text-gradient-light {
    background: linear-gradient(135deg, var(--color-primary-base) 0%, #2B7FE5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Eyebrow */
.cta-eyebrow {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

[data-theme="light"] .cta-eyebrow {
    color: var(--color-primary-base);
    opacity: 0.8;
}

/* Hide on Mobile */
@media (max-width: 640px) {
    .hide-mobile {
        display: none;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-card-border);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Light Theme Service Card Top Border */
[data-theme="light"] .service-card::before {
    background: linear-gradient(90deg, transparent, rgba(30, 93, 184, 0.15), transparent);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl), var(--premium-glow);
    border-color: rgba(75, 160, 255, 0.3);
    background: var(--glass-bg-hover);
}

/* Light Theme Service Card Hover */
[data-theme="light"] .service-card:hover {
    border-color: rgba(30, 93, 184, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 93, 184, 0.25) 0%, rgba(75, 160, 255, 0.15) 100%);
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(30, 93, 184, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(75, 160, 255, 0.25);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(30, 93, 184, 0.5), 0 0 30px rgba(75, 160, 255, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary-glow);
}

/* Light Theme Service Icon */
[data-theme="light"] .service-icon {
    background: linear-gradient(135deg, rgba(30, 93, 184, 0.12) 0%, rgba(43, 127, 229, 0.08) 100%);
    box-shadow: 0 8px 24px rgba(30, 93, 184, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 93, 184, 0.15);
}

[data-theme="light"] .service-icon svg {
    color: var(--color-primary-base);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.service-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   DIFFERENTIATORS SECTION
   ============================================ */
.differentiators-section {
    background: transparent;
    padding: 96px 16px;
    position: relative;
}

.differentiators-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.differentiators-list {
    list-style: none;
}

.differentiator-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--color-card-border);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-item:hover {
    background: var(--glass-bg-hover);
    transform: translateX(8px);
    border-color: rgba(75, 160, 255, 0.2);
}

/* Light Theme Differentiator Hover */
[data-theme="light"] .differentiator-item:hover {
    border-color: rgba(30, 93, 184, 0.25);
}

.differentiator-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e5db8 0%, #4ba0ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(30, 93, 184, 0.4);
}

.differentiator-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

.differentiator-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: var(--color-text-primary);
}

.differentiators-image {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-card-border);
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentiators-badge {
    display: inline-block;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(30, 93, 184, 0.2) 0%, rgba(75, 160, 255, 0.1) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30, 93, 184, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(75, 160, 255, 0.25);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
}

/* Light Theme Differentiators Badge */
[data-theme="light"] .differentiators-badge {
    background: linear-gradient(135deg, rgba(30, 93, 184, 0.1) 0%, rgba(43, 127, 229, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(30, 93, 184, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 93, 184, 0.15);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: transparent;
    padding: 96px 16px;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 31, 61, 0.3) 0%, rgba(6, 21, 37, 0.5) 100%);
    pointer-events: none;
}

/* Light Theme Process Section Background */
[data-theme="light"] .process-section::before {
    background: transparent;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    align-items: flex-start;
    z-index: 1;
}

.process-step {
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-card-border);
    position: relative;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.process-step:hover {
    border-color: rgba(75, 160, 255, 0.3);
    box-shadow: var(--shadow-2xl), var(--premium-glow);
    transform: translateY(-8px);
}

/* Light Theme Process Step Hover */
[data-theme="light"] .process-step:hover {
    border-color: rgba(30, 93, 184, 0.25);
}

.process-number {
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 0;
    background: transparent;
    font-size: 48px;
    font-weight: 800;
    box-shadow: none;
    margin-bottom: 16px;
    position: relative;
    background: linear-gradient(135deg, #4ba0ff 0%, #2b7fe5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-number::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, #1e5db8 0%, transparent 100%);
}

.process-step:last-child .process-number::after {
    display: none;
}

.process-content {
    margin-left: 0;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.process-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Arrow between steps (desktop only) */
.process-step::after {
    display: none;
}

/* ============================================
   REFERENCES SECTION
   ============================================ */
.references-section {
    background: transparent;
    text-align: center;
}

.references-note {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--color-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-lg);
}

.references-note p {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
}

/* ============================================
   TABLET RESPONSIVE (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .differentiators-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   DESKTOP RESPONSIVE (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: var(--font-size-6xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }
    
    .process-step::after {
        content: '→';
        display: block;
        position: absolute;
        top: 50%;
        right: -32px;
        transform: translateY(-50%);
        font-size: var(--font-size-3xl);
        color: var(--color-primary-base);
        font-weight: var(--font-weight-bold);
    }
    
    .process-step:last-child::after {
        display: none;
    }
    
    .process-number {
        position: static;
        margin-bottom: var(--space-md);
    }
    
    .process-content {
        margin-left: 0;
    }
}

/* Professional Icon Box Styling */
.info-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(30, 93, 184, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(30, 93, 184, 0.3);
}

.info-icon-box svg {
    stroke: #1e5db8;
    stroke-width: 1.5;
    color: #1e5db8;
}

/* ============================================
   SUBTLE STAR TWINKLE ANIMATION
   ============================================ */

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Stars SVG Container */
.stars-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    pointer-events: none;
}

/* Premium Floating Container */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
}

/* ============================================
   FORM ELEMENTS - CHECKBOX & TOGGLE
   ============================================ */

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary-base);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-base);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--color-primary-base);
    text-decoration: underline;
}

/* iOS-Style Toggle Switch */
.toggle-wrapper {
    margin: 16px 0;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-slider {
    position: relative;
    width: 52px;
    height: 32px;
    background: rgba(120, 120, 128, 0.32);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .toggle-slider {
    background: rgba(120, 120, 128, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.16);
}

.toggle-input:checked + .toggle-slider {
    background: var(--color-primary-base);
    border-color: var(--color-primary-base);
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-input:focus + .toggle-slider {
    box-shadow: 0 0 0 4px rgba(30, 93, 184, 0.2);
}

.toggle-label:hover .toggle-slider {
    background: rgba(120, 120, 128, 0.4);
}

[data-theme="light"] .toggle-label:hover .toggle-slider {
    background: rgba(120, 120, 128, 0.24);
}

.toggle-input:checked + .toggle-slider:hover {
    background: var(--color-primary-hover);
}

.toggle-text {
    font-size: var(--font-size-base);
    color: var(--color-text-base);
    font-weight: 500;
}

/* Animation beim Aktivieren */
@keyframes toggleBounce {
    0%, 100% { transform: translateX(20px); }
    50% { transform: translateX(18px); }
}

.toggle-input:checked + .toggle-slider::before {
    animation: toggleBounce 0.4s ease;
}
