    .crm-detail-section {
        padding: 60px 20px;
        background: var(--bg, #070707);
        font-family: 'DM Sans', system-ui, sans-serif;
        color: var(--ink-100, #fff);
    }

    .crm-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .crm-header h1 {
        font-size: clamp(2rem, 3vw, 3.2rem);
        color: var(--ink-100, #ffffff);
        margin-bottom: 15px;
    }

    .crm-header h1 span {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Tabs Navigation */
    .crm-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .tab-btn {
        background: var(--card-solid, #121212);
        border: 1px solid var(--line, #333);
        color: var(--ink-600, #a3a3a3);
        padding: 12px 24px;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 140px;
    }

    .tab-btn:hover {
        background: rgba(251, 191, 36, 0.05);
        color: #fbbf24;
        border-color: rgba(251, 191, 36, 0.3);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, var(--or-500, #f59e0b), var(--or-700, #b45309));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    /* Tab Content Area */
    .tab-content {
        display: none;
        max-width: 1000px;
        margin: 0 auto;
        background: var(--card-solid, #121212);
        border: 1px solid var(--line, #333);
        border-radius: 20px;
        padding: 40px;
        animation: fadeIn 0.4s ease-in-out;
    }

    .tab-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .content-header h2 {
        font-size: 2rem;
        color: #fbbf24;
        margin-bottom: 10px;
    }

    .content-header p {
        color: var(--ink-600, #a3a3a3);
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
    }

    .feature-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        color: var(--ink-100, #e5e7eb);
        font-size: 1rem;
    }

    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 15px;
        color: #10b981;
        font-weight: bold;
        background: rgba(16, 185, 129, 0.1);
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 0.8rem;
    }

    .pricing-cta {
        margin-top: 30px;
    }

    .btn-action {
        display: inline-block;
        background: transparent;
        border: 2px solid #fbbf24;
        color: #fbbf24;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-action:hover {
        background: #fbbf24;
        color: #000;
    }

    @media (max-width: 768px) {
        .content-grid { grid-template-columns: 1fr; }
        .tab-content { padding: 25px; }
        .tab-btn { flex: 1 1 calc(33% - 15px); min-width: auto; }
    }
    @media (max-width: 480px) {
        .tab-btn { flex: 1 1 100%; }
    }
