/* Platform Services Section Styles */
.platform-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.platform-services .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card.highlight {
    border: 2px solid #FF6B4A;
    background: linear-gradient(135deg, #fff9f7 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FF6B4A;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.service-card.highlight .service-badge {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8C6B 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li span {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-weight: bold;
}

.service-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8C6B 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
}

.service-link.coming-soon {
    background: linear-gradient(135deg, #9E9E9E 0%, #BDBDBD 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.service-link.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* Unified Auth Notice */
.unified-auth-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notice-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .unified-auth-notice {
        flex-direction: column;
        text-align: center;
    }

    .notice-icon {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .platform-services {
        padding: 2rem 0;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }
}
