* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.logo {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffcc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
}

.tagline {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.5s forwards;
}

.subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.coming-soon {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    font-size: 1.1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffcc, #00ccff);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 204, 0.4);
    background: linear-gradient(45deg, #00ffcc, #00ccff);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 255, 204, 0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    margin-top: 4rem;
    position: relative;
}

.contact {
    color: #888;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.company-info {
    margin-top: 1rem;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* Animazioni */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes shine {
    from {
        transform: translateX(-100%) rotate(45deg);
    }
    to {
        transform: translateX(100%) rotate(45deg);
    }
}

.typing-effect {
    border-right: 2px solid #00ffcc;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end),
               blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00ffcc; }
}

/* Logo styling */
.logo-wrapper {
    display: inline-block;
    width: 300px;
    margin: 0 auto;
}

.logo-img {
    width: 100%;
    height: auto;
    cursor: pointer;
    will-change: transform;
    transition: transform 300ms ease-out;
}

.logo-img:hover {
    transform: scale(1.2);
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 15px #00ccff;
    }
    to {
        text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ccff;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .services {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
}
