* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.tech-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(30,58,138,0.8) 0%, rgba(59,130,246,0.6) 100%);
}

.section-padding {
    padding: 6rem 0;
}

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

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59,130,246,0.3);
}

.btn-outline {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.tech-circuit {
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(59,130,246,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75px 75px, rgba(6,182,212,0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

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

.wafer-animation {
    background: 
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(236, 72, 153, 0.18) 0%, transparent 45%);
    animation: waferGlow 10s ease-in-out infinite;
}

.circuit-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(168,85,247,0.2) 1px, transparent 1px),
        linear-gradient(90deg, transparent 49%, rgba(6,182,212,0.1) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(236,72,153,0.1) 50%, transparent 51%);
    background-size: 60px 60px, 80px 80px, 100px 100px, 120px 120px;
    animation: circuitFlow 15s linear infinite;
}

@keyframes waferGlow {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1);
    }
    33% { 
        opacity: 1;
        transform: scale(1.02);
    }
    66% { 
        opacity: 0.8;
        transform: scale(0.98);
    }
}

@keyframes circuitFlow {
    0% { 
        background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    }
    100% { 
        background-position: 60px 60px, -80px -80px, 100px 0px, 0px -120px;
    }
}

.comparison-table {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.advantage-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.2);
}

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