/* Features Page Additional Styles */

.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.2) 0%, transparent 40%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-tag {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 20px 0;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-section {
    padding: 100px 0;
}

.feature-section.alt-bg {
    background: var(--bg-alt);
}

.feature-section.new-features .section-tag {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.platform-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-card .platform-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.platform-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.platform-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.platform-card .version {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn {
    background: white;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}