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

body {
    font-family: 'Roboto', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), 
                url('/cdn/background.jpg') center/cover no-repeat;
    z-index: -1;
}

.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(16, 16, 20, 0.95);
    backdrop-filter: blur(24px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 8px;
}

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

.nav-links {
    position: relative;
    display: flex;
    gap: 6px;
    list-style: none;
    background: transparent;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-links::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 0;
    background: rgba(208, 188, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    opacity: 1;
}

.nav-links a {
    padding: 0 12px;
    height: 30px;
    cursor: pointer;
    transition: color 300ms;
    color: #ffffff99;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-weight: 500;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: #ffffff;
}

.nav-links a .material-icons {
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero .company-name {
    color: #bb86fc;
}

.typewriter-container {
    font-size: clamp(20px, 4vw, 32px);
    margin: 32px 0;
    color: #9e9e9e;
    min-height: 80px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.typewriter {
    color: #bb86fc;
    font-weight: 500;
    min-width: 300px;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background: #bb86fc;
    color: #000000;
}

.btn-primary:hover {
    background: #a970e8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #2d2d2d;
}

.btn-secondary:hover {
    background: rgba(224, 224, 224, 0.08);
    border-color: #404040;
    transform: translateY(-2px);
}

.section {
    padding: 96px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: clamp(40px, 5vw, 64px);
    text-align: center;
    margin-bottom: 48px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.service-card {
    background: #1a1a1a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #2d2d2d;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #252525;
    border-color: #404040;
    transform: translateY(-4px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #bb86fc;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 500;
}

.service-card p {
    color: #9e9e9e;
    line-height: 1.6;
    font-weight: 300;
}

.about {
    background: #151515;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    text-align: center;
}

.about-text h2 {
    text-align: center;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 24px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: #0a0a0a;
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid #2d2d2d;
}

.footer p {
    color: #757575;
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .header {
        top: 12px;
        left: 12px;
        right: 12px;
        transform: none;
        width: calc(100% - 24px);
    }

    .nav-links {
        gap: 2px;
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 8px 12px;
        gap: 6px;
        flex: 1;
        justify-content: center;
    }
    
    .nav-links a .material-icons {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section {
        padding: 64px 16px;
    }

    .typewriter-container {
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }

    .typewriter {
        text-align: center;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .nav-links a .material-icons {
        font-size: 14px;
    }
}
