/* SEO Enhancement Styles */

/* Info Section Styles */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.info-visual {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.info-badge {
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.info-stats {
    display: flex;
    gap: 30px;
}

.info-stat {
    text-align: center;
}

.info-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.info-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Use Cases Overview Styles */
.use-cases-overview {
    padding: 80px 0;
    background: white;
}

.use-cases-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.use-case-card p {
    color: #475569;
    line-height: 1.6;
}

/* How CodeVoice Works Styles */
.how-codevoice-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.how-codevoice-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Why Choose Styles */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fafafa;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.benefit-item p {
    color: #475569;
    line-height: 1.6;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-content h2,
    .use-cases-overview h2,
    .how-codevoice-works h2,
    .why-choose h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .info-stats {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .info-section,
    .use-cases-overview,
    .how-codevoice-works,
    .why-choose,
    .faq-section {
        padding: 60px 0;
    }
    
    .info-visual {
        padding: 30px;
    }
    
    .use-case-card,
    .benefit-item,
    .faq-item {
        padding: 24px;
    }
}