/* Public Integrations Page Styles */

:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.integrations-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0 4rem;
    margin-bottom: 4rem;
    border-radius: 0 0 3rem 3rem;
}

.integrations-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.integrations-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--border);
}

.category-header i {
    font-size: 2.5rem;
    color: #667eea;
}

.category-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.category-description {
    color: var(--text);
    opacity: 0.7;
    margin: 0;
    font-size: 1.1rem;
}

.integration-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--card-color, #667eea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--card-color, #667eea);
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--card-color, #667eea) 0%, rgba(102, 126, 234, 0.7) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1) rotate(5deg);
}

.integration-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.integration-description {
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.integration-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

body.dark-theme .status-active {
    background: rgba(40, 167, 69, 0.25);
    color: #75b798;
}

.status-coming_soon {
    background: #d1ecf1;
    color: #0c5460;
}

body.dark-theme .status-coming_soon {
    background: rgba(23, 162, 184, 0.25);
    color: #7dd3e8;
}

.status-planned {
    background: #e2e3e5;
    color: #383d41;
}

body.dark-theme .status-planned {
    background: rgba(108, 117, 125, 0.25);
    color: #adb5bd;
}

.integration-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.integration-features li i {
    color: var(--card-color, #667eea);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--gradient-success);
    color: white;
    padding: 4rem 0;
    border-radius: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-cta {
    background: white;
    color: #11998e;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #0d7a6f;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .integrations-hero h1 {
        font-size: 2rem;
    }

    .integrations-hero p {
        font-size: 1rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}
