/* Feature Pages Styling */

.feature-hero {
    padding: 10rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8), rgba(20, 30, 50, 0.8));
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00f3ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.feature-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f3ff, #bf00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Feature Sections */
.feature-section {
    padding: 5rem 2rem;
}

.feature-section.bg-dark {
    background: rgba(10, 20, 40, 0.3);
}

.feature-section.bg-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 243, 255, 0.1));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.feature-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #00f3ff;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00f3ff, #bf00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #bf00ff;
    box-shadow: 0 10px 30px rgba(191, 0, 255, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Criteria List */
.criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #00f3ff;
    padding: 1.5rem;
    border-radius: 10px;
}

.criteria-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.criteria-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.use-case-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.use-case-result {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    position: relative;
}

.pricing-card.featured {
    border-color: #bf00ff;
    box-shadow: 0 10px 40px rgba(191, 0, 255, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #bf00ff, #ff006e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #00f3ff;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card li:before {
    content: '✓ ';
    color: #00ff88;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.faq-item h4 {
    color: #00f3ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Related Features */
.related-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: #bf00ff;
    box-shadow: 0 10px 30px rgba(191, 0, 255, 0.2);
}

.related-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.related-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-hero {
        padding: 8rem 1rem 4rem;
    }
    
    .feature-hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .steps-grid,
    .benefits-grid,
    .use-cases-grid,
    .criteria-list,
    .faq-grid,
    .related-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}