/**
 * Integrations & API Feature Page Styles
 * CreativAI Main Website - Professional Styling
 */

/* ===== HERO SECTION ===== */
.integrations-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.integrations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/patterns/integration-pattern.svg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-text {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Integration Network */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-network {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hub-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.hub-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.integration-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.integration-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--angle) / 60deg * 0.2s);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))) translateY(0); }
    50% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))) translateY(-10px); }
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
    transform-origin: left center;
    transform: translate(0, -50%) rotate(var(--rotation));
    animation: connectionPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--rotation) / 60deg * 0.3s);
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #ffffff;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
    color: #ffffff;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

/* ===== INTEGRATION CATEGORIES SECTION ===== */
.integration-categories {
    padding: 100px 0;
    background: #ffffff;
}

.categories-nav {
    display: flex;
    gap: 16px;
    margin: 48px 0 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-tab:hover {
    border-color: var(--color);
    background: color-mix(in srgb, var(--color) 5%, white);
    color: var(--color);
}

.category-tab.active {
    border-color: var(--color);
    background: var(--color);
    color: #ffffff;
}

.category-tab i {
    font-size: 16px;
}

.categories-content {
    position: relative;
    min-height: 300px;
}

.category-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.category-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
}

.category-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.category-info p {
    color: #64748b;
    margin: 0;
}

.tools-count {
    background: #ede9fe;
    color: #7c3aed;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tool-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.tool-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-logo img {
    max-width: 100%;
    max-height: 100%;
}

.tool-info {
    flex: 1;
}

.tool-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.tool-type {
    font-size: 13px;
    color: #64748b;
}

.tool-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.status-badge.connected {
    background: #dcfce7;
    color: white;
}

.connect-btn {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.connect-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

/* ===== API FEATURES SECTION ===== */
.api-features {
    padding: 100px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.api-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.api-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.api-feature-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.api-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-list i {
    color: #16a34a;
    font-size: 12px;
}

/* ===== INTEGRATION BUILDER SECTION ===== */
.integration-builder {
    padding: 100px 0;
    background: #ffffff;
}

.builder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.builder-features {
    margin: 32px 0;
}

.builder-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.builder-feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f172a, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.builder-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.builder-feature p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.builder-interface {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.builder-canvas {
    padding: 0;
}

.canvas-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.canvas-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.canvas-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    border-color: #0f172a;
    background: #f8fafc;
    color: #0f172a;
}

.canvas-flow {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: #0f172a;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

.flow-step.trigger {
    border-color: #10b981;
    background: #f0fdf4;
}

.flow-step.filter {
    border-color: #f59e0b;
    background: #fffbeb;
}

.flow-step.action {
    border-color: #3b82f6;
    background: #eff6ff;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 12px;
    color: #ffffff;
}

.flow-step.trigger .step-icon {
    background: #10b981;
}

.flow-step.filter .step-icon {
    background: #f59e0b;
}

.flow-step.action .step-icon {
    background: #3b82f6;
}

.step-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.step-content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}

.flow-arrow {
    color: #cbd5e1;
    font-size: 20px;
    flex-shrink: 0;
}

/* ===== USE CASES SECTION ===== */
.use-cases {
    padding: 100px 0;
    background: #f8fafc;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.use-case-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: #0f172a;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.use-case-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.use-case-header p {
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.integration-flow {
    margin-bottom: 20px;
}

.flow-visualization {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.flow-text {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.involved-integrations {
    margin-bottom: 20px;
}

.integrations-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.integration-tag {
    background: #ede9fe;
    color: #7c3aed;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.use-case-actions {
    display: flex;
    gap: 8px;
}

.use-case-actions .btn {
    flex: 1;
    font-size: 14px;
    padding: 8px 16px;
}

/* ===== DEVELOPER RESOURCES SECTION ===== */
.developer-resources {
    padding: 100px 0;
    background: #ffffff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-card:hover {
    border-color: #0f172a;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.resource-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f172a, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
}

.resource-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.resource-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.resource-action {
    color: #64748b;
    font-size: 16px;
    transition: all 0.2s ease;
}

.resource-card:hover .resource-action {
    color: #0f172a;
    transform: translateX(4px);
}

.developer-cta {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.developer-cta .cta-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.developer-cta .cta-content p {
    color: #64748b;
    margin: 0 0 24px 0;
}

.developer-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== INTEGRATION SUPPORT SECTION ===== */
.integration-support {
    padding: 100px 0;
    background: #f8fafc;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.support-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.support-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.support-option i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f172a, #334155);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.support-option h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.support-option p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.support-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    line-height: 1.3;
}

/* ===== CTA SECTION ===== */
.integrations-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    margin-bottom: 48px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.feature-item i {
    color: #10b981;
    font-size: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .builder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .integration-network {
        width: 300px;
        height: 300px;
    }
    
    .integration-node {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
    }
    
    .connection-line {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .integrations-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .canvas-flow {
        flex-direction: column;
        align-items: stretch;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
    
    .categories-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-tab {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .use-case-actions {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .integration-network {
        width: 250px;
        height: 250px;
    }
    
    .integration-node {
        width: 40px;
        height: 40px;
        font-size: 16px;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle)));
    }
}

/* ===== BLUE THEME OVERRIDE ===== */
/* Override old dark theme with our blue theme */
.integrations-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e293b 100%) !important;
    padding: 80px 0 60px !important;
}

/* Update buttons to blue theme */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border-color: #0ea5e9 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    border-color: #0284c7 !important;
}

.btn-outline {
    border-color: rgba(14, 165, 233, 0.3) !important;
    color: #0ea5e9 !important;
}

.btn-outline:hover {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    color: white !important;
}

/* Update section badges to blue - consistent with other pages */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
    color: #1e40af !important;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    text-transform: none;
    letter-spacing: normal;
}

/* Update feature cards with blue accents */
.tool-card:hover,
.api-feature-card:hover,
.use-case-card:hover {
    border-color: #0ea5e9 !important;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1) !important;
}

/* Update icons to white for better contrast */
.feature-icon {
    color: #ffffff !important;
}

.tool-status .status-badge.connected {
    background: #0ea5e9 !important;
    color: white !important;
}

.connect-btn:hover {
    background: #0ea5e9 !important;
    color: white !important;
}

/* ===== INTEGRATION SIMPLICITY SECTION ===== */
.integration-simplicity {
    padding: 100px 0;
    background: #ffffff;
}

.simplicity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.simplicity-text {
    max-width: 100%;
}

.simplicity-steps {
    margin: 40px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.step-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.simplicity-cta {
    margin-top: 32px;
}

.simplicity-cta .btn {
    color: white !important;
}

.simplicity-visual {
    position: relative;
}

.connection-demo {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.demo-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.demo-platforms {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-card.connected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.platform-card.available {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    cursor: pointer;
}

.platform-card.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.platform-card i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.platform-card.connected i {
    color: #10b981;
}

.platform-card.available i {
    color: #0ea5e9;
}

.platform-card span {
    flex: 1;
    font-weight: 500;
    color: #1e293b;
}

.connection-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-card.connected .connection-status {
    color: #10b981;
}

.platform-card.available .connection-status {
    color: #0ea5e9;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .simplicity-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-item {
        gap: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== INTEGRATION SUPPORT SECTION ===== */
.integration-support {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.support-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

.support-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.support-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 24px;
}

.support-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    word-wrap: break-word;
}

.support-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.support-cta {
    margin-top: 64px;
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.support-cta .cta-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.support-cta .cta-content p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 32px;
}

.support-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .support-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .support-cta .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}
