/* Features Page Styles */
.features-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.features-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Feature Categories */
.feature-categories {
    padding: 5rem 0;
}

.feature-category {
    margin-bottom: 5rem;
}

.feature-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 12px;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Feature Grid Alternative */
.feature-showcase {
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.showcase-visual {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.showcase-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-item p {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}