/* ── CRM Dashboard Base ──────────────────────────────────────────────────────── */
.crm2673-wrap {
    font-family: 'Inter', system-ui, sans-serif;
    color: #e0e0e0;
    background: #0d0d14;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(198,168,90,0.1);
    box-sizing: border-box;
}

.crm2673-wrap * {
    box-sizing: border-box;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.crm2673-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(198,168,90,0.15);
}

.crm2673-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crm2673-logo-icon {
    font-size: 28px;
    color: #C6A85A;
    filter: drop-shadow(0 0 8px rgba(198,168,90,0.4));
}

.crm2673-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.crm2673-version {
    background: rgba(198,168,90,0.1);
    color: #C6A85A;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(198,168,90,0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.crm2673-header-actions {
    display: flex;
    gap: 12px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.crm2673-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.crm2673-btn-outline {
    background: transparent;
    color: #a0a0b0;
    border: 1px solid rgba(255,255,255,0.1);
}

.crm2673-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-color: rgba(255,255,255,0.2);
}

.crm2673-btn-gold {
    background: linear-gradient(135deg, #C6A85A 0%, #a4863e 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(198,168,90,0.25);
}

.crm2673-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198,168,90,0.4);
}

.crm2673-btn-danger {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
}

.crm2673-btn-danger:hover {
    background: #ef4444;
    color: #fff;
}

/* ── Nav Tabs ──────────────────────────────────────────────────────────────── */
.crm2673-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.2);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow-x: auto;
}

.crm2673-nav::-webkit-scrollbar {
    height: 4px;
}
.crm2673-nav::-webkit-scrollbar-thumb {
    background: rgba(198,168,90,0.3);
    border-radius: 4px;
}

.crm2673-nav-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.crm2673-nav-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.crm2673-nav-active {
    background: rgba(198,168,90,0.1) !important;
    color: #C6A85A !important;
    font-weight: 600;
}

.crm2673-tab-content {
    animation: crm2673FadeIn 0.3s ease;
}

.crm2673-tab-hidden {
    display: none;
}

/* ── Stat Cards ────────────────────────────────────────────────────────────── */
.crm2673-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.crm2673-stat-card {
    background: rgba(20,20,30,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    backdrop-filter: blur(10px);
}

.crm2673-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(198,168,90,0.2);
}

.crm2673-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.crm2673-stat-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.crm2673-stat-gold {
    background: linear-gradient(145deg, rgba(198,168,90,0.15) 0%, rgba(20,20,30,0.8) 100%);
    border-color: rgba(198,168,90,0.3);
}

.crm2673-stat-gold .crm2673-stat-num {
    color: #C6A85A;
    text-shadow: 0 0 15px rgba(198,168,90,0.3);
}

/* ── MODERN PIPELINE ───────────────────────────────────────────────────────── */
.crm2673-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.crm2673-section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: #C6A85A;
    border-radius: 4px;
}

.crm2673-pipeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.crm2673-stage {
    background: rgba(30,30,45,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.crm2673-stage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    opacity: 0.5;
    transition: width 0.2s, opacity 0.2s;
}

.crm2673-stage:hover {
    background: rgba(40,40,60,0.6);
    transform: translateX(5px);
}

.crm2673-stage:hover::after {
    width: 6px;
    opacity: 1;
}

.crm2673-stage-active {
    background: rgba(50,50,70,0.8);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.crm2673-stage-name {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    z-index: 1;
    padding-left: 8px;
}

.crm2673-stage-active .crm2673-stage-name {
    color: #fff;
    font-weight: 600;
}

.crm2673-stage-count {
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
}

/* Stage Colors */
.crm2673-stage-gold::after { background: #C6A85A; }
.crm2673-stage-gold .crm2673-stage-count { color: #C6A85A; border: 1px solid rgba(198,168,90,0.2); }
.crm2673-stage-active.crm2673-stage-gold { border-color: rgba(198,168,90,0.4); }

.crm2673-stage-blue::after { background: #3b82f6; }
.crm2673-stage-blue .crm2673-stage-count { color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.crm2673-stage-active.crm2673-stage-blue { border-color: rgba(59,130,246,0.4); }

.crm2673-stage-green::after { background: #10b981; }
.crm2673-stage-green .crm2673-stage-count { color: #10b981; border: 1px solid rgba(16,185,129,0.2); }
.crm2673-stage-active.crm2673-stage-green { border-color: rgba(16,185,129,0.4); }

.crm2673-stage-amber::after { background: #f59e0b; }
.crm2673-stage-amber .crm2673-stage-count { color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.crm2673-stage-active.crm2673-stage-amber { border-color: rgba(245,158,11,0.4); }

.crm2673-stage-red::after { background: #ef4444; }
.crm2673-stage-red .crm2673-stage-count { color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.crm2673-stage-active.crm2673-stage-red { border-color: rgba(239,68,68,0.4); }

.crm2673-stage:not([class*='crm2673-stage-'])::after { background: #888; }


/* ── Tables ────────────────────────────────────────────────────────────────── */
.crm2673-toolbar {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.crm2673-search, .crm2673-filter {
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.crm2673-search { flex-grow: 1; }
.crm2673-search:focus, .crm2673-filter:focus { border-color: #C6A85A; }
.crm2673-filter { min-width: 180px; }
.crm2673-filter option { background: #1a1a2e; color: #fff; }

.crm2673-table-wrap {
    overflow-x: auto;
    background: rgba(20,20,30,0.5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.crm2673-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.crm2673-table th, .crm2673-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
}

.crm2673-table th {
    background: rgba(0,0,0,0.3);
    color: #a0a0b0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.crm2673-table tr:last-child td { border-bottom: none; }
.crm2673-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.crm2673-loading {
    text-align: center !important;
    padding: 40px !important;
    color: #888;
    font-style: italic;
}

/* ── Badges & Status Dropdown ──────────────────────────────────────────────── */
.crm2673-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid transparent;
}

.crm2673-badge-gold    { background: rgba(198,168,90,0.1); color: #C6A85A; border-color: rgba(198,168,90,0.3); }
.crm2673-badge-green   { background: rgba(16,185,129,0.1); color: #10b981; border-color: rgba(16,185,129,0.3); }
.crm2673-badge-red     { background: rgba(239,68,68,0.1); color: #ef4444; border-color: rgba(239,68,68,0.3); }
.crm2673-badge-amber   { background: rgba(245,158,11,0.1); color: #f59e0b; border-color: rgba(245,158,11,0.3); }
.crm2673-badge-blue    { background: rgba(59,130,246,0.1); color: #3b82f6; border-color: rgba(59,130,246,0.3); }
.crm2673-badge-default { background: rgba(255,255,255,0.05); color: #aaa; border-color: rgba(255,255,255,0.1); }

.crm2673-paid { color: #10b981; font-weight: 600; }
.crm2673-unpaid { color: #ef4444; font-size: 12px; }

/* Inline Status Dropdown */
.crm2673-status-wrap { position: relative; display: inline-block; }
.crm2673-status-badge { cursor: pointer; user-select: none; white-space: nowrap; transition: opacity 0.15s; }
.crm2673-status-badge:hover { opacity: 0.85; }
.crm2673-status-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 9999;
    background: #1a1a2e; border: 1px solid rgba(198,168,90,0.35); border-radius: 12px;
    min-width: 200px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); overflow: hidden; padding: 8px 0;
}
.crm2673-status-dropdown.crm2673-status-open { display: block; animation: crm2673FadeIn 0.2s ease; }
@keyframes crm2673FadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.crm2673-status-opt {
    padding: 10px 16px; font-size: 13px; color: rgba(255,255,255,0.7); cursor: pointer;
    transition: all 0.2s; white-space: nowrap;
}
.crm2673-status-opt:hover { background: rgba(198,168,90,0.1); color: #C6A85A; padding-left: 20px; }
.crm2673-status-opt.crm2673-status-opt-active { color: #C6A85A; font-weight: 600; background: rgba(198,168,90,0.05); }
.crm2673-status-opt.crm2673-status-opt-active::before { content: '✓ '; margin-right: 4px; }


/* ── Table Action Buttons ──────────────────────────────────────────────────── */
.crm2673-action-btns { display: flex; gap: 6px; }
.crm2673-action-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #ccc; border-radius: 6px; padding: 6px 12px; font-size: 12px;
    cursor: pointer; transition: all 0.2s;
}
.crm2673-action-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.crm2673-edit-btn:hover { background: rgba(198,168,90,0.2); color: #C6A85A; border-color: rgba(198,168,90,0.4); }
.crm2673-del-btn:hover, .crm2673-del-inv-btn:hover { background: rgba(239,68,68,0.2); color: #ef4444; border-color: rgba(239,68,68,0.4); }

/* ── Modals (Add/Edit) ─────────────────────────────────────────────────────── */
.crm2673-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 99999; display: flex; justify-content: center; align-items: center; padding: 20px;
}

.crm2673-modal {
    background: #111118; width: 100%; max-width: 900px;
    border-radius: 16px; border: 1px solid rgba(198,168,90,0.2);
    display: flex; flex-direction: column; max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    animation: crm2673ModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.crm2673-modal-sm { max-width: 400px; }
.crm2673-modal-invoice { max-width: 700px; }

@keyframes crm2673ModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.crm2673-modal-header {
    padding: 24px 30px; border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center;
}

.crm2673-modal-title { margin: 0; font-size: 20px; font-weight: 600; color: #fff; }

.crm2673-modal-close {
    background: transparent; border: none; color: #888;
    font-size: 28px; cursor: pointer; line-height: 1; padding: 0;
    transition: color 0.2s;
}
.crm2673-modal-close:hover { color: #fff; }

.crm2673-modal-tabs {
    display: flex; gap: 5px; padding: 15px 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); overflow-x: auto;
}

.crm2673-mtab {
    background: transparent; border: none; color: #888;
    padding: 10px 15px; font-size: 14px; font-weight: 500; cursor: pointer;
    border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap;
}
.crm2673-mtab:hover { color: #ccc; }
.crm2673-mtab-active { color: #C6A85A; border-bottom-color: #C6A85A; font-weight: 600; }

.crm2673-modal-body {
    padding: 30px; overflow-y: auto; flex-grow: 1;
}
.crm2673-modal-body::-webkit-scrollbar { width: 6px; }
.crm2673-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 6px; }

.crm2673-modal-footer {
    padding: 20px 30px; border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: flex-end; gap: 15px; background: rgba(0,0,0,0.2);
    border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;
}

.crm2673-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.crm2673-field { display: flex; flex-direction: column; gap: 8px; }
.crm2673-field-full { grid-column: 1 / -1; }

.crm2673-field label { font-size: 13px; color: #a0a0b0; font-weight: 500; }
.crm2673-field input, .crm2673-field select, .crm2673-field textarea {
    padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; border-radius: 8px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.crm2673-field input:focus, .crm2673-field select:focus, .crm2673-field textarea:focus { border-color: #C6A85A; }

/* ── Custom Invoice / Services Tab ─────────────────────────────────────────── */
.crm2673-services-header { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.crm2673-services-title { margin: 0 0 5px 0; color: #C6A85A; font-size: 18px; }
.crm2673-services-sub { margin: 0; color: #888; font-size: 13px; }

.crm2673-pkg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; margin-bottom: 30px; }
.crm2673-pkg-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.2s;
}
.crm2673-pkg-card:hover { border-color: rgba(198,168,90,0.4); background: rgba(198,168,90,0.05); }
.crm2673-pkg-selected { border-color: #C6A85A; background: rgba(198,168,90,0.1); box-shadow: 0 0 15px rgba(198,168,90,0.2); }
.crm2673-pkg-card-name { font-weight: 600; color: #fff; margin-bottom: 5px; font-size: 15px; }
.crm2673-pkg-card-price { color: #C6A85A; font-size: 18px; font-weight: 700; }
.crm2673-pkg-custom-price { margin-top: 10px; width: 100%; padding: 8px; background: #000; border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; text-align: center; }

.crm2673-addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.crm2673-addon-item {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 15px; display: flex; align-items: center; gap: 15px; cursor: pointer; transition: all 0.2s;
}
.crm2673-addon-item:hover { background: rgba(255,255,255,0.05); }
.crm2673-addon-selected { border-color: #C6A85A; background: rgba(198,168,90,0.05); }
.crm2673-addon-check { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: center; align-items: center; color: transparent; font-size: 14px; transition: all 0.2s; }
.crm2673-addon-selected .crm2673-addon-check { background: #C6A85A; border-color: #C6A85A; color: #000; }
.crm2673-addon-info { flex-grow: 1; }
.crm2673-addon-name { color: #fff; font-size: 14px; font-weight: 500; }
.crm2673-addon-price { color: #a0a0b0; font-size: 13px; margin-top: 2px; }
.crm2673-addon-qty { width: 50px; padding: 5px; background: #000; border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; text-align: center; display: none; }
.crm2673-addon-selected .crm2673-addon-qty { display: block; }

.crm2673-inv-summary { margin-top: 30px; background: rgba(0,0,0,0.3); border: 1px solid rgba(198,168,90,0.2); border-radius: 12px; padding: 20px; }
.crm2673-inv-summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: #ccc; font-size: 15px; }
.crm2673-inv-total-row { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 18px; font-weight: 700; }
.crm2673-services-actions { margin-top: 20px; display: flex; justify-content: flex-end; gap: 15px; }

/* Invoice Preview Document */
.crm2673-inv-doc { background: #fff; color: #333; padding: 40px; border-radius: 8px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.crm2673-inv-doc-header { display: flex; justify-content: space-between; border-bottom: 2px solid #C6A85A; padding-bottom: 20px; margin-bottom: 30px; }
.crm2673-inv-brand-name { font-size: 24px; font-weight: bold; color: #111; margin-left: 10px; }
.crm2673-inv-diamond { color: #C6A85A; font-size: 24px; }
.crm2673-inv-doc-meta { text-align: right; font-size: 14px; line-height: 1.6; color: #555; }
.crm2673-inv-doc-client { margin-bottom: 30px; font-size: 15px; line-height: 1.6; }
.crm2673-inv-doc-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.crm2673-inv-doc-table th, .crm2673-inv-doc-table td { padding: 12px; border-bottom: 1px solid #eee; text-align: left; }
.crm2673-inv-doc-table th { background: #f9f9f9; font-weight: bold; color: #111; }
.crm2673-inv-doc-table tfoot td { border-bottom: none; padding-top: 15px; }
.crm2673-inv-doc-notes { background: #f9f9f9; padding: 15px; border-left: 4px solid #C6A85A; font-size: 13px; margin-bottom: 30px; }
.crm2673-inv-doc-footer { text-align: center; color: #888; font-size: 12px; border-top: 1px solid #eee; padding-top: 20px; }

/* ── Lifecycle Tracking ────────────────────────────────────────────────────── */
.crm2673-lifecycle-track { display: flex; justify-content: space-between; align-items: flex-start; background: rgba(0,0,0,0.3); padding: 30px 20px; border-radius: 12px; overflow-x: auto; }
.crm2673-lc-step { display: flex; flex-direction: column; align-items: center; text-align: center; width: 80px; position: relative; opacity: 0.5; transition: opacity 0.3s; }
.crm2673-lc-done { opacity: 1; }
.crm2673-lc-icon { width: 50px; height: 50px; border-radius: 50%; background: #1a1a2e; border: 2px solid #555; display: flex; justify-content: center; align-items: center; font-size: 20px; margin-bottom: 10px; transition: all 0.3s; }
.crm2673-lc-done .crm2673-lc-icon { border-color: #C6A85A; background: rgba(198,168,90,0.1); color: #C6A85A; box-shadow: 0 0 15px rgba(198,168,90,0.3); }
.crm2673-lc-label { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.crm2673-lc-status { font-size: 11px; color: #888; }
.crm2673-lc-done .crm2673-lc-status { color: #C6A85A; }
.crm2673-lc-arrow { color: #555; margin-top: 15px; font-size: 20px; }
.crm2673-lc-done + .crm2673-lc-arrow { color: #C6A85A; }

/* Utilities */
.crm2673-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; color: #ccc; }
.crm2673-confirm-preview { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; font-size: 14px; line-height: 1.6; }
.crm2673-confirm-row { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(255,255,255,0.1); padding: 8px 0; }
.crm2673-confirm-label { color: #888; }
.crm2673-confirm-val { color: #fff; font-weight: 500; }
.crm2673-guide-table th { background: rgba(198,168,90,0.1); color: #C6A85A; }

@media (max-width: 768px) {
    .crm2673-form-grid { grid-template-columns: 1fr; }
    .crm2673-header { flex-direction: column; gap: 15px; align-items: flex-start; }
    .crm2673-pipeline { grid-template-columns: 1fr; }
    .crm2673-lifecycle-track { flex-direction: column; align-items: flex-start; gap: 15px; }
    .crm2673-lc-arrow { display: none; }
    .crm2673-lc-step { flex-direction: row; width: 100%; gap: 15px; justify-content: flex-start; text-align: left; }
    .crm2673-lc-icon { margin-bottom: 0; width: 40px; height: 40px; font-size: 16px; }
}
