body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0B0B1A;
    color: white;
}

.hero {
    padding: 40px 100px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0B0B1A;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    min-width: 200px;
    gap: 15px;
}

.logo img {
    max-width: 300px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.launch-badge {
    display: inline-block;
    animation: pulse 2s infinite;
}

.badge-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-text .highlight {
    color: #5371ff;
}

.cta-button {
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: #5A67D8;
    color: white;
}

.cta-button.primary:hover {
    background-color: #434190;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90, 103, 216, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #5A67D8;
    border: 2px solid #5A67D8;
}

.cta-button.secondary:hover {
    background-color: #5A67D8;
    color: white;
    transform: translateY(-2px);
}

.hero-video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.hero-video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #0F0F1E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #5A67D8;
    box-shadow: 0 20px 40px rgba(90, 103, 216, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.6;
}

/* Voice Options Section */
.voices {
    padding: 100px 0;
    background-color: #0B0B1A;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.voice-card {
    background: linear-gradient(135deg, #1e1e38 0%, #2d2d5f 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #2d3748;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.voice-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: #5A67D8;
}

.voice-avatar {
    font-size: 40px;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.voice-avatar.male {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.voice-avatar.female {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.voice-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.voice-type {
    font-size: 14px;
    color: #5A67D8;
    font-weight: 600;
    margin-bottom: 10px;
}

.voice-card p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.5;
}

.voices-note {
    text-align: center;
    color: #a0aec0;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #0F0F1E;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #2d3748;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card.pro {
    border-color: #5A67D8;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 103, 216, 0.2);
}

.pricing-card.pro:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #5A67D8;
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    padding: 8px 0;
    color: #a0aec0;
    font-size: 16px;
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

.get-started-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(90, 103, 216, 0.3);
}

.get-started-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(90, 103, 216, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #0B0B1A;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #5A67D8;
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.faq-item p {
    font-size: 16px;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .voices-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.pro {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0B0B1A;
    color: #a0aec0;
    font-size: 14px;
    border-top: 1px solid #2d3748;
}
