/* ============================================================
 * CRM HUB — PREMIUM DARK THEME
 * Single source of truth for all frontend pages
 * ============================================================ */

.crmhub-premium {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e2e8f0;
    background: #0a0a14;
}
.crmhub-premium * { box-sizing: border-box; }
.crmhub-premium main { background: #0a0a14; min-height: 100vh; }

/* ============ FIX MENU FOR DARK THEME ============ */
.crmhub-premium .heading {
    background: rgba(10,10,20,0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.crmhub-premium .heading_menu ul {
    display: flex; gap: 6px; align-items: center; justify-content: flex-end;
    margin: 0; padding: 0; list-style: none; flex-wrap: wrap;
}
.crmhub-premium .heading_menu_list { display: inline-block; }
.crmhub-premium .heading_menu_list_links {
    color: rgba(255,255,255,0.75) !important;
    padding: 10px 16px !important;
    border-radius: 8px;
    font-weight: 500; font-size: 14px;
    transition: all 0.2s; text-decoration: none;
}
.crmhub-premium .heading_menu_list_links:hover {
    color: #fff !important; background: rgba(255,255,255,0.06);
}
.crmhub-premium .frontent-signup-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important; padding: 11px 22px !important;
    box-shadow: 0 8px 22px rgba(102,126,234,0.4);
    font-weight: 600;
}
.crmhub-premium .frontent-signup-button:hover {
    transform: translateY(-2px); color: white !important;
    box-shadow: 0 12px 30px rgba(102,126,234,0.6);
}
.crmhub-premium .heading_logo img { max-height: 40px; filter: brightness(0) invert(1); }
.crmhub-premium .mobile-menu-icon { color: white; }
.crmhub-premium .mobile-menu { background: #1a1a2e; }
.crmhub-premium .mobile-menu .heading_menu_list_links { color: rgba(255,255,255,0.85) !important; }

/* ============ MESH BACKGROUNDS ============ */
.ch-mesh-bg {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.ch-mesh { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; }
.ch-mesh-1 { top: -150px; left: -100px; width: 600px; height: 600px;
    background: radial-gradient(circle, #667eea, transparent 70%);
    animation: ch-float-1 20s ease-in-out infinite; }
.ch-mesh-2 { top: 30%; right: -100px; width: 700px; height: 700px;
    background: radial-gradient(circle, #f093fb, transparent 70%); opacity: 0.3;
    animation: ch-float-2 25s ease-in-out infinite; }
.ch-mesh-3 { bottom: -200px; left: 30%; width: 500px; height: 500px;
    background: radial-gradient(circle, #4facfe, transparent 70%); opacity: 0.3;
    animation: ch-float-3 30s ease-in-out infinite; }
.ch-mesh-4 { top: 60%; left: -50px; width: 400px; height: 400px;
    background: radial-gradient(circle, #11998e, transparent 70%); opacity: 0.2;
    animation: ch-float-1 22s ease-in-out infinite reverse; }

@keyframes ch-float-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.1); } }
@keyframes ch-float-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px,40px) scale(1.05); } }
@keyframes ch-float-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.15); } }

.ch-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ============ HERO ============ */
.ch-hero {
    position: relative;
    padding: 130px 0 100px;
    background: #0a0a14;
    overflow: hidden;
    color: white;
}
.ch-hero-left, .ch-hero-right { position: relative; z-index: 2; }

.ch-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 50px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; font-weight: 500; margin-bottom: 28px;
    backdrop-filter: blur(10px); color: white;
}
.ch-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #11998e; box-shadow: 0 0 0 0 rgba(17,153,142,0.7);
    animation: ch-pulse 2s infinite;
}
@keyframes ch-pulse {
    0% { box-shadow: 0 0 0 0 rgba(17,153,142,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(17,153,142,0); }
    100% { box-shadow: 0 0 0 0 rgba(17,153,142,0); }
}

.ch-h1 {
    font-size: 60px; font-weight: 800; line-height: 1.05;
    margin-bottom: 24px; color: white; letter-spacing: -1.5px;
}
.ch-gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #4facfe 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto; animation: ch-shine 4s linear infinite;
}
@keyframes ch-shine { to { background-position: 200% center; } }

.ch-subtitle {
    font-size: 18px; line-height: 1.65; color: #94a3b8;
    margin-bottom: 36px; max-width: 580px;
}
.ch-subtitle strong { color: #cbd5e1; font-weight: 600; }
.ch-mx-auto { margin-left: auto; margin-right: auto; }

.ch-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.ch-cta-center { justify-content: center; }
.ch-mt-30 { margin-top: 30px; }

.ch-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 12px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent; cursor: pointer;
}
.ch-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white;
    box-shadow: 0 12px 32px rgba(102,126,234,0.45);
}
.ch-btn-primary:hover { transform: translateY(-2px); color: white; box-shadow: 0 16px 40px rgba(102,126,234,0.6); text-decoration: none; }
.ch-btn-arrow { transition: transform 0.2s; }
.ch-btn-primary:hover .ch-btn-arrow { transform: translateX(4px); }
.ch-btn-ghost {
    background: rgba(255,255,255,0.05); color: white;
    border-color: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
}
.ch-btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.3); text-decoration: none; }
.ch-btn-white { background: white; color: #1e293b; }
.ch-btn-white:hover { transform: translateY(-2px); color: #1e293b; box-shadow: 0 12px 32px rgba(0,0,0,0.25); text-decoration: none; }
.ch-btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.ch-btn-outline-white:hover { background: white; color: #1e293b; text-decoration: none; }

.ch-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.ch-trust-center { justify-content: center; }
.ch-trust-item { font-size: 14px; color: #94a3b8; }
.ch-trust-item strong { color: #cbd5e1; }

/* ============ HERO MOCKUP ============ */
.ch-hero-right { position: relative; min-height: 560px; }
.ch-mockup { position: relative; height: 560px; pointer-events: none; max-width: 100%; }
.ch-mockup > * { pointer-events: auto; }
.ch-mock-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    color: #cbd5e1;
}
.ch-mock-main {
    position: absolute; top: 20px; left: 30px; right: 30px;
    animation: ch-float-card 6s ease-in-out infinite;
    max-width: 480px;
}
@keyframes ch-float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.ch-mock-toolbar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ch-mock-dots { display: flex; gap: 6px; }
.ch-mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.ch-mock-dots span:first-child { background: #ef4444; }
.ch-mock-dots span:nth-child(2) { background: #eab308; }
.ch-mock-dots span:nth-child(3) { background: #22c55e; }
.ch-mock-url { flex: 1; padding: 6px 12px; background: rgba(255,255,255,0.04); border-radius: 6px; font-size: 12px; color: #64748b; font-family: monospace; }
.ch-mock-body { padding: 24px; }
.ch-mock-section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ch-mock-emoji { font-size: 22px; }
.ch-mock-title { font-size: 17px; font-weight: 700; color: white; }
.ch-mock-row { display: flex; justify-content: space-between; padding: 8px 0; }
.ch-mock-label { font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; margin-top: 4px; }
.ch-mock-value { font-size: 16px; font-weight: 700; }
.ch-text-success { color: #22c55e; }
.ch-text-primary { color: #667eea; }
.ch-mock-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 14px 0; }
.ch-mock-action { display: flex; gap: 12px; padding: 8px 0; align-items: flex-start; font-size: 13px; line-height: 1.5; }
.ch-mock-num {
    flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white; font-weight: 700; font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}
.ch-mock-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.ch-mock-tag {
    padding: 4px 10px; border-radius: 50px; font-size: 11px; font-weight: 600;
    background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
    color: #a5b4fc; border: 1px solid rgba(102,126,234,0.2);
}

.ch-mock-float-1 { position: absolute; bottom: 60px; left: 0; width: 200px; padding: 14px 16px; animation: ch-float-card 5s ease-in-out infinite 1s; z-index: 3; }
.ch-mock-float-2 { position: absolute; top: -10px; right: 0; width: 190px; padding: 14px 16px; animation: ch-float-card 7s ease-in-out infinite 0.5s; z-index: 3; }
.ch-mock-float-3 { position: absolute; bottom: -10px; right: 20px; width: 220px; padding: 12px 14px; animation: ch-float-card 5.5s ease-in-out infinite 1.5s; z-index: 3; }
@media (max-width: 1199px) {
    .ch-mock-float-1, .ch-mock-float-2, .ch-mock-float-3 { display: none; }
    .ch-mock-main { left: 0; right: 0; }
}
.ch-mock-mini-head { font-size: 13px; font-weight: 700; color: white; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ch-mock-mini-row { display: flex; justify-content: space-between; font-size: 12px; padding: 4px 0; color: #94a3b8; }
.ch-mock-mini-row span:last-child { color: white; font-weight: 600; }
.ch-mock-mini-total { display: flex; justify-content: space-between; padding: 8px 0 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; font-weight: 700; color: white; }
.ch-mock-mini-stat { display: inline-block; margin-right: 16px; }
.ch-mock-stat-num { font-size: 22px; font-weight: 800; color: white; line-height: 1; }
.ch-mock-stat-lbl { font-size: 11px; color: #64748b; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.ch-mock-chat-bubble { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 10px 14px; border-radius: 14px 14px 14px 4px; font-size: 13px; line-height: 1.4; margin-bottom: 6px; }
.ch-mock-chat-author { font-size: 11px; color: #64748b; padding-left: 4px; }

/* ============ STATS ============ */
.ch-stats { background: linear-gradient(180deg, #0a0a14 0%, #0f172a 100%); padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); color: white; }
.ch-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.ch-stat-num { font-size: 48px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, white 30%, #94a3b8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ch-stat-num .ch-gradient-text { background: linear-gradient(135deg, #667eea 0%, #f093fb 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ch-stat-sm { font-size: 18px; font-weight: 600; color: #94a3b8; -webkit-text-fill-color: #94a3b8; margin-left: 6px; }
.ch-stat-lbl { font-size: 14px; color: #64748b; margin-top: 8px; }

/* ============ SECTION SHELL (DARK) ============ */
.ch-section { padding: 100px 0; position: relative; overflow: hidden; }
.ch-section-dark { background: #0f172a; color: white; }
.ch-section-darker { background: #0a0a14; color: white; }
.ch-section-mid { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); color: white; }
.ch-section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; position: relative; z-index: 2; }
.ch-section-meta { display: inline-block; padding: 6px 14px; border-radius: 50px; background: rgba(102,126,234,0.15); color: #a5b4fc; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 18px; border: 1px solid rgba(102,126,234,0.25); text-transform: uppercase; }
.ch-section-title { font-size: 42px; font-weight: 800; color: white; line-height: 1.15; letter-spacing: -1px; margin: 0; }
.ch-h3 { font-size: 34px; font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.5px; }
.ch-white { color: white !important; }
.ch-rich { font-size: 16px; line-height: 1.75; color: #94a3b8; }
.ch-rich p { margin-bottom: 14px; }
.ch-rich ul, .ch-rich ol { padding-left: 22px; margin-bottom: 14px; }
.ch-rich li { margin-bottom: 8px; }
.ch-rich strong { color: white; font-weight: 700; }

/* ============ FEATURE/PILLAR CARDS (DARK) ============ */
.ch-pillar {
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 36px 28px; height: 100%;
    margin-bottom: 24px; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
}
.ch-pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--p-c1), var(--p-c2)); }
.ch-pillar-1 { --p-c1: #667eea; --p-c2: #764ba2; }
.ch-pillar-2 { --p-c1: #f093fb; --p-c2: #f5576c; }
.ch-pillar-3 { --p-c1: #11998e; --p-c2: #38ef7d; }
.ch-pillar-4 { --p-c1: #4facfe; --p-c2: #00f2fe; }
.ch-pillar:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.ch-pillar-icon-wrap {
    width: 60px; height: 60px; border-radius: 14px;
    background: linear-gradient(135deg, var(--p-c1), var(--p-c2));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.ch-pillar-icon { font-size: 28px; }
.ch-pillar-title { font-size: 19px; font-weight: 700; color: white; margin-bottom: 12px; }
.ch-pillar-desc { font-size: 14px; line-height: 1.65; color: #94a3b8; margin: 0 0 16px; }
.ch-pillar-link { font-size: 13px; font-weight: 600; color: var(--p-c1); }

/* ============ SPLIT (Dark) ============ */
.ch-split { padding: 110px 0; }
.ch-split-content { padding: 0 30px; }
.ch-checklist { margin-top: 24px; display: grid; gap: 10px; }
.ch-check { font-size: 14px; color: #cbd5e1; padding-left: 4px; }
.ch-check::before { content: '✓ '; color: #22c55e; font-weight: 700; }

/* ============ PRODUCT CARD (used in splits, dark) ============ */
.ch-product-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.85), rgba(15,23,42,0.85));
    border-radius: 24px; padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    max-width: 480px; margin: 0 auto;
    color: #cbd5e1;
}
.ch-pc-header { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ch-pc-emoji { font-size: 32px; }
.ch-pc-title { font-size: 16px; font-weight: 700; color: white; }
.ch-pc-sub { font-size: 12px; color: #64748b; }
.ch-pc-badge { margin-left: auto; padding: 4px 10px; border-radius: 50px; background: linear-gradient(135deg, #11998e, #38ef7d); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; }
.ch-pc-badge-pink { background: linear-gradient(135deg, #f093fb, #f5576c); }
.ch-pc-section { margin-bottom: 16px; }
.ch-pc-section h6 { font-size: 12px; font-weight: 700; color: #94a3b8; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.ch-pc-section p, .ch-pc-section ul, .ch-pc-section ol { font-size: 14px; line-height: 1.6; color: #cbd5e1; margin: 0; padding: 0; }
.ch-pc-section ul, .ch-pc-section ol { padding-left: 20px; }
.ch-pc-section li { padding: 3px 0; }
.ch-pc-highlight { background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1)); padding: 16px; border-radius: 14px; border-left: 4px solid #667eea; }
.ch-pc-section strong { color: white; }

.ch-bom-table { width: 100%; border-collapse: collapse; font-size: 14px; color: #cbd5e1; }
.ch-bom-table th { text-align: left; padding: 10px 8px; font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ch-bom-table td { padding: 10px 8px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #cbd5e1; }
.ch-bom-table th:nth-child(2), .ch-bom-table th:nth-child(3), .ch-bom-table td:nth-child(2), .ch-bom-table td:nth-child(3) { text-align: right; }
.ch-bom-table tfoot td { background: linear-gradient(135deg, rgba(240,147,251,0.1), rgba(245,87,108,0.1)); border-top: 2px solid #f5576c; border-bottom: none; font-weight: 700; padding: 14px 8px; color: white; }
.ch-bom-btn { margin-top: 16px; width: 100%; padding: 14px; border: none; border-radius: 12px; background: linear-gradient(135deg, #11998e, #38ef7d); color: white; font-weight: 700; font-size: 14px; cursor: pointer; box-shadow: 0 8px 20px rgba(17,153,142,0.3); transition: all 0.2s; }
.ch-bom-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,153,142,0.45); }

/* ============ HOW IT WORKS STEPS ============ */
.ch-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ch-step {
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 32px 28px;
    position: relative; overflow: hidden;
}
.ch-step-num {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 22px;
    margin-bottom: 20px; box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}
.ch-step-title { font-size: 19px; font-weight: 700; color: white; margin-bottom: 10px; }
.ch-step-desc { font-size: 14px; line-height: 1.7; color: #94a3b8; }

/* ============ INTEGRATIONS GRID ============ */
.ch-integrations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; max-width: 1000px; margin: 0 auto; }
.ch-integration-tile {
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 22px 16px; text-align: center;
    transition: all 0.3s;
}
.ch-integration-tile:hover { transform: translateY(-3px); border-color: rgba(102,126,234,0.4); }
.ch-int-emoji { font-size: 32px; margin-bottom: 8px; line-height: 1; }
.ch-int-name { font-size: 13px; font-weight: 600; color: #cbd5e1; }

/* ============ TESTIMONIALS ============ */
.ch-testimonial-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 32px;
    margin-bottom: 24px; height: 100%;
}
.ch-stars { color: #fbbf24; font-size: 18px; margin-bottom: 16px; }
.ch-testimonial-quote { font-size: 16px; line-height: 1.7; color: #cbd5e1; font-style: italic; margin-bottom: 24px; }
.ch-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ch-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #f093fb);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 16px;
}
.ch-testimonial-name { font-size: 15px; font-weight: 700; color: white; }
.ch-testimonial-role { font-size: 13px; color: #64748b; }

/* ============ MODULE CARDS (DARK) ============ */
.ch-module-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px 26px; height: 100%;
    margin-bottom: 24px; transition: all 0.3s;
}
.ch-module-card:hover { transform: translateY(-4px); border-color: rgba(102,126,234,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.ch-module-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.ch-module-desc { font-size: 14px; line-height: 1.65; color: #94a3b8; margin: 0; }

/* ============ COMPARISON (DARK) ============ */
.ch-comparison-table-wrap { overflow-x: auto; background: rgba(30,41,59,0.5); border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); }
.ch-comparison-table { width: 100%; border-collapse: collapse; min-width: 720px; color: #cbd5e1; }
.ch-comparison-table th, .ch-comparison-table td { padding: 18px 20px; text-align: center; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ch-comparison-table th { background: linear-gradient(180deg, #1e293b, #0f172a); color: white; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.ch-comparison-table th.ch-us { background: linear-gradient(135deg, #667eea, #764ba2); position: relative; }
.ch-comparison-table th.ch-us::after { content: '⭐'; position: absolute; top: 6px; right: 12px; font-size: 14px; }
.ch-comparison-table td:first-child { text-align: left; font-weight: 600; color: white; }
.ch-comparison-table td.ch-us { background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15)); font-weight: 700; color: #a5b4fc; }
.ch-comparison-table td.ch-warn { color: #fbbf24; font-size: 13px; }
.ch-comparison-table tr:hover { background: rgba(255,255,255,0.02); }

/* ============ CTA BANNER ============ */
.ch-cta-banner { position: relative; padding: 100px 0; color: white; background: linear-gradient(135deg, #4338ca 0%, #7e22ce 50%, #be185d 100%); overflow: hidden; }
.ch-cta-banner-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

/* ============ FAQ (DARK) ============ */
.ch-faq-item {
    margin-bottom: 14px; padding: 22px 26px;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
    background: linear-gradient(135deg, rgba(30,41,59,0.5), rgba(15,23,42,0.3));
    transition: all 0.2s; backdrop-filter: blur(10px);
}
.ch-faq-item[open] { border-color: rgba(102,126,234,0.5); box-shadow: 0 10px 30px rgba(102,126,234,0.15); background: linear-gradient(135deg, rgba(30,41,59,0.7), rgba(15,23,42,0.5)); }
.ch-faq-q { font-size: 16px; font-weight: 700; color: white; cursor: pointer; list-style: none; outline: none; padding-right: 30px; position: relative; }
.ch-faq-q::-webkit-details-marker { display: none; }
.ch-faq-q::after { content: '+'; position: absolute; right: 0; top: -2px; font-size: 24px; color: #a5b4fc; font-weight: 600; transition: transform 0.2s; }
.ch-faq-item[open] .ch-faq-q::after { transform: rotate(45deg); }
.ch-faq-a { padding-top: 14px; font-size: 15px; line-height: 1.7; color: #94a3b8; }

/* ============ INDUSTRIES PROBLEM/SOLUTION (DARK) ============ */
.ch-problem-card {
    display: flex; gap: 18px; padding: 28px 24px;
    border: 1px solid rgba(239,68,68,0.2); border-radius: 16px; margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(239,68,68,0.05), rgba(15,23,42,0.4));
    transition: all 0.3s;
}
.ch-problem-card:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(239,68,68,0.15); }
.ch-problem-icon { font-size: 36px; flex: 0 0 auto; line-height: 1; }
.ch-problem-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
.ch-problem-desc { font-size: 14px; line-height: 1.65; color: #94a3b8; margin: 0; }

.ch-solution-card {
    background: linear-gradient(135deg, rgba(17,153,142,0.06), rgba(15,23,42,0.4));
    padding: 30px 26px; border-radius: 18px; height: 100%;
    margin-bottom: 24px; border: 1px solid rgba(17,153,142,0.2); transition: all 0.3s;
}
.ch-solution-card:hover { transform: translateY(-4px); border-color: rgba(17,153,142,0.5); box-shadow: 0 20px 50px rgba(17,153,142,0.15); }
.ch-solution-icon { font-size: 36px; line-height: 1; margin-bottom: 16px; display: inline-flex; padding: 14px; border-radius: 14px; background: linear-gradient(135deg, rgba(17,153,142,0.15), rgba(56,239,125,0.15)); }
.ch-solution-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
.ch-solution-desc { font-size: 14px; line-height: 1.65; color: #94a3b8; margin: 0; }

.ch-usecase-card {
    padding: 50px; border-radius: 24px;
    background: linear-gradient(135deg, rgba(245,87,108,0.08), rgba(15,23,42,0.5));
    border: 1px solid rgba(245,87,108,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.ch-usecase-card .ch-section-meta { background: rgba(245,87,108,0.15); color: #fda4af; border-color: rgba(245,87,108,0.3); }

.ch-whofor-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
.ch-whofor-tag {
    padding: 12px 24px; border-radius: 50px;
    background: rgba(30,41,59,0.6); border: 1px solid rgba(255,255,255,0.1);
    font-size: 15px; font-weight: 500; color: #cbd5e1; transition: all 0.2s;
}
.ch-whofor-tag:hover { background: linear-gradient(135deg, #667eea, #764ba2); color: white; border-color: transparent; transform: translateY(-2px); }

.ch-other-card {
    display: block; padding: 28px 24px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08); height: 100%;
    margin-bottom: 24px; text-decoration: none; color: inherit;
    transition: all 0.3s;
}
.ch-other-card:hover { transform: translateY(-4px); border-color: rgba(102,126,234,0.5); box-shadow: 0 20px 50px rgba(102,126,234,0.15); text-decoration: none; }
.ch-other-card h4 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
.ch-other-card p { font-size: 13px; line-height: 1.5; color: #94a3b8; margin-bottom: 12px; }
.ch-other-link { font-size: 13px; font-weight: 600; color: #a5b4fc; }

/* ============ PRICING (DARK) ============ */
.ch-pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 50px; }
.ch-pricing-period { font-size: 16px; font-weight: 600; color: #94a3b8; cursor: pointer; }
.ch-pricing-period.active { color: white; }
.ch-toggle-switch { position: relative; width: 60px; height: 32px; cursor: pointer; }
.ch-toggle-switch input { opacity: 0; width: 0; height: 0; }
.ch-toggle-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(102,126,234,0.3); border-radius: 32px; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.ch-toggle-slider::before { position: absolute; content: ''; height: 26px; width: 26px; left: 3px; top: 2px; background: white; border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ch-toggle-switch input:checked + .ch-toggle-slider { background: linear-gradient(135deg, #667eea, #764ba2); }
.ch-toggle-switch input:checked + .ch-toggle-slider::before { transform: translateX(28px); }
.ch-yearly-badge { display: inline-block; padding: 3px 10px; border-radius: 50px; background: linear-gradient(135deg, #11998e, #38ef7d); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-left: 6px; }

.ch-price-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.7), rgba(15,23,42,0.5));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px; padding: 40px 32px; height: 100%;
    margin-bottom: 28px; transition: all 0.3s; position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
}
.ch-price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.ch-price-card-featured {
    border: 2px solid transparent;
    background:
        linear-gradient(135deg, rgba(30,41,59,0.9), rgba(15,23,42,0.75)) padding-box,
        linear-gradient(135deg, #667eea, #f093fb) border-box;
    box-shadow: 0 30px 70px rgba(102,126,234,0.3);
    margin-top: 0;
}
.ch-price-featured-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    padding: 8px 22px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50px; color: white;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    box-shadow: 0 8px 24px rgba(102,126,234,0.5);
    white-space: nowrap;
    z-index: 5;
}
.ch-price-name { font-size: 14px; font-weight: 700; color: #94a3b8; letter-spacing: 1.5px; margin-bottom: 12px; text-transform: uppercase; }
.ch-price-amount {
    display: flex; align-items: baseline; gap: 4px;
    font-weight: 800; color: white; line-height: 1;
    margin-bottom: 6px; letter-spacing: -2px;
}
.ch-price-amount .ch-price-currency { font-size: 28px; font-weight: 700; color: #94a3b8; letter-spacing: 0; }
.ch-price-amount .ch-price-num { font-size: 64px; font-weight: 800; color: white; }
.ch-price-period { font-size: 14px; font-weight: 500; color: #64748b; margin-bottom: 20px; }
.ch-price-desc { font-size: 14px; line-height: 1.7; color: #94a3b8; margin-bottom: 24px; min-height: 60px; }
.ch-price-features { list-style: none; padding: 0; margin: 0 0 28px; }
.ch-price-features li { padding: 8px 0; color: #cbd5e1; font-size: 14px; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.ch-price-features li:last-child { border-bottom: none; }
.ch-price-features .ch-yes { color: #22c55e; font-weight: 700; flex: 0 0 auto; }
.ch-price-features .ch-no { color: #64748b; flex: 0 0 auto; }
.ch-price-features .ch-no + span { color: #64748b; }
.ch-price-cta { display: block; text-align: center; padding: 14px; border-radius: 12px; background: linear-gradient(135deg, #667eea, #764ba2); color: white; font-weight: 700; font-size: 15px; transition: all 0.2s; text-decoration: none; }
.ch-price-cta:hover { transform: translateY(-2px); color: white; box-shadow: 0 12px 30px rgba(102,126,234,0.5); text-decoration: none; }

/* ============ INDUSTRIES INDEX CARDS (DARK) ============ */
.ch-industry-card {
    display: block; padding: 36px 30px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(30,41,59,0.6), rgba(15,23,42,0.4));
    border: 1px solid rgba(255,255,255,0.08); height: 100%;
    margin-bottom: 28px; text-decoration: none; color: inherit;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.ch-industry-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #667eea, #764ba2); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.ch-industry-card:hover { transform: translateY(-6px); border-color: rgba(102,126,234,0.5); box-shadow: 0 25px 60px rgba(102,126,234,0.2); text-decoration: none; color: inherit; }
.ch-industry-card:hover::before { transform: scaleX(1); }
.ch-industry-card-title { font-size: 22px; font-weight: 800; color: white; margin-bottom: 12px; }
.ch-industry-card-desc { font-size: 15px; line-height: 1.6; color: #94a3b8; margin-bottom: 20px; }
.ch-industry-card-link { font-size: 14px; font-weight: 600; color: #a5b4fc; }

/* ============ CONTACT FORM (DARK) ============ */
.ch-form-card { background: linear-gradient(135deg, rgba(30,41,59,0.7), rgba(15,23,42,0.5)); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 50px; backdrop-filter: blur(10px); }
.ch-form-group { margin-bottom: 22px; }
.ch-form-label { display: block; font-size: 14px; font-weight: 600; color: white; margin-bottom: 8px; }
.ch-form-control { width: 100%; padding: 14px 18px; background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-size: 15px; transition: all 0.2s; }
.ch-form-control:focus { outline: none; border-color: #667eea; box-shadow: 0 0 0 3px rgba(102,126,234,0.2); background: rgba(15,23,42,0.8); }
.ch-form-control::placeholder { color: #475569; }
textarea.ch-form-control { min-height: 140px; resize: vertical; }

/* ============ FOOTER (DARK) ============ */
.crmhub-premium .footer, .crmhub-premium footer.footer {
    background: #050510 !important; color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.crmhub-premium .footer h6, .crmhub-premium .footer h4 { color: white; margin-bottom: 18px; font-weight: 700; }
.crmhub-premium .footer a { color: #94a3b8; transition: color 0.2s; }
.crmhub-premium .footer a:hover { color: white; text-decoration: none; }
.crmhub-premium .footer ul { list-style: none; padding: 0; }
.crmhub-premium .footer li { padding: 4px 0; }

/* ============ KANBAN MOCKUP ============ */
.ch-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ch-kb-col { background: rgba(15,23,42,0.5); border-radius: 10px; padding: 10px 8px; min-height: 220px; }
.ch-kb-col-head { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: #94a3b8; padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); text-transform: uppercase; letter-spacing: 0.5px; }
.ch-kb-count { background: rgba(102,126,234,0.2); color: #a5b4fc; padding: 1px 7px; border-radius: 50px; font-size: 10px; }
.ch-kb-card { background: linear-gradient(135deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95)); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 10px; margin-bottom: 6px; cursor: grab; transition: all 0.2s; }
.ch-kb-card:hover { transform: translateX(2px); border-color: rgba(102,126,234,0.4); }
.ch-kb-name { font-size: 12px; font-weight: 600; color: white; margin-bottom: 4px; }
.ch-kb-meta { display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.ch-kb-tag { padding: 2px 6px; border-radius: 50px; font-weight: 700; font-size: 9px; }
.ch-tag-fb { background: rgba(59,130,246,0.2); color: #60a5fa; }
.ch-tag-google { background: rgba(34,197,94,0.2); color: #4ade80; }
.ch-tag-ref { background: rgba(168,85,247,0.2); color: #c084fc; }
.ch-tag-hot { background: rgba(239,68,68,0.2); color: #f87171; }
.ch-tag-warm { background: rgba(251,191,36,0.2); color: #fbbf24; }
.ch-kb-val { font-weight: 700; color: #cbd5e1; font-size: 11px; }
.ch-kb-ghost { background: transparent; border: 1px dashed rgba(255,255,255,0.1); color: #64748b; text-align: center; font-size: 11px; padding: 12px 8px; }
.ch-kb-highlight { border-color: rgba(245,158,11,0.5); box-shadow: 0 0 0 1px rgba(245,158,11,0.2); }
.ch-kb-won { border-color: rgba(34,197,94,0.4); background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(15,23,42,0.95)); }

/* ============ DASHBOARD MOCKUP ============ */
.ch-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.ch-dash-card { padding: 14px; border-radius: 12px; background: linear-gradient(135deg, rgba(30,41,59,0.7), rgba(15,23,42,0.7)); border: 1px solid rgba(255,255,255,0.06); }
.ch-dash-1 { border-top: 3px solid #22c55e; }
.ch-dash-2 { border-top: 3px solid #667eea; }
.ch-dash-3 { border-top: 3px solid #f093fb; }
.ch-dash-4 { border-top: 3px solid #4facfe; }
.ch-dash-lbl { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.ch-dash-val { font-size: 22px; font-weight: 800; color: white; line-height: 1; margin-bottom: 4px; }
.ch-dash-trend { font-size: 11px; color: #22c55e; font-weight: 600; }
.ch-dash-chart { padding: 16px; border-radius: 12px; background: rgba(15,23,42,0.5); border: 1px solid rgba(255,255,255,0.06); }
.ch-chart-bars { display: flex; align-items: flex-end; height: 100px; gap: 6px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ch-bar { flex: 1; background: linear-gradient(180deg, rgba(102,126,234,0.6), rgba(102,126,234,0.2)); border-radius: 4px 4px 0 0; transition: all 0.3s; }
.ch-bar-active { background: linear-gradient(180deg, #667eea, #764ba2); box-shadow: 0 0 20px rgba(102,126,234,0.5); }
.ch-chart-labels { display: flex; gap: 6px; padding-top: 8px; font-size: 10px; color: #64748b; }
.ch-chart-labels span { flex: 1; text-align: center; }

/* ============ INVOICE MOCKUP ============ */
.ch-inv { padding: 8px 0; }
.ch-inv-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
.ch-inv-lbl { color: #94a3b8; }
.ch-inv-val { color: white; font-weight: 600; }
.ch-inv-total { background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.05)); padding: 14px 12px; border-radius: 10px; margin-top: 8px; border: 1px solid rgba(102,126,234,0.2); border-bottom: 1px solid rgba(102,126,234,0.2); }
.ch-inv-total span { color: white; font-weight: 700; }
.ch-inv-bank { margin-top: 16px; padding: 14px; background: linear-gradient(135deg, rgba(79,172,254,0.08), rgba(0,242,254,0.04)); border-radius: 10px; border-left: 3px solid #4facfe; }
.ch-inv-bank-head { font-size: 12px; font-weight: 700; color: #4facfe; margin-bottom: 6px; }
.ch-inv-bank-row { font-size: 12px; color: #94a3b8; padding: 2px 0; font-family: monospace; }

/* ============ CAMPAIGN MOCKUP ============ */
.ch-camp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.ch-camp-stat { padding: 14px; border-radius: 10px; background: rgba(15,23,42,0.5); border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.ch-camp-num { font-size: 22px; font-weight: 800; color: white; line-height: 1; margin-bottom: 4px; }
.ch-camp-lbl { font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.ch-camp-ab { padding: 14px; background: linear-gradient(135deg, rgba(240,147,251,0.06), rgba(245,87,108,0.04)); border-radius: 10px; border: 1px solid rgba(240,147,251,0.2); }
.ch-camp-ab-head { font-size: 12px; font-weight: 700; color: #f9a8d4; margin-bottom: 10px; }
.ch-camp-ab-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 12px; color: #cbd5e1; border-bottom: 1px dashed rgba(255,255,255,0.05); }
.ch-camp-ab-row:last-child { border-bottom: none; }
.ch-camp-ab-letter { width: 22px; height: 22px; border-radius: 6px; background: rgba(102,126,234,0.2); color: #a5b4fc; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; }
.ch-camp-ab-row span:nth-child(2) { flex: 1; }
.ch-camp-ab-winner { background: rgba(34,197,94,0.05); border-radius: 6px; padding: 6px 8px; margin: 4px -8px; }
.ch-camp-ab-winner .ch-camp-ab-letter { background: linear-gradient(135deg, #22c55e, #4ade80); color: white; }

/* ============ FINAL CTA ============ */
.ch-final-cta { position: relative; padding: 120px 0; color: white; background: #0a0a14; overflow: hidden; }
.ch-final-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .ch-h1 { font-size: 46px; }
    .ch-mockup { height: 450px; margin-top: 60px; transform: scale(0.85); }
    .ch-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ch-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ch-h1 { font-size: 34px; letter-spacing: -1px; }
    .ch-section-title { font-size: 28px; }
    .ch-h3 { font-size: 24px; }
    .ch-hero { padding: 100px 0 60px; }
    .ch-section, .ch-split, .ch-cta-banner, .ch-final-cta { padding: 60px 0; }
    .ch-mockup { height: 400px; transform: scale(0.7); }
    .ch-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ch-stat-num { font-size: 36px; }
    .ch-trust { gap: 14px; font-size: 13px; }
    .ch-comparison-table th, .ch-comparison-table td { padding: 12px 10px; font-size: 13px; }
    .ch-form-card { padding: 30px 24px; }
    .ch-usecase-card { padding: 30px 24px; }
}
