/* SEO Platform Section Styles */

.seo-platform {
    background: #ffffff;
    padding: 50px 0;
    position: relative;
}

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

/* Section Header */
.seo-platform .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.seo-platform .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 10px;
}

.seo-platform .section-badge i {
    color: #4a9eff;
    font-size: 16px;
}

.seo-platform .section-badge span {
    color: #4a9eff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.seo-platform .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 20px;
    line-height: 1.2;
}

.seo-platform .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* SEO Grid */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

/* SEO Feature */
.seo-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.seo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.seo-feature:hover .seo-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 158, 255, 0.3);
}

.seo-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2942;
    margin-bottom: 12px;
    line-height: 1.3;
}

.seo-feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .seo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 25px;
    }
    
    .seo-platform .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .seo-platform {
        padding: 70px 0;
    }
    
    .seo-container {
        padding: 0 20px;
    }
    
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .seo-platform .section-title {
        font-size: 36px;
    }
    
    .seo-platform .section-subtitle {
        font-size: 16px;
    }
    
    .seo-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .seo-feature-title {
        font-size: 16px;
    }
    
    .seo-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seo-platform .section-title {
        font-size: 28px;
    }
    
    .seo-platform .section-subtitle {
        font-size: 15px;
    }
    
    .seo-feature {
        max-width: 400px;
        margin: 0 auto;
    }
}