* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d9ff;
    --primary-dark: #00b8d4;
    --secondary: #7c3aed;
    --accent-cyan: #00ffff;
    --accent-purple: #a78bfa;
    --text-dark: #0a0a0a;
    --text-light: #94a3b8;
    --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(0, 217, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 217, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 217, 255, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 217, 255, 0.25);
    --neon-glow: 0 0 20px rgba(0, 217, 255, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.brand-icon {
    font-size: 32px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-glow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary);
    box-shadow: var(--neon-glow);
    border: 1px solid var(--glass-border);
}

.hero {
    padding: 140px 0 80px;
    margin-top: 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.5), 0 0 80px rgba(0, 217, 255, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0a0a0a;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--primary);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 100%);
}

.btn-secondary {
    background: rgba(0, 217, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neon-glow), var(--shadow-lg);
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--primary);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.features-preview,
.features-detailed,
.about-content,
.contact-section,
.faq-section {
    padding: 80px 0;
}

.section-title,
.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.4);
}

.page-header {
    padding: 140px 0 60px;
    text-align: center;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neon-glow), var(--shadow-lg);
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.feature-detail {
    display: flex;
    gap: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.feature-detail-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.feature-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: var(--primary);
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 60px 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--neon-glow), var(--shadow-lg);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.about-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.about-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.benefit-card {
    background: rgba(0, 217, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
    box-shadow: var(--neon-glow);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.tech-list li {
    padding: 16px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-list strong {
    color: var(--primary);
    font-weight: 600;
}

.tech-list li:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(4px);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.industry-item {
    background: rgba(0, 217, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover {
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 217, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: white;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0a0a;
    color: white;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.contact-info-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-links {
    margin-top: 32px;
}

.social-links h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 15px rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    background: rgba(10, 10, 10, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-info {
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-info p {
    margin: 4px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-detail {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .section-title,
    .page-header h1 {
        font-size: 32px;
    }
}
