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

body {
    background: #1a2332;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #1a2332;
    border-bottom: 1px solid #2a3847;
    padding: 16px 20px;
    max-width: 100%;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.nav-link {
    color: #8b95a5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(46, 124, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title span {
    color: #2e7cf6;
}

.hero-subtitle {
    font-size: 18px;
    color: #8b95a5;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #2e7cf6;
    color: #ffffff;
}

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

.btn-secondary {
    background: #2a3847;
    color: #ffffff;
    border: 1px solid #3a4857;
}

.btn-secondary:hover {
    background: #344152;
}

/* Hero Illustration */
.hero-illustration {
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
    position: relative;
}

.bot-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    animation: float 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 80px 20px;
    background: #0f1419;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #2e7cf6;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a2332;
    border: 1px solid #2a3847;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #212834;
    border-color: #3a4857;
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2e7cf6 0%, #1d6fe8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: #8b95a5;
    line-height: 1.6;
}

/* Bot Types Section */
.bot-types {
    padding: 80px 20px;
}

.bot-types-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.bot-type-card {
    background: #2a3847;
    border: 1px solid #3a4857;
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s;
}

.bot-type-card:hover {
    background: #344152;
    border-color: #4a5867;
    box-shadow: 0 10px 30px rgba(46, 124, 246, 0.1);
}

.bot-type-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bot-type-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bot-type-desc {
    font-size: 13px;
    color: #8b95a5;
    margin-bottom: 16px;
}

.bot-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #8b95a5;
}

.stat {
    background: #1a2332;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Stats Section */
.stats {
    padding: 60px 20px;
    background: #0f1419;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #2e7cf6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #8b95a5;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2e7cf6 0%, #1d6fe8 100%);
    padding: 60px 40px;
    border-radius: 20px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f1419;
    border-top: 1px solid #2a3847;
    padding: 40px 20px;
    text-align: center;
    font-size: 13px;
    color: #8b95a5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-illustration {
        width: 200px;
        height: 200px;
    }

    .bot-icon {
        font-size: 80px;
    }
}