/* Smart Add-ons for Marketing & CRM Section */
.marketing-crm-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.marketing-crm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.marketing-crm-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.marketing-crm-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.marketing-crm-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.marketing-crm-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Statistics */
.marketing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.marketing-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.marketing-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feedback Summary */
.feedback-summary {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-top: 8px;
}

.feedback-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.feedback-sentiment {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.sentiment-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.sentiment-value {
    font-size: 16px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.sentiment-value.positive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.feedback-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* CRM Suite Board Visual */
.marketing-crm-visual {
    position: relative;
    perspective: 1000px;
}

.crm-suite-board {
    background: #1e293b;
    /* Dark Slate 800 */
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.crm-suite-board::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.suite-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suite-category {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    /* Slate 400 */
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 8px;
    border-left: 2px solid #a855f7;
    margin-bottom: 2px;
}

.suite-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.suite-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.suite-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
    border-color: rgba(168, 85, 247, 0.3);
}

.suite-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 6px;
}

/* Color codes from reference */
.suite-icon.yellow {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.suite-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.suite-icon.pink {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.suite-icon.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.suite-icon.slate {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

/* Full Width Category */
.suite-category-full {
    grid-column: 1 / span 2;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.suite-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
}

.suite-name {
    font-size: 13px;
    font-weight: 500;
    color: #f1f5f9;
    /* Slate 100 */
}

/* Responsive */
@media (max-width: 1024px) {
    .marketing-crm-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .marketing-crm-visual {
        order: -1;
    }

    .marketing-image {
        height: 400px;
    }

    .marketing-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .marketing-crm-section {
        padding: 80px 0;
    }

    .marketing-crm-title {
        font-size: 36px;
    }

    .marketing-crm-description {
        font-size: 16px;
    }

    .marketing-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .marketing-image {
        height: 350px;
    }

    .feedback-summary {
        padding: 24px;
    }

    .feedback-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .marketing-crm-section {
        padding: 60px 0;
    }

    .marketing-crm-title {
        font-size: 28px;
    }

    .marketing-image {
        height: 300px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .feedback-summary {
        padding: 20px;
    }
}