/* Individual Feature Page Styles */

/* Hero Section */
.feature-page-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #10b981;
}

.benefit-item span {
    color: #374151;
    font-size: 1rem;
}

/* How It Works */
.how-it-works-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step p {
    padding-top: 0.5rem;
    color: #374151;
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Use Cases */
.use-cases-section {
    padding: 5rem 0;
    background: white;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #10b981;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.use-case-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 600;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Related Features */
.related-features-section {
    padding: 5rem 0;
    background: white;
}

.related-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111827;
}

.related-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.related-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: #111827;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.related-feature-card:hover {
    background: white;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.related-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.related-title {
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary {
    background: #10b981;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: #10b981;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-page-hero h1 {
        font-size: 2rem;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .benefits-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section h2,
    .how-it-works-section h2,
    .use-cases-section h2,
    .faq-section h2,
    .related-features-section h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .step {
        gap: 1rem;
    }

    .step p {
        font-size: 1rem;
    }
}
