/* ============================================================
   Jesto CRM — Version 3 (V1 Blue Theme)
   Ubuntu · Clean blue hero · HubSpot-style feature tabs
   ============================================================ */

:root {
    --c-primary:  #0000FF;
    --c-accent:   #2222FF;
    --c-dark:     #00001A;
    --c-green:    #10b981;
    --c-orange:   #f59e0b;
    --c-red:      #ef4444;

    --c-text:     #0f172a;
    --c-body:     #334155;
    --c-soft:     #334155;
    --c-muted:    #64748b;
    --c-border:   #e2e8f0;
    --c-bg:       #F0F0FF;
    --c-white:    #ffffff;

    --grad-main:    linear-gradient(135deg, #0000FF, #2200CC);
    --grad-dark:    linear-gradient(135deg, #000055, #0000FF);
    --grad-vdark:   linear-gradient(135deg, #000011 0%, #000055 50%, #000088 100%);
    --grad-closing: linear-gradient(135deg, #F0F0FF 0%, #E8E8FF 50%, #F0F0FF 100%);
    --grad-cta:     linear-gradient(135deg, #000055, #0000FF, #000055);

    --r-lg:  24px;
    --r-md:  16px;
    --r-sm:  10px;
    --r-xs:  6px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset helpers ---- */
.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}
@media (max-width: 768px)  { .container-1400 { padding: 0 24px; } }
@media (max-width: 480px)  { .container-1400 { padding: 0 16px; } }

/* ---- Reveal: NO CSS hiding. JS does inline styles. ---- */
.crm-line { display: block; }

/* ---- Gradient text ---- */
.crm-gradient-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}


/* ================================================================
   HERO — Base (show/hide)
   ================================================================ */
.crm-hero { display: none; position: relative; overflow: hidden; }
.crm-hero.crm-hero-active { display: block; }

/* ================================================================
   HERO A — Orbit: Dark navy, centered, floating avatars
   ================================================================ */
.crm-hero--A {
    background: linear-gradient(135deg, #00001A 0%, #000055 45%, #000044 80%, #000011 100%);
    padding: 110px 0 106px;
    min-height: 680px;
}

/* Ambient orbs */
.crm-hero--A .crm-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.crm-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.crm-orb-1 {
    width: 600px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,0,255,0.32) 0%, transparent 70%);
    top: -140px; left: -60px;
}
.crm-orb-2 {
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,0,255,0.2) 0%, transparent 70%);
    bottom: -100px; right: -60px;
}
.crm-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.18) 0%, transparent 70%);
    top: 30%; right: 20%;
}

/* Floating avatar ring */
.crm-hav-ring { position: absolute; inset: 0; pointer-events: none; }
.crm-hav {
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 15px;
    border: 3px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: havFloat 6s ease-in-out infinite;
}
.crm-hav-1 { top: 10%; left:  5%; animation-delay: 0s; }
.crm-hav-2 { top: 22%; left: 16%; animation-delay: 0.8s; width: 48px; height: 48px; font-size: 13px; }
.crm-hav-3 { top: 62%; left:  4%; animation-delay: 1.6s; }
.crm-hav-4 { top: 78%; left: 18%; animation-delay: 0.4s; width: 50px; height: 50px; }
.crm-hav-5 { top: 12%; right: 16%; animation-delay: 1.2s; }
.crm-hav-6 { top:  8%; right:  5%; animation-delay: 2.0s; width: 48px; height: 48px; font-size: 13px; }
.crm-hav-7 { top: 68%; right: 16%; animation-delay: 0.6s; width: 50px; height: 50px; }
.crm-hav-8 { top: 78%; right:  5%; animation-delay: 1.8s; }
@keyframes havFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

/* Stat mini-cards */
.crm-hav-stat {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column; gap: 3px;
    animation: havFloat 5s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.crm-hav-stat-1 { top: 38%; left: 3%; animation-delay: 1s; }
.crm-hav-stat-2 { top: 42%; right: 3%; animation-delay: 0.5s; }
.crm-hav-stat-num { font-size: 18px; font-weight: 800; color: #fff; line-height: 1; }
.crm-hav-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); }

/* Center content */
.crm-hero-center {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.crm-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,0,255,0.18);
    border: 1px solid rgba(0,0,255,0.4);
    color: #AAAAFF;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
}
.crm-hero--A h1 {
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 22px;
    letter-spacing: -1.5px;
}
.crm-hero--A .crm-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0 auto 38px;
    max-width: 560px;
}
.crm-hero-form {
    display: flex; gap: 10px;
    max-width: 520px;
    margin: 0 auto 14px;
}
.crm-hero-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
    font-family: 'Ubuntu', sans-serif;
    outline: none;
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s;
}
.crm-hero-form input[type="email"]::placeholder { color: rgba(255,255,255,0.38); }
.crm-hero-form input[type="email"]:focus {
    border-color: rgba(0,0,255,0.7);
    background: rgba(255,255,255,0.12);
}
.crm-hero-form button {
    padding: 15px 26px;
    background: var(--c-primary);
    border: none; border-radius: 10px;
    color: #fff; font-size: 15px; font-weight: 700;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,255,0.4);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.crm-hero-form button:hover {
    background: #0000DD;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,255,0.5);
}
.crm-hero--A .crm-hero-note {
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    margin: 0 0 30px;
}
.crm-hero-proof {
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.crm-hero-proof-avs { display: flex; }
.crm-hero-proof-avs span {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,17,0.8);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 11px; font-weight: 700;
    margin-left: -9px;
}
.crm-hero-proof-avs span:first-child { margin-left: 0; }
.crm-hero-proof > span { font-size: 14px; color: rgba(255,255,255,0.55); }
.crm-hero-proof b { color: rgba(255,255,255,0.9); }

/* ================================================================
   HERO B — Momentum: Light bg, split layout, metric cards
   ================================================================ */
.crm-hero--B {
    background: #f8fafc;
    background-image: radial-gradient(rgba(0,0,255,0.055) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    padding: 88px 0 88px;
    min-height: 620px;
}
.crm-hero--B-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.crm-hero--B-left { position: relative; z-index: 2; }
.crm-hero-badge--dark {
    background: #EEEEFF;
    border-color: #BBBBFF;
    color: var(--c-primary);
}
.crm-hero--B h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--c-dark);
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -1px;
}
.crm-hero--B .crm-hero-sub {
    font-size: 17px;
    color: #64748b;
    line-height: 1.75;
    margin: 0 0 30px;
    max-width: 480px;
}
.crm-hero-actions {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 20px;
}
.crm-hero-actions--center { justify-content: center; }
.crm-hero-note--dark { font-size: 12.5px; color: #94a3b8; margin: 0 0 26px; }
.crm-hero-proof--dark > span { font-size: 14px; color: #64748b; }
.crm-hero-proof--dark b { color: var(--c-dark); }
.crm-hero-proof-avs--dark span { border-color: #f8fafc; }

/* Metric cards */
.crm-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.crm-mc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}
.crm-mc:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.09); }
.crm-mc-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.crm-mc-val {
    font-size: 30px; font-weight: 800;
    color: var(--c-dark);
    line-height: 1; margin-bottom: 4px;
}
.crm-mc-lbl { font-size: 13px; color: #64748b; margin-bottom: 10px; }
.crm-mc-delta {
    font-size: 11.5px; font-weight: 600; color: #16a34a;
    display: flex; align-items: center; gap: 5px;
}

/* ================================================================
   HERO C — Impact: Dark, massive bold typography
   ================================================================ */
.crm-hero--C {
    background: #00000F;
    padding: 116px 0 112px;
    min-height: 680px;
}
.crm-hero--C::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 18% 45%, rgba(0,0,255,0.28) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 82% 55%, rgba(139,92,246,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.crm-hero--C .crm-hero-center {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
}
.crm-hero--C-h1 {
    font-size: clamp(46px, 7.5vw, 92px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 26px;
    letter-spacing: -3px;
}
.crm-hero--C-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #0000FF, #8888FF, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.crm-hero--C .crm-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 44px;
}
.crm-hero--C .crm-hero-actions { justify-content: center; margin-bottom: 52px; }

/* Trust row */
.crm-trust-row {
    display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.crm-trust-avs { display: flex; }
.crm-trust-avs span {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid #00000F;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px; font-weight: 700;
    margin-left: -10px;
}
.crm-trust-avs span:first-child { margin-left: 0; }
.crm-trust-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.15); }
.crm-trust-rating { display: flex; align-items: center; gap: 7px; }
.crm-trust-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.crm-trust-score { font-size: 14px; color: rgba(255,255,255,0.5); }
.crm-trust-score b { color: rgba(255,255,255,0.85); }
.crm-trust-count { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ================================================================
   HERO — Responsive
   ================================================================ */
@media (max-width: 900px) {
    .crm-hav, .crm-hav-stat { display: none; }
    .crm-hero--B-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
    .crm-hero-form { flex-direction: column; }
    .crm-hero--C-h1 { letter-spacing: -1.5px; }
    .crm-trust-sep { display: none; }
    .crm-metrics-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HERO DASHBOARD MOCKUP (legacy — kept for reference, not rendered)
   ================================================================ */
.crm-db-card--legacy {
    background: #fff;
    border: 1px solid rgba(0,0,255,0.15);
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,255,0.15), 0 8px 24px rgba(0,0,0,0.07);
    width: 100%;
    max-width: 580px;
    overflow: hidden;
}

/* Browser chrome bar */
.crm-db-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.crm-chrome-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.crm-cd-red    { background: #ff5f57; }
.crm-cd-yellow { background: #ffbd2e; }
.crm-cd-green  { background: #28c941; }
.crm-db-chrome-url {
    margin-left: 8px;
    font-size: 0.68rem;
    color: #94a3b8;
    background: #e2e8f0;
    padding: 3px 12px;
    border-radius: 100px;
}

/* App shell: sidebar + main */
.crm-db-shell {
    display: flex;
    height: 390px;
    overflow: hidden;
}

/* ── Sidebar ── */
.crm-db-sidebar {
    width: 50px;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    flex-shrink: 0;
    gap: 0;
}
.crm-db-slogo {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0000FF, #000055);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,255,0.4);
}
.crm-db-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.crm-db-navitem {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    cursor: default;
    transition: background 0.2s, color 0.2s;
}
.crm-db-navitem--active {
    background: rgba(0,0,255,0.25);
    color: #8888FF;
}
.crm-db-sav {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #0000FF;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* ── Main panel ── */
.crm-db-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    overflow: hidden;
    min-width: 0;
}

/* Top bar */
.crm-db-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.crm-db-topbar-left { display: flex; flex-direction: column; gap: 1px; }
.crm-db-pagetitle { font-size: 0.8rem; font-weight: 800; color: #0f172a; }
.crm-db-greet { font-size: 0.63rem; color: #94a3b8; }
.crm-db-topbar-right { display: flex; align-items: center; gap: 8px; }
.crm-db-tbicon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.62rem;
    color: #64748b;
    position: relative;
}
.crm-db-notif-dot {
    position: absolute;
    top: -2px; right: -2px;
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    border: 1.5px solid #fff;
}
.crm-db-tav {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0000FF,#7c3aed);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* KPI cards row */
.crm-db-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px 12px 0;
    flex-shrink: 0;
}
.crm-db-kpi {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 9px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}
.crm-db-kpi-icon {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
}
.crm-db-kpi-body { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.crm-db-kpi-lbl { font-size: 0.55rem; color: #94a3b8; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-db-kpi-val { font-size: 0.88rem; font-weight: 800; color: #0f172a; line-height: 1; }
.crm-db-kpi-delta { font-size: 0.52rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; padding-top: 2px; }
.crm-db-kpi-delta.up { color: #16a34a; }
.crm-db-kpi-delta.down { color: #dc2626; }

/* Body: chart left, deals right */
.crm-db-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 7px 12px 10px;
    flex: 1;
    overflow: hidden;
}

/* Shared panel head */
.crm-db-panel-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.crm-db-panel-hd span:first-child { font-size: 0.68rem; font-weight: 700; color: #0f172a; }
.crm-db-chip {
    font-size: 0.55rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 100px;
    font-weight: 500;
}
.crm-db-chip--link { color: #0000FF; background: #EEEEFF; font-weight: 600; cursor: default; }

/* Bar chart */
.crm-db-chart {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
}
.crm-db-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex: 1;
    height: 80px;
}
.crm-db-bcol {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.crm-db-bar {
    width: 100%;
    background: #DDDDFF;
    border-radius: 3px 3px 0 0;
    transition: height 0s;
}
.crm-db-bar--hi { background: linear-gradient(180deg, #0000FF, #000055); }
.crm-db-bcol span { font-size: 0.5rem; color: #94a3b8; }

/* Deals list */
.crm-db-deals {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 10px 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.crm-db-deal:nth-child(n+5) { display: none; }
.crm-db-deal {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    border-bottom: 1px solid #f1f5f9;
}
.crm-db-deal:last-child { border-bottom: none; }
.crm-db-dav {
    width: 22px; height: 22px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.crm-db-dinfo { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.crm-db-dinfo b { font-size: 0.62rem; font-weight: 700; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm-db-dinfo em { font-size: 0.55rem; color: #64748b; font-style: normal; }
.crm-db-badge { font-size: 0.5rem; font-weight: 700; padding: 2px 6px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.crm-db-badge--won  { background: #dcfce7; color: #166534; }
.crm-db-badge--prop { background: #ede9fe; color: #5b21b6; }
.crm-db-badge--qual { background: #fef9c3; color: #854d0e; }
.crm-db-badge--new  { background: #DDDDFF; color: #1d4ed8; }

/* Floating cards */
.crm-float-notify {
    position: absolute;
    bottom: -18px;
    right: -22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000055;
    color: #fff;
    border-radius: 12px;
    padding: 13px 18px;
    box-shadow: 0 12px 36px rgba(26,58,92,0.4);
    white-space: nowrap;
    animation: floatBob 4s ease-in-out infinite;
    z-index: 3;
}
.crm-fn-icon { font-size: 1.1rem; color: #10b981; }
.crm-fn-text { display: flex; flex-direction: column; gap: 2px; }
.crm-fn-text strong { font-size: 0.8rem; font-weight: 700; }
.crm-fn-text span { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

.crm-float-ai {
    position: absolute;
    top: 28px;
    left: -22px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #0f172a;
    border: 1px solid rgba(96,165,250,0.25);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    white-space: nowrap;
    animation: floatBob 5s ease-in-out infinite 1.5s;
    z-index: 3;
}
.crm-float-ai-ico {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(0,0,255,0.25);
    color: #8888FF;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}


/* ================================================================
   HERO D — Neon Dark (animated cyan gradient heading)
   ================================================================ */
.crm-hero--D {
    background: #000009;
    padding: 110px 0 106px; min-height: 680px;
}
.crm-hero--D::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 38%, rgba(0,200,255,0.14) 0%, transparent 65%);
    pointer-events: none;
}
.crm-hero--D .crm-hero-center { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.crm-hero--D h1 {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 800; color: #fff;
    line-height: 1.12; margin: 0 0 22px; letter-spacing: -1.5px;
}
.crm-hero--D-span {
    background: linear-gradient(90deg, #00c8ff, #0000FF, #00e5ff, #0000FF);
    background-size: 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: neonShift 4s linear infinite;
}
@keyframes neonShift { 0% { background-position: 0%; } 100% { background-position: 300%; } }
.crm-hero--D .crm-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; margin: 0 auto 38px; max-width: 560px; }
.crm-hero-form--neon input[type="email"] { border-color: rgba(0,200,255,0.3) !important; }
.crm-hero-form--neon input[type="email"]:focus { border-color: rgba(0,200,255,0.7) !important; }
.crm-hero-form--neon button { background: linear-gradient(90deg, #0090cc, #00c8ff) !important; box-shadow: 0 4px 20px rgba(0,200,255,0.35) !important; }
.crm-hero--D .crm-hero-note { font-size: 12.5px; color: rgba(255,255,255,0.32); margin: 0 0 30px; }

/* ================================================================
   HERO E — Split Panels (dark left / light right)
   ================================================================ */
.crm-hero--E { padding: 0; min-height: 640px; }
.crm-hero--E-wrap {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 640px;
}
.crm-hero--E-left {
    background: linear-gradient(160deg, #000044 0%, #000055 100%);
    padding: 96px 56px 96px 72px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.crm-hero--E-left::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(0,0,255,0.28) 0%, transparent 60%);
}
.crm-hero--E-left > * { position: relative; z-index: 1; }
.crm-hero--E-left h1 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800; color: #fff;
    line-height: 1.15; margin: 0 0 18px; letter-spacing: -1px;
}
.crm-hero--E-left p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0 0 30px; max-width: 400px; }
.crm-hero--E-note { font-size: 12.5px; color: rgba(255,255,255,0.35) !important; margin: 16px 0 0 !important; }
.crm-hero--E-right {
    background: #f8fafc;
    padding: 80px 56px;
    display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.crm-hero--E-stat {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 20px 22px; display: flex; align-items: center; gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform 0.2s;
}
.crm-hero--E-stat:hover { transform: translateX(6px); }
.crm-hero--E-stat-ico {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.crm-hero--E-stat-val { font-size: 24px; font-weight: 800; color: var(--c-dark); line-height: 1; margin-bottom: 3px; }
.crm-hero--E-stat-lbl { font-size: 13px; color: #64748b; }
.crm-btn-ghost--white { color: rgba(255,255,255,0.85) !important; border-color: rgba(255,255,255,0.4) !important; }
.crm-btn-ghost--white:hover { background: rgba(255,255,255,0.1) !important; border-color: #fff !important; color: #fff !important; }

/* ================================================================
   HERO F — Glass Card (frosted glass container)
   ================================================================ */
.crm-hero--F {
    background: linear-gradient(135deg, #000011 0%, #000044 50%, #000033 100%);
    padding: 80px 0; min-height: 680px;
}
.crm-hero--F::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(0,0,255,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(139,92,246,0.2) 0%, transparent 55%);
    pointer-events: none;
}
.crm-hero--F .container-1400 { position: relative; z-index: 2; }
.crm-glass-wrap { position: relative; }
.crm-glass-card {
    max-width: 680px; margin: 0 auto;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 28px; padding: 60px 56px;
    backdrop-filter: blur(16px); text-align: center; position: relative;
}
.crm-glass-card h1 {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800; color: #fff;
    line-height: 1.12; margin: 0 0 20px; letter-spacing: -1.5px;
}
.crm-glass-card .crm-hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; margin: 0 auto 36px; }
.crm-glass-tag {
    position: absolute;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; padding: 8px 16px;
    color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600;
    backdrop-filter: blur(8px); display: flex; align-items: center; gap: 7px;
    white-space: nowrap; animation: havFloat 5s ease-in-out infinite; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.crm-glass-tag-1 { top: -18px; left: -20px; animation-delay: 0s; }
.crm-glass-tag-2 { top: 40%; right: -30px; animation-delay: 0.8s; }
.crm-glass-tag-3 { bottom: 10%; left: -20px; animation-delay: 1.6s; }
@media (max-width: 900px) { .crm-glass-tag { display: none; } }

/* ================================================================
   HERO G — Minimal White (clean, features on right)
   ================================================================ */
.crm-hero--G { background: #fff; padding: 96px 0 88px; min-height: 580px; }
.crm-hero--G-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.crm-hero--G h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900; color: #0f172a;
    line-height: 1.08; margin: 0 0 20px; letter-spacing: -2px;
}
.crm-hero--G h1 span { color: var(--c-primary); }
.crm-hero--G .crm-hero-sub { font-size: 17px; color: #64748b; line-height: 1.75; margin: 0 0 32px; max-width: 440px; }
.crm-hero--G .crm-hero-actions { margin-bottom: 18px; }
.crm-hero--G-right { display: flex; flex-direction: column; gap: 22px; }
.crm-hero--G-feat { display: flex; gap: 16px; align-items: flex-start; }
.crm-hero--G-ico {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.crm-hero--G-feat h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.crm-hero--G-feat p { font-size: 13.5px; color: #64748b; margin: 0; line-height: 1.6; }

/* ================================================================
   HERO H — Big Numbers (dark, stat grid)
   ================================================================ */
.crm-hero--H { background: linear-gradient(180deg, #000011 0%, #000033 100%); padding: 100px 0 90px; min-height: 640px; }
.crm-hero--H .crm-hero-center { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.crm-hero--H h1 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800; color: #fff;
    line-height: 1.12; margin: 0 0 18px; letter-spacing: -1.5px;
}
.crm-hero--H .crm-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; margin: 0 auto 44px; max-width: 580px; }
.crm-hero--H-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px; overflow: hidden; margin-bottom: 44px;
    gap: 1px;
}
.crm-hero--H-stat { background: rgba(255,255,255,0.04); padding: 28px 16px; text-align: center; }
.crm-hero--H-num { display: block; font-size: 36px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 7px; }
.crm-hero--H-lbl { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.crm-hero--H .crm-hero-actions { justify-content: center; }

/* ================================================================
   HERO I — Vibrant Gradient (blue to purple, colorful)
   ================================================================ */
.crm-hero--I {
    background: linear-gradient(135deg, #000099 0%, #0000FF 40%, #2200DD 70%, #0000CC 100%);
    padding: 110px 0 106px; min-height: 680px;
}
.crm-hero--I::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px; pointer-events: none;
}
.crm-hero--I .crm-hero-center { position: relative; z-index: 2; }
.crm-hero--I h1 {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 800; color: #fff;
    line-height: 1.1; margin: 0 0 22px; letter-spacing: -1.5px;
}
.crm-hero--I .crm-hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.75; margin: 0 auto 40px; max-width: 580px; }
.crm-hero--I .crm-hero-actions { justify-content: center; margin-bottom: 14px; }
.crm-hero-badge--white {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: rgba(255,255,255,0.95) !important;
}
.crm-hero-form--white input[type="email"] {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}
.crm-hero-form--white input[type="email"]::placeholder { color: rgba(255,255,255,0.5) !important; }
.crm-hero-form--white input[type="email"]:focus { border-color: rgba(255,255,255,0.7) !important; }
.crm-hero-form--white button { background: #fff !important; color: #000099 !important; box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important; }
.crm-hero-form--white button:hover { background: #f0f4ff !important; }

/* ================================================================
   HERO J — Solid Blue (brand color, centered minimal)
   ================================================================ */
.crm-hero--J { background: #0000BB; padding: 110px 0 106px; min-height: 660px; }
.crm-hero--J::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,0,0,0.18) 0%, transparent 55%);
    pointer-events: none;
}
.crm-hero--J .crm-hero-center { position: relative; z-index: 2; }
.crm-hero--J h1 {
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 900; color: #fff;
    line-height: 1.08; margin: 0 0 20px; letter-spacing: -1.5px;
}
.crm-hero--J h1 span { color: #CCCCFF; }
.crm-hero--J .crm-hero-sub { font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.75; margin: 0 auto 42px; max-width: 560px; }
.crm-hero--J .crm-hero-actions { justify-content: center; margin-bottom: 16px; }
.crm-hero-badge--J { background: rgba(255,255,255,0.15) !important; border-color: rgba(255,255,255,0.25) !important; color: rgba(255,255,255,0.9) !important; }
.crm-btn-primary--white { background: #fff !important; color: #0000BB !important; box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important; }
.crm-btn-primary--white:hover { background: #F0F0FF !important; }
.crm-hero-proof-avs--J span { border-color: #0000BB !important; }

/* ================================================================
   HERO K — Reference Match: Big headline + floating people + signup form
   ================================================================ */
.crm-hero--K {
    background: linear-gradient(150deg, #ffffff 0%, #ffffff 40%, #E6E6FF 70%, #ccccff 100%);
    padding: 0;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}
.crm-hero--K::before { content: ''; position: absolute; inset: 0; background: none; z-index: 0; }
.crm-hero--K::after  { content: ''; position: absolute; inset: 0; background: none; z-index: 0; pointer-events: none; }
/* Palette slides — hidden, gradient used as background instead */
.crm-k-slides { display: none; }
.crm-k-slide  { display: none; }
.crm-hero--K-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 720px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 48px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* LEFT — headline + infographics */
.crm-hero--K-left { position: relative; padding-right: 20px; z-index: 3; }

/* Badge pill */
.crm-k-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #1689FE, #21A9FF, #6DC6FE, #C5EAFD);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.crm-hero--K-h1 {
    font-size: clamp(46px, 6vw, 84px);
    font-weight: 900;
    color: #00001A;
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -2.5px;
    position: relative;
    z-index: 2;
}
/* Accent word in heading */
.crm-h1-em {
    background: none;
    -webkit-text-fill-color: #0000FF;
    color: #0000FF;
    font-style: normal;
}
.crm-hero--K-tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #0000FF;
    margin: 0 0 28px;
    line-height: 1.3;
    position: relative; z-index: 2;
}
.crm-hero--K-sub {
    font-size: 16px;
    color: #3a3a5c;
    line-height: 1.75;
    max-width: 500px;
    font-weight: 400;
    margin: 0 0 24px;
    border-left: 4px solid #0000FF;
    padding-left: 16px;
    position: relative; z-index: 2;
}

/* ---- Stats row ---- */
.crm-k-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 22px;
}
.crm-k-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.crm-k-stat strong {
    font-size: 22px;
    font-weight: 900;
    color: #00001A;
    line-height: 1;
}
.crm-k-stat span {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}
.crm-k-stat-sep {
    width: 1px;
    height: 30px;
    background: #dde0f0;
    flex-shrink: 0;
}

/* ---- Social proof / avatar row ---- */
.crm-k-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
}
.crm-k-avstack {
    display: flex;
}
.crm-k-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    margin-right: -9px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.crm-k-social-lbl {
    font-size: 13px;
    color: #6b7280;
    padding-left: 14px;
}
.crm-k-social-lbl strong { color: #00001A; }

/* ---- Deal card infographic ---- */
.crm-k-dealcard {
    background: #fff;
    border: 1px solid #e4e4f5;
    border-radius: 16px;
    padding: 16px 18px;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,255,0.09), 0 2px 8px rgba(0,0,0,0.04);
    animation: havFloat 4.5s ease-in-out infinite;
}
.crm-k-dc-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.crm-k-dc-ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0,0,255,0.08);
    color: #0000FF;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.crm-k-dc-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.crm-k-dc-info strong { font-size: 14px; color: #00001A; font-weight: 700; }
.crm-k-dc-info span { font-size: 11px; color: #9ca3af; }
.crm-k-dc-won { font-size: 16px; font-weight: 900; color: #10b981; }
.crm-k-dc-bar-wrap {
    height: 6px; background: #f0f0ff; border-radius: 4px; overflow: hidden; margin-bottom: 10px;
}
.crm-k-dc-bar-fill {
    height: 100%; width: 82%;
    background: linear-gradient(90deg, #0000FF 0%, #06b6d4 100%);
    border-radius: 4px;
}
.crm-k-dc-footer {
    display: flex; justify-content: space-between;
    font-size: 11px; color: #9ca3af;
}
.crm-k-dc-growth { color: #10b981; font-weight: 600; }

/* ---- Notification chip ---- */
.crm-k-notif {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e4e4f5;
    border-radius: 50px;
    padding: 9px 18px 9px 9px;
    box-shadow: 0 4px 20px rgba(0,0,255,0.1);
    margin-bottom: 14px;
    animation: havFloat 3.5s ease-in-out infinite;
    animation-delay: 0.6s;
    width: fit-content;
}
.crm-k-notif-ico {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0;
}
.crm-k-notif-body { display: flex; flex-direction: column; gap: 1px; }
.crm-k-notif-body strong { font-size: 12px; color: #00001A; font-weight: 700; }
.crm-k-notif-body span { font-size: 11px; color: #9ca3af; }

/* ---- Pipeline health widget ---- */
.crm-k-pipe {
    background: #fff;
    border: 1px solid #e4e4f5;
    border-radius: 16px;
    padding: 14px 16px;
    margin-top: 14px;
    box-shadow: 0 4px 20px rgba(0,0,255,0.06);
}
.crm-k-pipe-title {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 6px;
}
.crm-k-pipe-row {
    display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.crm-k-pipe-row:last-child { margin-bottom: 0; }
.crm-k-pipe-lbl { font-size: 11px; color: #6b7280; width: 68px; flex-shrink: 0; }
.crm-k-pipe-track {
    flex: 1; height: 6px; background: #f0f0ff; border-radius: 4px; overflow: hidden;
}
.crm-k-pipe-fill { height: 100%; border-radius: 4px; }
.crm-k-pipe-pct { font-size: 11px; font-weight: 700; color: #00001A; width: 28px; text-align: right; }
.crm-hero--K-body {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 400;
    margin: 0 0 28px;
    position: relative; z-index: 2;
}

/* Floating person circles */
.crm-kp {
    position: absolute;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    animation: havFloat 5s ease-in-out infinite;
    z-index: 3;
}
.crm-kp i { font-size: 42px; color: #fff; }
.crm-kp-1 {
    width: 120px; height: 120px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    top: -28px; left: 46%;
    animation-delay: 0s;
    box-shadow: 0 8px 32px rgba(6,182,212,0.4);
}
.crm-kp-2 {
    width: 108px; height: 108px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    top: 72px; right: 0;
    animation-delay: 0.9s;
    box-shadow: 0 8px 32px rgba(245,158,11,0.4);
}
/* Small spark dots on circle 1 */
.crm-kp-spark {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: sparkBlink 1.4s ease-in-out infinite;
}
.crm-kp-spark-1 { width: 10px; height: 10px; top: 8px; right: 14px; animation-delay: 0s; }
.crm-kp-spark-2 { width: 6px; height: 6px; top: 20px; right: 8px; animation-delay: 0.3s; }
@keyframes sparkBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* RIGHT — signup form */
.crm-hero--K-right { position: relative; z-index: 3; display: flex; justify-content: center; }
.crm-kform {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 24px 20px;
    box-shadow: 0 12px 40px rgba(22,137,254,0.12), 0 4px 14px rgba(0,0,0,0.06);
    border: 1px solid rgba(22,137,254,0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}
/* Coloured top accent bar */
.crm-kform::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1689FE, #21A9FF, #6DC6FE);
    border-radius: 20px 20px 0 0;
}
.crm-kform-title {
    font-size: 17px;
    font-weight: 800;
    color: #00001A;
    margin: 0 0 14px;
    line-height: 1.3;
}
.crm-kform-field {
    margin-bottom: 10px;
    position: relative;
}
.crm-kform-input {
    width: 100%;
    padding: 11px 16px;
    background: #F4F9FF;
    border: 1.5px solid #deeeff;
    border-radius: 50px;
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
    color: #1e1e40;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.crm-kform-input::placeholder { color: #94a3b8; }
.crm-kform-input:focus {
    border-color: #1689FE;
    box-shadow: 0 0 0 3px rgba(22,137,254,0.12);
    background: #fff;
}
/* Password field */
.crm-kform-field--pw { position: relative; }
.crm-kform-pw-toggle {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; color: #94a3b8; font-size: 14px; padding: 4px;
}
/* Phone field */
.crm-kform-field--phone { display: flex; gap: 0; }
.crm-kform-phone-code {
    padding: 11px 14px;
    background: #F4F9FF;
    border: 1.5px solid #deeeff;
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-size: 13px; font-weight: 600; color: #1e1e40;
    white-space: nowrap; display: flex; align-items: center;
}
.crm-kform-input--phone { border-radius: 0 50px 50px 0; border-left: none; flex: 1; min-width: 0; }
/* Terms */
.crm-kform-terms {
    display: flex; align-items: flex-start; gap: 7px;
    margin-bottom: 12px;
}
.crm-kform-checkbox {
    width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
    accent-color: #1689FE; cursor: pointer;
}
.crm-kform-terms label {
    font-size: 11.5px; color: #64748b; line-height: 1.5; cursor: pointer;
}
.crm-kform-terms a { color: #1689FE; text-decoration: underline; font-weight: 600; }
/* CTA */
.crm-kform-cta {
    width: 100%; padding: 12px;
    background: #0000FF; color: #fff;
    border: none; border-radius: 50px;
    font-size: 13px; font-weight: 800; letter-spacing: 1px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,255,0.35);
    margin-bottom: 14px;
}
.crm-kform-cta:hover {
    background: #1689FE; transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,255,0.45);
}
/* Divider */
.crm-kform-divider {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; color: #94a3b8; font-size: 13px;
}
.crm-kform-divider::before, .crm-kform-divider::after {
    content: ''; flex: 1; height: 1px; background: #e4e4f0;
}
/* Social buttons */
.crm-kform-social { display: flex; justify-content: center; gap: 12px; }
.crm-kform-social-btn {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid #e4e4f0; background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px; color: #444;
    transition: box-shadow 0.2s, transform 0.15s;
}
.crm-kform-social-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.12); transform: translateY(-1px); }
.crm-kform-social-btn--li { background: #0A66C2; border-color: #0A66C2; color: #fff; }

@media (max-width: 900px) {
    .crm-hero--K-wrap { grid-template-columns: 1fr; padding: 60px 24px; }
    .crm-kp-1, .crm-kp-2 { display: none; }
    .crm-hero--K-h1 { font-size: clamp(40px, 8vw, 64px); }
}

/* ================================================================
   HERO L — Layered Cards (light bg, rotated cards right)
   ================================================================ */
.crm-hero--L {
    background: #f1f5f9;
    background-image: linear-gradient(rgba(0,0,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    padding: 90px 0; min-height: 600px;
}
.crm-hero--L-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.crm-hero--L h1 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800; color: #0f172a;
    line-height: 1.15; margin: 0 0 18px; letter-spacing: -1px;
}
.crm-hero--L h1 span { color: var(--c-primary); }
.crm-hero--L .crm-hero-sub { font-size: 17px; color: #64748b; line-height: 1.75; margin: 0 0 30px; }
.crm-hero--L .crm-hero-actions { margin-bottom: 18px; }
.crm-lcard-stack { position: relative; height: 320px; }
.crm-lcard {
    position: absolute; left: 0; right: 0;
    background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
    padding: 22px 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    display: flex; align-items: flex-start; gap: 16px;
}
.crm-lcard:nth-child(1) { top: 0; z-index: 1; }
.crm-lcard:nth-child(2) { top: 96px; z-index: 2; }
.crm-lcard:nth-child(3) { top: 192px; z-index: 3; }
.crm-lcard-ico {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.crm-lcard h4 { font-size: 14.5px; font-weight: 700; color: #0f172a; margin: 0 0 4px; }
.crm-lcard p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.55; }

/* ================================================================
   HERO M — Cinematic (true black, massive type)
   ================================================================ */
.crm-hero--M { background: #000; padding: 120px 0 110px; min-height: 680px; }
.crm-hero--M::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0,0,255,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.crm-hero--M .crm-hero-center { position: relative; z-index: 2; }
.crm-hero--M-h1 {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 900; color: #fff;
    line-height: 1.04; margin: 0 0 28px; letter-spacing: -3px;
}
.crm-hero--M-dim { opacity: 0.32; }
.crm-hero--M-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #0000FF, #8888FF);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.crm-hero--M-line { width: 56px; height: 2px; background: var(--c-primary); margin: 0 auto 28px; }
.crm-hero--M .crm-hero-sub { font-size: 18px; color: rgba(255,255,255,0.52); line-height: 1.8; margin: 0 auto 44px; max-width: 620px; }
.crm-hero--M .crm-hero-actions { justify-content: center; margin-bottom: 40px; }

/* ================================================================
   HERO D-M — Shared Responsive
   ================================================================ */
@media (max-width: 900px) {
    .crm-hero--E-wrap { grid-template-columns: 1fr; }
    .crm-hero--E-left { padding: 72px 36px; }
    .crm-hero--E-right { padding: 48px 36px; }
    .crm-hero--G-layout,
    .crm-hero--K-layout,
    .crm-hero--L-layout { grid-template-columns: 1fr; gap: 48px; }
    .crm-hero--H-stats { grid-template-columns: repeat(2, 1fr); }
    .crm-lcard-stack { height: 280px; }
}
@media (max-width: 600px) {
    .crm-hero--H-stats { grid-template-columns: repeat(2, 1fr); }
    .crm-hero--M-h1 { letter-spacing: -1.5px; }
    .crm-hero--C-h1 { letter-spacing: -1.5px; }
}

/* ---------------------------------------------------------------- */

/* ---- BUTTONS ---- */
.crm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--grad-main);
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,255,0.32);
}
.crm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,255,0.44);
}
.crm-btn-large { padding: 18px 40px; font-size: 1rem; }

.crm-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    font-size: 0.7rem;
}

.crm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--c-primary);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--c-primary);
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.crm-btn-ghost:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
}

.crm-btn-ghost-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--c-primary);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1.5px solid var(--c-border);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}
.crm-btn-ghost-sm:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(0,0,255,0.04);
}

.crm-btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}
.crm-btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.crm-btn-ghost-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}
.crm-btn-ghost-cta:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* ================================================================
   TRUST
   ================================================================ */
.crm-trust {
    background: var(--c-white);
    padding: 64px 0;
    border-bottom: 1px solid var(--c-border);
}

.crm-trust-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.crm-trust-head h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem) !important;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 12px;
}
.crm-trust-head p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.7;
}

.crm-trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.crm-ts-item {
    text-align: center;
    padding: 0 56px;
}
.crm-ts-divider {
    width: 1px;
    height: 48px;
    background: var(--c-border);
    flex-shrink: 0;
}
.crm-ts-value {
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
    font-weight: 700;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}
.crm-ts-label {
    font-size: 0.88rem;
    color: var(--c-body);
    font-weight: 500;
}

@media (max-width: 640px) {
    .crm-ts-item { padding: 16px 24px; }
    .crm-ts-divider { display: none; }
    .crm-trust-stats { gap: 8px; }
}

/* ================================================================
   INTEGRATIONS
   ================================================================ */
.crm-integrations {
    background: #ffffff;
    padding: 80px 0 72px;
}
.crm-int-hd {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}
.crm-int-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.crm-int-hd h2 {
    font-size: clamp(1.3rem, 2vw, 1.9rem) !important;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0 0 14px;
    line-height: 1.2;
    white-space: nowrap !important;
    overflow: visible;
}
.crm-int-hd p {
    color: var(--c-body);
    font-size: 1.05rem;
    line-height: 1.7;
}
/* Marquee rows */
.crm-int-marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.crm-int-marquee-wrap::before,
.crm-int-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.crm-int-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
.crm-int-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
.crm-int-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 8px 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.crm-int-track--fwd {
    animation: crm-marquee-fwd 35s linear infinite;
}
.crm-int-track--rev {
    animation: crm-marquee-rev 35s linear infinite;
}
@keyframes crm-marquee-fwd {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes crm-marquee-rev {
    0%   { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}
.crm-int-marquee-wrap:hover .crm-int-track { animation-play-state: paused; }

.crm-int-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 40px;
    padding: 10px 20px 10px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    user-select: none;
}
.crm-int-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ic, #0000FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.crm-int-chip span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-dark);
}
.crm-int-foot {
    text-align: center;
    margin-top: 28px;
    color: var(--c-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================================================
   FLOW STEPS (Horizontal stepper)
   ================================================================ */
.crm-flow {
    background: var(--c-bg);
    padding: 96px 0;
}


/* Section header — top left aligned */
.crm-flow-header {
    margin-bottom: 48px;
}
.crm-flow-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.crm-flow-header p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

/* Two-column layout: steps left, animation right */
.crm-flow-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: stretch;
}

/* Steps stacked vertically on the right */
.crm-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.crm-flow-item {
    padding: 24px 24px 20px;
    background: var(--c-white);
    border-radius: var(--r-md);
    border: 1.5px solid rgba(0,0,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,255,0.06);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.crm-flow-item:hover {
    border-color: rgba(0,0,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,255,0.12);
}
.crm-flow-item-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.crm-flow-item-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--grad-main);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.crm-flow-item strong {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--c-text);
}
.crm-flow-item p {
    font-size: 0.875rem;
    color: var(--c-body);
    line-height: 1.75;
    margin: 0;
    padding-left: 42px;
}

/* Simple step card animation (right side) */
.crm-sa {
    background: var(--c-white);
    border: 1.5px solid rgba(0,0,255,0.13);
    border-radius: var(--r-md);
    box-shadow: 0 6px 32px rgba(0,0,255,0.1);
    padding: 48px 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.crm-sa-card {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: saFadeIn 0.5s ease;
}
.crm-sa-card.sa-active { display: flex; }
@keyframes saFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.crm-sa-icon {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,0,255,0.12), rgba(34,34,255,0.08));
    border: 2px solid rgba(0,0,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.crm-sa-card strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.3;
}
.crm-sa-card p {
    font-size: 0.925rem;
    color: var(--c-body);
    line-height: 1.8;
    margin: 0;
    max-width: 260px;
}
.crm-sa-dots {
    display: flex;
    gap: 10px;
    margin-top: 36px;
}
.crm-sa-dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(0,0,255,0.18);
    transition: background 0.3s, transform 0.3s;
}
.crm-sa-dots span.sa-dot-active {
    background: var(--c-primary);
    transform: scale(1.4);
}

@media (max-width: 960px) {
    .crm-flow-body { grid-template-columns: 1fr; gap: 40px; }
    .crm-sa { position: static; }
}

/* Horizontal flow container */
.crm-hflow {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Track line behind all nodes */
.crm-hflow-track {
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: rgba(0,0,255,0.12);
    border-radius: 3px;
    overflow: hidden;
    z-index: 0;
}
.crm-hflow-fill {
    height: 100%;
    width: 0%;
    background: var(--grad-main);
    border-radius: 3px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.crm-hflow-fill.hf-drawn { width: 100%; }

/* Each step */
.crm-hflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Circle node */
.crm-hflow-node {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--c-white);
    border: 2px solid rgba(0,0,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--c-muted);
    box-shadow: 0 2px 12px rgba(0,0,255,0.08);
    transition: background 0.35s var(--ease), border-color 0.35s,
                color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
    position: relative;
}
.crm-hflow-step.hf-active .crm-hflow-node {
    background: var(--grad-main);
    border-color: transparent;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 28px rgba(0,0,255,0.35);
}
.crm-hflow-step.hf-done .crm-hflow-node {
    background: rgba(0,0,255,0.1);
    border-color: rgba(0,0,255,0.35);
    color: var(--c-primary);
}

/* Pulse ring */
.crm-hflow-step.hf-active .crm-hflow-node::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,255,0.3);
    animation: hfRing 1.5s ease-out infinite;
}
@keyframes hfRing {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.crm-hflow-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--c-text);
    text-align: center;
    line-height: 1.35;
    max-width: 90px;
    transition: color 0.3s;
}
.crm-hflow-step.hf-active .crm-hflow-label { color: var(--c-primary); }
.crm-hflow-step.hf-done .crm-hflow-label { color: var(--c-muted); }

@media (max-width: 900px) {
    .crm-flow-body { grid-template-columns: 1fr; gap: 40px; }
    .crm-hflow { flex-direction: column; gap: 20px; align-items: flex-start; }
    .crm-hflow-track { display: none; }
    .crm-hflow-step { flex-direction: row; align-items: center; gap: 14px; }
    .crm-hflow-label { max-width: none; text-align: left; }
}

/* ================================================================
   FEATURES (Tabbed — HubSpot style)
   ================================================================ */
.crm-features {
    background: var(--c-white);
    padding: 96px 0;
}

.crm-feat-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.crm-feat-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.crm-feat-header p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
}

/* Feature badge */
.crm-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,255,0.08);
    border: 1px solid rgba(0,0,255,0.2);
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

/* ================================================================
   SCROLL FEATURE SECTION — crm-sf
   ================================================================ */
.crm-sf {
    padding: 100px 0 140px;
    background: #ffffff;
}
.crm-sf-hd {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}
.crm-sf-hd h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--c-dark);
    margin: 12px 0 14px;
    line-height: 1.2;
}
.crm-sf-hd p {
    color: var(--c-body);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* 2-column body */
.crm-sf-body {
    display: grid;
    grid-template-columns: 56% 44%;
    gap: 56px;
    align-items: start;
}

/* LEFT: sticky panel */
.crm-sf-left {
    position: sticky;
    top: calc(50vh - 250px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.crm-sf-stage {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(26,58,92,0.16), 0 2px 10px rgba(26,58,92,0.08);
}

/* All cards stacked absolutely */
.crm2-card {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.95) translateY(24px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    will-change: opacity, transform;
}
.crm2-card.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}
.crm2-card.is-exit-up {
    opacity: 0;
    transform: scale(0.95) translateY(-28px);
    z-index: 1;
}
.crm2-card.is-exit-down {
    opacity: 0;
    transform: scale(0.95) translateY(28px);
    z-index: 1;
}

/* macOS chrome header */
.crm2-card-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 22px;
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    flex-shrink: 0;
}
.crm2-chrome-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}
.crm2-chrome-title {
    margin-left: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.crm2-card-body {
    flex: 1;
    padding: 24px 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Dot indicators */
.crm2-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.crm2-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(41, 128, 185, 0.2);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}
.crm2-dot.is-active {
    width: 32px;
    background: var(--c-primary);
}

/* RIGHT: scrollable items */
.crm-sf-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.crm2-item {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0;
    border-bottom: 1px solid rgba(41, 128, 185, 0.08);
    opacity: 0.35;
    transition: opacity 0.5s ease;
}
.crm2-item:first-child { padding-top: 20px; }
.crm2-item:last-child { border-bottom: none; padding-bottom: 20px; }
.crm2-item.is-active { opacity: 1; }

.crm2-item-num {
    display: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: 0.14em;
    margin-bottom: 22px;
    opacity: 0.65;
}
.crm2-item h3 {
    font-size: clamp(2rem, 2.8vw, 2.6rem) !important;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0 0 30px;
    line-height: 1.15;
}
.crm2-item p {
    color: var(--c-body);
    font-size: 1.25rem;
    line-height: 1.9;
    margin: 0 0 38px;
}
.crm2-feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.crm2-feats li {
    font-size: 1.18rem;
    color: var(--c-body);
    display: flex;
    align-items: center;
    gap: 14px;
}
.crm2-feats li i {
    color: var(--c-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── CARD INNER: Search bar ── */
.crm2-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid rgba(0,0,255,0.12);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 1rem;
    color: #94a3b8;
    flex-shrink: 0;
}
.crm2-search-bar i { color: #94a3b8; font-size: 0.92rem; }
.crm2-search-bar span:nth-child(2) { flex: 1; }
.crm2-filter-chip {
    background: rgba(0,0,255,0.08);
    color: var(--c-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
}

/* Contact table */
.crm2-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    flex: 1;
}
.crm2-table thead th {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.82rem;
    text-align: left;
    padding: 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0,0,255,0.08);
}
.crm2-table tbody tr { border-top: 1px solid rgba(0,0,255,0.07); }
.crm2-table tbody td {
    padding: 13px 12px;
    color: var(--c-text);
    font-size: 0.96rem;
    vertical-align: middle;
}
.crm2-table tbody tr td:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}
.crm2-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--av, #4f8ef7);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.crm2-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    color: var(--tc, var(--c-primary));
    background: var(--tb, rgba(0,0,255,0.1));
    white-space: nowrap;
}
.crm2-score {
    display: block;
    height: 7px;
    width: 80px;
    background: rgba(0,0,255,0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.crm2-score::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: var(--sw, 70%);
    background: var(--c-primary);
    border-radius: 4px;
}
.crm2-muted { color: #94a3b8 !important; font-size: 0.9rem !important; }

/* Kanban */
.crm2-kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
}
.crm2-kcol { display: flex; flex-direction: column; gap: 10px; }
.crm2-khead {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--kc, var(--c-primary));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0 8px;
    border-bottom: 2px solid var(--kc, var(--c-primary));
    margin-bottom: 3px;
}
.crm2-khead span {
    background: var(--kc, var(--c-primary));
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}
.crm2-kcard {
    background: #fff;
    border-radius: 9px;
    padding: 11px 13px;
    border-left: 3px solid var(--kb, var(--c-primary));
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.crm2-kcard--won { background: rgba(52,211,153,0.05); }
.crm2-kc-co { font-size: 0.88rem; font-weight: 600; color: var(--c-text); }
.crm2-kc-val { font-size: 0.82rem; color: #64748b; margin-top: 5px; }

/* Task list + activity feed (split layout) */
.crm2-card-body--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 4px;
}
.crm2-task-hd, .crm2-act-hd {
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
}
.crm2-tasklist, .crm2-actfeed { display: flex; flex-direction: column; }
.crm2-task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,255,0.06);
}
.crm2-tchk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
    color: transparent;
}
.crm2-tchk.is-done {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}
.crm2-task--done .crm2-tlbl { text-decoration: line-through; opacity: 0.45; }
.crm2-tlbl { font-size: 0.93rem; color: var(--c-text); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm2-ttag {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0,0,255,0.08);
    color: var(--c-primary);
    white-space: nowrap;
    flex-shrink: 0;
}
.crm2-ttag--due { background: rgba(239,68,68,0.1); color: #ef4444; }

/* Activity feed */
.crm2-act {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0,0,255,0.06);
}
.crm2-act-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.crm2-act-info { display: flex; flex-direction: column; min-width: 0; }
.crm2-act-info span { font-size: 0.92rem; color: var(--c-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm2-act-info small { font-size: 0.8rem; color: #94a3b8; margin-top: 3px; }

/* Automation workflow */
.crm2-wf {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.crm2-wf-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(248,250,252,0.9);
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,255,0.08);
}
.crm2-wfnode {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-left: 3px solid #4f8ef7;
    flex: 1;
    min-width: 0;
}
.crm2-wfnode > i { font-size: 1.05rem; flex-shrink: 0; color: #4f8ef7; }
.crm2-wfnode > div { display: flex; flex-direction: column; min-width: 0; }
.crm2-wfnode small { font-size: 0.72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.crm2-wfnode span { font-size: 0.88rem; font-weight: 600; color: var(--c-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.crm2-wfnode--trigger { border-left-color: #f59e0b; }
.crm2-wfnode--trigger > i { color: #f59e0b; }
.crm2-wfnode--action { border-left-color: #0000FF; }
.crm2-wfnode--action > i { color: #0000FF; }
.crm2-wfnode--wait { border-left-color: #8b5cf6; }
.crm2-wfnode--wait > i { color: #8b5cf6; }
.crm2-wf-arr { color: #cbd5e1; font-size: 1rem; flex-shrink: 0; }
.crm2-wf-stats {
    display: flex;
    gap: 24px;
    padding: 12px 16px;
    background: rgba(0,0,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(0,0,255,0.08);
}
.crm2-wf-stats span { font-size: 0.93rem; color: #64748b; }
.crm2-wf-stats strong { color: var(--c-primary); }

/* KPI row */
.crm2-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex-shrink: 0;
}
.crm2-kpi {
    background: #f8fafc;
    border-radius: 14px;
    padding: 18px 14px 14px;
    border: 1px solid rgba(0,0,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.crm2-kpi-val { font-size: 1.85rem; font-weight: 800; color: var(--c-dark); line-height: 1; }
.crm2-kpi-lbl { font-size: 0.78rem; color: #94a3b8; font-weight: 500; margin-top: 4px; }
.crm2-kpi-delta { font-size: 0.78rem; font-weight: 600; margin-top: 6px; }
.crm2-kpi-delta--up { color: #10b981; }
.crm2-kpi-delta--dn { color: #ef4444; }

/* Bar chart */
.crm2-barchart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 150px;
    flex: 1;
    padding-bottom: 2px;
}
.crm2-barcol {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}
.crm2-barfill {
    width: 100%;
    height: var(--bh, 60%);
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, rgba(0,0,255,0.65) 0%, rgba(0,0,255,0.3) 100%);
    transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.crm2-barfill--hi {
    background: linear-gradient(180deg, #0000FF 0%, rgba(0,0,255,0.5) 100%);
}
.crm2-barcol span { font-size: 0.74rem; color: #94a3b8; font-weight: 500; }

/* Stagger animation — always visible, GSAP enhances on top */
.crm2-animate {
    opacity: 1;
    transform: none;
}
.crm2-card.is-active .crm2-animate {
    opacity: 1;
    transform: none;
}
@keyframes crm2StaggerIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}
.crm2-stagger-in {
    animation: crm2StaggerIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Responsive */
@media (max-width: 1024px) {
    .crm-sf-body { grid-template-columns: 1fr; gap: 40px; }
    .crm-sf-left { position: relative; top: 0; }
    .crm-sf-stage { height: 380px; }
    .crm2-item { min-height: auto; }
}
@media (max-width: 640px) {
    .crm-sf { padding: 64px 0 80px; }
    .crm-sf-stage { height: 380px; }
    .crm2-item { min-height: auto; padding: 40px 0; }
    .crm2-item:first-child { padding-top: 0; }
    .crm2-kanban { grid-template-columns: repeat(2, 1fr); }
    .crm2-card-body--split { grid-template-columns: 1fr; }
    .crm2-kpis { grid-template-columns: repeat(2, 1fr); }
    .crm-sf-body { gap: 28px; }
}



/* ================================================================
   MULTI-PANEL CARD LAYOUT — Zoho-style blue stage
   ================================================================ */
.crm2-stage-bg {
    flex: 1;
    min-height: 0;
    background: linear-gradient(145deg, #0030DB 0%, #0040E8 55%, #0025A8 100%);
    padding: 18px;
    display: flex;
    flex-direction: column;
}
/* Different background for each feature card */
[data-card="0"] .crm2-stage-bg { background: linear-gradient(145deg, #0030DB 0%, #0040E8 55%, #0025A8 100%); }
[data-card="1"] .crm2-stage-bg { background: linear-gradient(145deg, #059669 0%, #10B981 55%, #047857 100%); }
[data-card="2"] .crm2-stage-bg { background: linear-gradient(145deg, #7C3AED 0%, #8B5CF6 55%, #6D28D9 100%); }
[data-card="3"] .crm2-stage-bg { background: linear-gradient(145deg, #EA580C 0%, #F97316 55%, #C2410C 100%); }
[data-card="4"] .crm2-stage-bg { background: linear-gradient(145deg, #0284C7 0%, #0EA5E9 55%, #0369A1 100%); }

/* Individual floating panel */

/* ── Single unified dashboard ── */
.crm2-single-dash {
    flex: 1;
    min-height: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.crm2-single-dash-hd {
    background: linear-gradient(90deg, #0030DB 0%, #0060FF 100%);
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-bottom: 2px solid rgba(0,0,255,0.4);
}
.crm2-single-dash-bd {
    flex: 1;
    display: flex;
    overflow: hidden;
    align-items: stretch;
}
.crm2-sdb-col {
    flex: 1;
    padding: 10px 12px;
    overflow: hidden;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.crm2-sdb-col:last-child { border-right: none; }
.crm2-sdb-sub {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0000FF;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1.5px solid rgba(0,0,255,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}
.crm2-sdb-divider {
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid #e2e8f0;
}

.crm2-panel-hd i { font-style: normal; font-size: 0.9rem; opacity: 0.75; }

/* Panel body */
.crm2-panel-body {
    flex: 1;
    padding: 14px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Card 0: Contact Management column sizing ── */
[data-card="0"] .crm2-sdb-col:nth-child(1) { flex: 1.1; background: #fafbff; }
[data-card="0"] .crm2-sdb-col:nth-child(2) { flex: 1.3; background: #ffffff; border-left: 1px solid #eef0f8; border-right: 1px solid #eef0f8; }
[data-card="0"] .crm2-sdb-col:nth-child(3) { flex: 1; background: #fafbff; }

/* ── Contact list rows ── */
.crm2-prow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.crm2-prow:last-child { border-bottom: none; }
.crm2-pav {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--av, #4f8ef7);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.crm2-pinfo { flex: 1; display: flex; flex-direction: column; }
.crm2-pinfo b  { font-size: 0.92rem; color: #1e293b; font-weight: 600; }
.crm2-pinfo small { font-size: 0.76rem; color: #94a3b8; }
.crm2-ptag {
    font-size: 0.76rem; font-weight: 600;
    padding: 4px 11px; border-radius: 20px;
    color: var(--tc, #0000FF);
    background: var(--tb, rgba(0,0,255,0.1));
    white-space: nowrap; flex-shrink: 0;
}

/* ── Lead score panel ── */
.crm2-score-big { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.crm2-score-val { font-size: 2rem; font-weight: 900; color: #0000FF; line-height: 1; }
.crm2-score-lbl { font-size: 0.85rem; color: #94a3b8; }
.crm2-score-bar-wrap { height: 6px; background: rgba(0,0,255,0.08); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.crm2-score-bar { height: 100%; width: var(--sp, 70%); background: linear-gradient(90deg, #0000FF, #21A9FF); border-radius: 4px; }
.crm2-sdb-divider { margin-top: 8px; padding-top: 8px; border-top: 1px solid #eef0f8; }
.crm2-hot-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(239,68,68,0.1); color: #ef4444;
    font-size: 0.86rem; font-weight: 600;
    padding: 4px 10px; border-radius: 20px; margin-bottom: 8px;
    font-style: normal; font-family: inherit;
}
.crm2-score-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: #94a3b8; }

/* ── Contact detail rows ── */
.crm2-det-row {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 0; font-size: 0.9rem; color: #334155;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.crm2-det-row:last-child { border-bottom: none; }
.crm2-det-row i { width: 14px; text-align: center; flex-shrink: 0; }

/* ── Activity rows ── */
.crm2-act-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.crm2-act-row:last-child { border-bottom: none; }
.crm2-act-ic {
    width: 30px; height: 30px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.72rem; flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.crm2-act-row > div { display: flex; flex-direction: column; gap: 1px; }
.crm2-act-row > div > span { font-size: 0.78rem; color: #1e293b; font-weight: 600; }
.crm2-act-row > div > small { font-size: 0.65rem; color: #94a3b8; font-weight: 500; }

/* ── Pipeline kanban mini cards ── */
.crm2-pk-card {
    background: #f8fafc; border-radius: 7px;
    padding: 7px 10px; border-left: 3px solid var(--kb, #4f8ef7);
    margin-bottom: 6px;
}
.crm2-pk-card:last-child { margin-bottom: 0; }
.crm2-pk-co { font-size: 0.78rem; font-weight: 600; color: #1e293b; }
.crm2-pk-val { font-size: 0.7rem; color: #64748b; margin-top: 1px; }
.crm2-pk-card.won { background: rgba(52,211,153,0.06); }

/* ── Deal detail ── */
.crm2-deal-amount { font-size: 1.3rem; font-weight: 800; color: #1e293b; line-height: 1; margin-bottom: 4px; }
.crm2-deal-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0; font-size: 0.88rem; color: #334155;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.crm2-deal-row:last-child { border-bottom: none; }
.crm2-deal-row span:first-child { color: #94a3b8; }
.crm2-deal-row span:last-child { font-weight: 600; }

/* ── Task list ── */
.crm2-ptask {
    display: flex; align-items: center; gap: 7px;
    padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.78rem; color: #1e293b;
}
.crm2-ptask:last-child { border-bottom: none; }
.crm2-ptchk {
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid rgba(0,0,255,0.3);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.5rem; color: transparent;
}
.crm2-ptchk.done { background: #0000FF; border-color: #0000FF; color: #fff; }
.crm2-ptask.done-t .crm2-ptlbl { text-decoration: line-through; opacity: 0.45; }
.crm2-ptlbl { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm2-ptag-sm {
    font-size: 0.74rem; font-weight: 600; padding: 2px 7px;
    border-radius: 20px; background: rgba(0,0,255,0.08);
    color: #0000FF; white-space: nowrap; flex-shrink: 0;
}

/* ── Upcoming events ── */
.crm2-event {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.78rem;
}
.crm2-event:last-child { border-bottom: none; }
.crm2-event-date {
    background: rgba(0,0,255,0.08); color: #0000FF;
    font-size: 0.66rem; font-weight: 600; padding: 3px 7px;
    border-radius: 6px; white-space: nowrap; flex-shrink: 0;
}
.crm2-event-info { display: flex; flex-direction: column; }
.crm2-event-info b { color: #1e293b; font-size: 0.78rem; }
.crm2-event-info small { color: #94a3b8; font-size: 0.66rem; }

/* ── Quick stat grid ── */
.crm2-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.crm2-stat-box {
    background: #f8fafc; border-radius: 10px; padding: 10px 10px 8px;
    display: flex; flex-direction: column; gap: 3px;
    border: 1px solid rgba(0,0,255,0.08);
}
.crm2-stat-val  { font-size: 1.25rem; font-weight: 800; color: #1e293b; line-height: 1; }
.crm2-stat-lbl  { font-size: 0.76rem; color: #94a3b8; }
.crm2-stat-delta-up { font-size: 0.74rem; color: #10b981; font-weight: 600; }
.crm2-stat-delta-dn { font-size: 0.74rem; color: #ef4444;  font-weight: 600; }

/* ── Automation workflow mini nodes ── */
.crm2-wfmini {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 10px; background: #fff; border-radius: 8px;
    border-left: 3px solid #4f8ef7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07); margin-bottom: 6px;
}
.crm2-wfmini:last-child { margin-bottom: 0; }
.crm2-wfmini > i  { font-size: 0.85rem; flex-shrink: 0; color: #4f8ef7; }
.crm2-wfmini > div { display: flex; flex-direction: column; }
.crm2-wfmini small { font-size: 0.62rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.crm2-wfmini span  { font-size: 0.8rem; font-weight: 600; color: #1e293b; }
.crm2-wfmini.t { border-left-color: #f59e0b; }
.crm2-wfmini.t > i { color: #f59e0b; }
.crm2-wfmini.a { border-left-color: #0000FF; }
.crm2-wfmini.a > i { color: #0000FF; }
.crm2-wfmini.w { border-left-color: #8b5cf6; }
.crm2-wfmini.w > i { color: #8b5cf6; }

/* ── Run stats ── */
.crm2-runstats { display: flex; gap: 8px; flex: 1; }
.crm2-runstat {
    flex: 1; background: #f8fafc; border-radius: 9px; padding: 12px 8px;
    text-align: center; border: 1px solid rgba(0,0,255,0.08);
    display: flex; flex-direction: column; gap: 4px;
}
.crm2-runstat strong { font-size: 1.4rem; font-weight: 800; color: #1e293b; display: block; line-height: 1; }
.crm2-runstat span   { font-size: 0.7rem; color: #94a3b8; }

/* ── Mini bar chart (reports panel) ── */
.crm2-mini-barchart {
    display: flex; align-items: flex-end; gap: 7px;
    height: 140px; flex: 1;
}
.crm2-mini-barcol {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 4px; height: 140px; justify-content: flex-end;
}
.crm2-mini-barfill {
    width: 100%; height: var(--bh, 60%);
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, rgba(0,0,255,0.7) 0%, rgba(0,0,255,0.3) 100%);
    transition: height 0.8s cubic-bezier(0.22,1,0.36,1);
}
.crm2-mini-barfill.hi { background: linear-gradient(180deg, #0000FF 0%, rgba(0,0,255,0.5) 100%); }
.crm2-mini-barcol span { font-size: 0.76rem; color: #94a3b8; font-weight: 500; }

/* ── Top reps table ── */
.crm2-rep-row {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem;
}
.crm2-rep-row:last-child { border-bottom: none; }
.crm2-rep-rank {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,0,255,0.1); color: #0000FF;
    font-size: 0.67rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}
.crm2-rep-name  { flex: 1; font-weight: 500; color: #1e293b; font-size: 0.92rem; }
.crm2-rep-deals { font-weight: 700; color: #0000FF; font-size: 0.9rem; }


/* Tab nav */
.crm-tab-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.crm-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: 100px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-body);
    cursor: pointer;
    transition: all 0.22s var(--ease);
}
.crm-tab-btn i { font-size: 0.8rem; }
.crm-tab-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(0,0,255,0.04);
}
.crm-tab-btn.active {
    background: var(--grad-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0,0,255,0.28);
}

/* Tab panels */
.crm-tab-panel {
    display: none;
}
.crm-tab-panel.active {
    display: block;
}

/* Tab split layout */
.crm-tab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
    overflow: visible;
}
.crm-tab-split-reverse {
    direction: rtl;
}
.crm-tab-split-reverse > * {
    direction: ltr;
}

@media (max-width: 1024px) {
    .crm-tab-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .crm-tab-split-reverse { direction: ltr; }
}

/* Tab text */
.crm-tab-text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}
.crm-tab-text p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.8;
}

/* Mock wrap */
.crm-mock-wrap {
    overflow: visible;
    position: relative;
}

/* Mock card */
.crm-mock-card {
    background: #fff;
    border: 1px solid rgba(0,0,255,0.12);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 40px rgba(0,0,255,0.08);
    overflow: visible;
    position: relative;
}

.crm-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,255,0.1);
    background: var(--c-bg);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.crm-mock-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: 0.02em;
}
.crm-mock-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
    border-radius: 100px;
}
.crm-mock-badge.crm-badge-blue {
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
}
.crm-mock-badge.crm-badge-green {
    background: rgba(16,185,129,0.1);
    color: var(--c-green);
}

/* Contact list (Tab 1) */
.crm-contact-list {
    padding: 12px 0;
}
.crm-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    transition: background 0.15s;
}
.crm-contact-row:hover { background: var(--c-bg); }

.crm-contact-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--av);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.crm-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.crm-contact-info strong { font-size: 0.82rem; font-weight: 600; color: var(--c-text); }
.crm-contact-info span   { font-size: 0.72rem; color: var(--c-muted); }

.crm-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.crm-tag-hot  { background: rgba(239,68,68,0.1);    color: var(--c-red);    }
.crm-tag-warm { background: rgba(245,158,11,0.12);   color: var(--c-orange); }
.crm-tag-new  { background: rgba(0,0,255,0.1);    color: var(--c-primary); }

/* Activity float panel (Tab 1) — navy dark panel */
.crm-activity-float {
    position: absolute;
    bottom: -24px;
    right: -28px;
    background: #000055;
    color: #e2e8f0;
    border-radius: var(--r-md);
    padding: 16px 18px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(26,58,92,0.35);
    z-index: 10;
}
.crm-af-header {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.crm-af-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #e2e8f0;
    padding: 4px 0;
    line-height: 1.4;
}
.crm-af-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Task table (Tab 2) */
.crm-task-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.crm-task-table th {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.crm-task-table td {
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-bg);
    vertical-align: middle;
}
.crm-task-table tr:last-child td { border-bottom: none; }

.crm-av-sm {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--av);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
}

.crm-status {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.crm-status-done     { background: rgba(16,185,129,0.12);  color: var(--c-green);  }
.crm-status-progress { background: rgba(245,158,11,0.12);  color: var(--c-orange); }
.crm-status-pending  { background: rgba(100,116,139,0.12); color: var(--c-muted);  }

/* Dark stats bar (Tab 2) — navy */
.crm-dark-stats {
    display: flex;
    background: #000055;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: 14px 20px;
    gap: 0;
}
.crm-ds-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.crm-ds-item:last-child { border-right: none; }
.crm-ds-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.crm-ds-lbl {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

/* Integration grid (Tab 3) */
.crm-int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 20px;
}
.crm-int-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    background: var(--c-bg);
    transition: all 0.2s;
    cursor: default;
}
.crm-int-tile i    { font-size: 1.2rem; color: var(--c-muted); }
.crm-int-tile span { font-size: 0.68rem; font-weight: 600; color: var(--c-muted); }
.crm-int-active {
    border-color: rgba(0,0,255,0.25);
    background: #F0F0FF;
}
.crm-int-active i    { color: var(--c-primary); }
.crm-int-active span { color: var(--c-text); }

.crm-sync-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px 16px;
    padding: 10px 14px;
    background: rgba(16,185,129,0.08);
    border-radius: var(--r-xs);
    font-size: 0.75rem;
    color: var(--c-green);
    font-weight: 600;
}
.crm-sync-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    flex-shrink: 0;
    animation: syncPulse 2s ease-in-out infinite;
}
@keyframes syncPulse {
    0%, 100% { opacity: 1; transform: scale(1);    box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50%       { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* Feature card grids */
.crm-feat-grid {
    display: grid;
    gap: 16px;
}
.crm-feat-grid-3 { grid-template-columns: repeat(3, 1fr); }
.crm-feat-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
    .crm-feat-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .crm-feat-grid-3,
    .crm-feat-grid-2 { grid-template-columns: 1fr; }
}

.crm-feat-card {
    background: #fff;
    border: 1px solid rgba(0,0,255,0.12);
    border-radius: var(--r-md);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.crm-feat-card:hover {
    border-color: rgba(0,0,255,0.3);
    box-shadow: 0 4px 24px rgba(0,0,255,0.1);
    transform: translateY(-2px);
}

.crm-fc-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,255,0.08);
    color: var(--c-primary);
    border-radius: var(--r-xs);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.crm-feat-card h4 {
    font-size: 0.95rem !important;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 6px;
}
.crm-feat-card p {
    font-size: 0.85rem;
    color: var(--c-body);
    line-height: 1.65;
}

/* Below tabs row */
.crm-feat-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.crm-or {
    font-size: 0.85rem;
    color: var(--c-muted);
}
.crm-feat-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.crm-feat-link:hover { gap: 10px; }

/* ================================================================
   WORKFLOW (Dark section — very dark navy)
   ================================================================ */
.crm-workflow {
    position: relative;
    background: var(--grad-vdark);
    padding: 96px 0;
    overflow: hidden;
}

.crm-wf-header {
    text-align: center;
    margin-bottom: 56px;
}
.crm-wf-sub {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}
.crm-wf-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.crm-wf-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Workflow path */
.crm-wf-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.crm-wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    transition: all 0.3s var(--ease);
}
.crm-wf-step.wf-active .crm-wf-icon {
    background: var(--grad-main);
    box-shadow: 0 6px 20px rgba(0,0,255,0.5);
    transform: scale(1.12);
}
.crm-wf-step.wf-active span { color: #fff; }

.crm-wf-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: all 0.4s var(--ease);
}
.crm-wf-step span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}

.crm-wf-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.crm-wf-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(34,34,255,0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%  { left: -100%; }
    100%{ left:  100%; }
}

@media (max-width: 640px) {
    .crm-wf-path { gap: 8px; }
    .crm-wf-line { width: 24px; }
    .crm-wf-icon { width: 48px; height: 48px; font-size: 0.9rem; }
}

.crm-wf-ghost-row {
    text-align: center;
    margin-bottom: 64px;
}

/* Use case cards — on dark section */
.crm-use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px)  { .crm-use-cases { grid-template-columns: 1fr; } }

.crm-uc-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.crm-uc-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}

.crm-uc-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,255,0.3);
    color: #93c6e4;
    border-radius: var(--r-sm);
    font-size: 1rem;
    margin-bottom: 18px;
}

.crm-uc-card h4 {
    font-size: 1rem !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.crm-uc-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}
.crm-uc-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #93c6e4;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.crm-uc-link:hover { gap: 10px; }

/* ================================================================
   POSITIONING
   ================================================================ */
.crm-position {
    background: var(--c-bg);
    padding: 80px 0;
    border-bottom: 1px solid var(--c-border);
}

.crm-pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .crm-pos-grid { grid-template-columns: 1fr; gap: 24px; }
}

.crm-pos-left h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem) !important;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.crm-pos-right p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.8;
}

/* ================================================================
   RESULTS / STATS
   ================================================================ */
.crm-results {
    background: #f5f7ff;
    padding: 56px 0 60px;
    border-top: 1px solid #e0e0ff;
}
.crm-results-hd {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.crm-results-hd h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
    font-weight: 800;
    color: #00001A;
    margin: 0 0 10px;
    line-height: 1.2;
}
.crm-results-hd p {
    font-size: 0.92rem;
    color: #4a4a6a;
    line-height: 1.7;
}
.crm-results-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-top: 2px solid #0000FF;
}
.crm-results-col {
    flex: 1;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    text-align: center;
    align-items: center;
    border-right: 1px solid #e0e0ff;
}
.crm-results-col:last-child { border-right: none; }
.crm-results-divider { display: none; }
.crm-results-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.crm-results-stat {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    background: none;
    -webkit-text-fill-color: #0000FF;
    color: #0000FF;
    letter-spacing: -0.02em;
}
.crm-results-unit {
    font-size: 0.45em;
    font-weight: 800;
    vertical-align: middle;
    letter-spacing: 0;
}
.crm-results-col p {
    font-size: 0.88rem;
    color: #4a4a6a;
    line-height: 1.65;
    margin: 0;
    max-width: 280px;
}
.crm-results-col p strong { color: #00001A; font-weight: 700; }
.crm-results-col p strong {
    color: var(--c-dark);
    font-weight: 700;
}

/* Results — column entrance animation */
@keyframes crm-results-rise {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}
.crm-results-col--anim {
    opacity: 0;
    transform: translateY(36px);
}
.crm-results-col--anim.is-visible {
    animation: crm-results-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--col-delay, 0ms);
}

/* Results — stat number glow pulse after count */
@keyframes crm-stat-glow {
    0%   { filter: brightness(1); }
    50%  { filter: brightness(1.35) drop-shadow(0 0 8px rgba(0,0,255,0.45)); }
    100% { filter: brightness(1); }
}
.crm-results-stat.did-count {
    animation: crm-stat-glow 0.7s ease-out 0.1s both;
}

@media (max-width: 768px) {
    .crm-results-grid { flex-direction: column; gap: 48px; }
    .crm-results-col { padding: 0; }
    .crm-results-divider { display: none; }
}

/* ================================================================
   BUSINESS NEEDS
   ================================================================ */
.crm-needs {
    background: #f8fafc;
    padding: 96px 0 100px;
    border-top: 1px solid var(--c-border);
}
.crm-needs-hd {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.crm-needs-badge {
    display: inline-block;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.crm-needs-hd h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--c-dark);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
}
.crm-needs-hd p {
    font-size: 1.05rem;
    color: var(--c-body);
    line-height: 1.75;
    margin: 0;
}
.crm-needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.crm-needs-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}
.crm-needs-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,0,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.crm-needs-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,255,0.14);
    transform: translateY(-4px);
}
.crm-needs-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0000FF 0%, #6dd5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}
.crm-needs-card h3 {
    font-size: 1.2rem !important;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0;
    line-height: 1.3;
}
.crm-needs-card > p {
    font-size: 0.95rem;
    color: var(--c-body);
    line-height: 1.75;
    margin: 0;
}
.crm-needs-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.crm-needs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--c-body);
    font-weight: 500;
}
.crm-needs-list li i {
    color: var(--c-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    background: rgba(0,0,255,0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Entrance animation */
@keyframes crm-needs-rise {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.crm-needs-card--anim {
    opacity: 0;
    transform: translateY(40px);
}
.crm-needs-card--anim.is-visible {
    animation: crm-needs-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--nc-delay, 0ms);
}

@media (max-width: 1024px) {
    .crm-needs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .crm-needs-grid { grid-template-columns: 1fr; gap: 20px; }
    .crm-needs-card { padding: 28px 24px 32px; }
}

/* ================================================================
   TESTIMONIALS — Auto-scroll marquee (2 rows, opposite directions)
   ================================================================ */
.crm-tw {
    background: #f1f5f9;
    padding: 100px 0 108px;
    border-top: 1px solid var(--c-border);
    overflow: hidden;
}

/* Header */
.crm-tw-hd {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}
.crm-tw-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.crm-tw-badge {
    font-size: 0.8rem;
    color: var(--c-body);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.crm-tw-badge .fa-star { color: #f59e0b; font-size: 0.68rem; }
.crm-tw-badge .fa-users { color: var(--c-primary); font-size: 0.7rem; }
.crm-tw-badge b { color: var(--c-dark); font-weight: 700; }
.crm-tw-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
    flex-shrink: 0;
}
.crm-tw-hd h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--c-dark);
    line-height: 1.2;
    margin: 0 0 14px;
}
.crm-tw-hd p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.7;
    margin: 0;
}

/* Rows */
.crm-tw-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.crm-tw-row--l { margin-bottom: 18px; }

/* Track — flex strip; JS doubles the content for seamless loop */
@keyframes twScrollL {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes twScrollR {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.crm-tw-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 6px 0 10px;
}
.crm-tw-row--l .crm-tw-track { animation: twScrollL 48s linear infinite; }
.crm-tw-row--r .crm-tw-track { animation: twScrollR 40s linear infinite; }
.crm-tw-row:hover .crm-tw-track { animation-play-state: paused; }

/* Card */
.crm-tw-card {
    width: 370px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 26px 26px 22px;
    cursor: default;
    transition: box-shadow 0.25s ease, transform 0.22s ease;
}
.crm-tw-card:hover {
    box-shadow: 0 8px 32px rgba(26,58,92,0.1);
    transform: translateY(-3px);
}

/* Stars */
.crm-tw-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

/* Quote */
.crm-tw-card blockquote {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #334155;
    margin: 0 0 18px;
    font-style: normal;
    font-weight: 400;
}

/* Person */
.crm-tw-person {
    display: flex;
    align-items: center;
    gap: 11px;
}
.crm-tw-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}
.crm-tw-person strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--c-dark);
    line-height: 1.3;
}
.crm-tw-person span {
    font-size: 0.74rem;
    color: var(--c-body);
    line-height: 1.3;
    display: block;
}

@media (max-width: 768px) {
    .crm-tw-card { width: 300px; padding: 20px; }
    .crm-tw-card blockquote { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .crm-tw { padding: 72px 0 80px; }
}

/* ================================================================
   PRICING
   ================================================================ */
.crm-pricing {
    background: #f8fafc;
    padding: 96px 0 104px;
    border-top: 1px solid var(--c-border);
}
.crm-pricing-hd {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.crm-pricing-badge {
    display: inline-block;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.crm-pricing-hd h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--c-dark);
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
}
.crm-pricing-hd > p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Billing toggle */
.crm-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 40px;
    padding: 6px 16px;
}
.crm-ptog-lbl {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-body);
    display: flex;
    align-items: center;
    gap: 6px;
}
.crm-ptog-lbl.is-active { color: var(--c-dark); }
.crm-ptog-save {
    font-size: 0.72rem;
    font-weight: 700;
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 7px;
    border-radius: 10px;
}
.crm-ptog-switch {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #e2e8f0;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}
.crm-ptog-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.crm-ptog-switch.is-on {
    background: var(--c-primary);
}
.crm-ptog-switch.is-on::after {
    transform: translateX(20px);
}

/* Pricing grid */
.crm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Card base */
.crm-pricing-card {
    background: #fff;
    border: 1.5px solid var(--c-border);
    border-radius: 20px;
    padding: 36px 32px 40px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.crm-pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,255,0.1);
    transform: translateY(-4px);
}

/* Featured card */
.crm-pricing-card--featured {
    background: linear-gradient(145deg, #000055 0%, #0000FF 100%);
    border-color: transparent;
    padding-top: 48px;
    box-shadow: 0 20px 60px rgba(0,0,255,0.3);
    transform: translateY(-8px);
}
.crm-pricing-card--featured:hover {
    box-shadow: 0 28px 72px rgba(0,0,255,0.38);
    transform: translateY(-12px);
}
.crm-pc-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Card head */
.crm-pc-head { margin-bottom: 24px; }
.crm-pc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.crm-pc-head h3 {
    font-size: 1.25rem !important;
    font-weight: 800;
    color: var(--c-dark);
    margin: 0 0 8px;
}
.crm-pricing-card--featured .crm-pc-head h3 { color: #fff; }
.crm-pc-head > p {
    font-size: 0.88rem;
    color: var(--c-body);
    line-height: 1.6;
    margin: 0;
}
.crm-pricing-card--featured .crm-pc-head > p { color: rgba(255,255,255,0.7); }

/* Price */
.crm-pc-price {
    margin-bottom: 24px;
}
.crm-pc-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
    margin-bottom: 4px;
}
.crm-pc-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-dark);
    padding-top: 8px;
}
.crm-pricing-card--featured .crm-pc-currency { color: #fff; }
.crm-pc-num {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--c-dark);
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
}
.crm-pricing-card--featured .crm-pc-num { color: #fff; }
.crm-pc-per {
    font-size: 0.82rem;
    color: var(--c-body);
}
.crm-pricing-card--featured .crm-pc-per { color: rgba(255,255,255,0.6); }

/* Buttons */
.crm-pc-btn {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.22s ease;
    margin-bottom: 28px;
}
.crm-pc-btn--outline {
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
    background: transparent;
}
.crm-pc-btn--outline:hover {
    background: var(--c-primary);
    color: #fff;
}
.crm-pc-btn--white {
    background: #fff;
    color: var(--c-dark);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.crm-pc-btn--white:hover {
    background: #f0f9ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

/* Feature list */
.crm-pc-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--c-border);
    padding-top: 24px;
}
.crm-pricing-card--featured .crm-pc-features {
    border-top-color: rgba(255,255,255,0.15);
}
.crm-pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--c-body);
}
.crm-pricing-card--featured .crm-pc-features li { color: rgba(255,255,255,0.85); }
.crm-pc-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
}
.crm-pricing-card--featured .crm-pc-features li i {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.crm-pc-feat--off {
    opacity: 0.4;
}
.crm-pc-feat--off i {
    background: rgba(0,0,0,0.06) !important;
    color: #94a3b8 !important;
}

/* Note */
.crm-pricing-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--c-body);
    margin: 40px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.crm-pricing-note i { color: var(--c-primary); }

@media (max-width: 1024px) {
    .crm-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .crm-pricing-card--featured { transform: none; }
    .crm-pricing-card--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 640px) {
    .crm-pricing-card { padding: 28px 22px 32px; }
}

/* ================================================================
   STRIP CTA — after Business Needs
   ================================================================ */
.crm-strip-cta {
    background: #fff;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    padding: 28px 0;
}
.crm-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(110deg, #F0F0FF 0%, #fff 60%);
    border: 1px solid rgba(0,0,255,0.18);
    border-left: 4px solid var(--c-primary);
    border-radius: 14px;
    padding: 22px 32px;
}
.crm-strip-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.crm-strip-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-dark);
    line-height: 1.3;
}
.crm-strip-text span {
    font-size: 0.86rem;
    color: var(--c-body);
    line-height: 1.5;
}
.crm-strip-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.crm-strip-demo {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.crm-strip-demo:hover { opacity: 0.7; }
@media (max-width: 768px) {
    .crm-strip-inner { flex-direction: column; align-items: flex-start; padding: 20px 20px 20px 24px; }
}

/* ================================================================
   BRIDGE CTA — after Testimonials, before Pricing
   ================================================================ */
.crm-bridge-cta {
    background: #fff;
    border-top: 3px solid var(--c-primary);
    border-bottom: 1px solid #dde6f0;
    padding: 80px 0 84px;
    position: relative;
}
.crm-bridge-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.crm-bridge-inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}
.crm-bridge-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}
.crm-bridge-tag i { font-size: 0.75rem; }
.crm-bridge-inner h3 {
    font-size: clamp(1.75rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.crm-bridge-sub {
    font-size: 0.97rem;
    color: var(--c-body);
    margin-bottom: 36px;
    line-height: 1.7;
}
.crm-bridge-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.crm-bridge-pricing {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.crm-bridge-pricing i { font-size: 0.7rem; }
.crm-bridge-pricing:hover { opacity: 0.7; }
.crm-bridge-note {
    font-size: 0.76rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}
.crm-bridge-note i { font-size: 0.7rem; margin-right: 3px; }
@media (max-width: 480px) {
    .crm-bridge-cta { padding: 60px 0; }
    .crm-bridge-btns { flex-direction: column; }
}

/* ================================================================
   SECTION CTAs — Integrations / Flow / Features / Results / Needs
   ================================================================ */

/* Integrations footer row */
.crm-int-foot-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.crm-int-foot { margin: 0; }
.crm-int-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid rgba(0,0,255,0.3);
    padding: 9px 20px;
    border-radius: 100px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.crm-int-cta:hover {
    background: rgba(0,0,255,0.06);
    border-color: var(--c-primary);
    transform: translateY(-1px);
}
.crm-int-cta i { font-size: 0.75rem; transition: transform 0.2s; }
.crm-int-cta:hover i { transform: translateX(3px); }

/* Flow section CTA */
.crm-flow-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.crm-flow-cta-note {
    font-size: 0.82rem;
    color: var(--c-body);
    display: flex;
    align-items: center;
    gap: 6px;
}
.crm-flow-cta-note i { color: var(--c-primary); font-size: 0.75rem; }

/* Feature showcase CTA button */
.crm-sf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 24px;
    background: rgba(0,0,255,0.08);
    color: var(--c-primary);
    border: 1.5px solid rgba(0,0,255,0.2);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.crm-sf-cta-btn:hover {
    background: var(--c-primary);
    color: #fff;
    border-color: var(--c-primary);
    transform: translateY(-1px);
}
.crm-sf-cta-btn i { font-size: 0.72rem; transition: transform 0.2s; }
.crm-sf-cta-btn:hover i { transform: translateX(3px); }

/* Results section CTA */
.crm-results-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.crm-results-demo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.crm-results-demo-link i { font-size: 1.1rem; }
.crm-results-demo-link:hover { opacity: 0.75; }

/* Business needs card link */
.crm-needs-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: var(--c-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s, opacity 0.2s;
}
.crm-needs-link i { font-size: 0.72rem; transition: transform 0.2s; }
.crm-needs-link:hover i { transform: translateX(4px); }
.crm-needs-link:hover { opacity: 0.8; }

/* ================================================================
   FAQ
   ================================================================ */
.crm-faq {
    background: #f5f7ff;
    padding: 100px 0 108px;
}

/* Header row */
.crm-faq-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.crm-faq-hd-left { flex: 1; min-width: 260px; }
.crm-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: rgba(0,0,255,0.07);
    color: #0000FF;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,255,0.15);
    margin-bottom: 18px;
}
.crm-faq-hd-left h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
    font-weight: 900;
    color: #00001A;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.crm-faq-hd-left p {
    font-size: 1rem;
    color: #4a4a6a;
    margin: 0;
    line-height: 1.7;
}
.crm-faq-cta-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: #ffffff;
    border: 1.5px solid #0000FF;
    border-radius: 14px;
    text-decoration: none;
    color: #0000FF;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,255,0.1);
}
.crm-faq-cta-btn:hover {
    background: #0000FF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,255,0.25);
}
.crm-faq-cta-btn > i:first-child {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.crm-faq-cta-btn span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.crm-faq-cta-btn span strong {
    font-size: 0.92rem;
    font-weight: 700;
}
.crm-faq-cta-btn span br + * ,
.crm-faq-cta-btn span {
    font-size: 0.8rem;
    color: #4a4a6a;
}
.crm-faq-cta-btn:hover span { color: rgba(255,255,255,0.85); }
.crm-faq-cta-btn > i:last-child {
    font-size: 0.8rem;
    transition: transform 0.2s;
}
.crm-faq-cta-btn:hover > i:last-child { transform: translateX(3px); }

/* Two-column grid */
.crm-faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}
.crm-faq-col { display: flex; flex-direction: column; gap: 12px; }

/* FAQ item card */
.crm-faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid #e8e8f5;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,255,0.04);
}
.crm-faq-item:first-child { border-top: 1.5px solid #e8e8f5; }
.crm-faq-item.is-open {
    border-color: #0000FF;
    box-shadow: 0 4px 20px rgba(0,0,255,0.12);
}

/* Question button */
.crm-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
}
.crm-faq-q:hover .crm-faq-qtext { color: #0000FF; }

/* Icon wrap */
.crm-faq-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0,0,255,0.07);
    border: 1px solid rgba(0,0,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #0000FF;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}
.crm-faq-item.is-open .crm-faq-icon-wrap {
    background: #0000FF;
    border-color: #0000FF;
    color: #fff;
}

/* Question text */
.crm-faq-qtext {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00001A;
    line-height: 1.5;
    transition: color 0.2s;
}
.crm-faq-item.is-open .crm-faq-qtext { color: #0000FF; }

/* Toggle button */
.crm-faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,255,0.06);
    border: 1.5px solid rgba(0,0,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #0000FF;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.35s ease;
}
.crm-faq-item.is-open .crm-faq-toggle {
    background: #0000FF;
    border-color: #0000FF;
    color: #fff;
    transform: rotate(45deg);
}

/* Answer panel */
.crm-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.crm-faq-item.is-open .crm-faq-a { max-height: 220px; }
.crm-faq-a p {
    padding: 0 20px 20px 70px;
    font-size: 0.9rem;
    color: #4a4a6a;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .crm-faq-cols { grid-template-columns: 1fr; gap: 0; }
    .crm-faq-col:last-child .crm-faq-item:first-child { border-top: none; }
}
@media (max-width: 640px) {
    .crm-faq-hd { flex-direction: column; align-items: flex-start; }
    .crm-faq-cta-btn { width: 100%; }
    .crm-faq-q { padding: 20px 14px; gap: 12px; }
    .crm-faq-a p { padding: 0 14px 20px 14px; }
}

/* ================================================================
   CTA — tag · stats · trust (updated for premium dark theme)
   ================================================================ */
.crm-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 100px;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.crm-cta-tag i { color: rgba(255,255,255,0.7); font-size: 0.75rem; }

.crm-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 40px;
    max-width: none;
    border: none;
    border-radius: 0;
    overflow: visible;
}
.crm-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 18px 28px;
    flex: 1;
    min-width: 130px;
}
.crm-cta-stat strong {
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.crm-cta-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.48);
    text-align: center;
    line-height: 1.3;
}
.crm-cta-sdiv { display: none; }

.crm-cta-trust {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
}
.crm-cta-trust i {
    margin-right: 5px;
    color: rgba(0,0,255,0.65);
}
@media (max-width: 560px) {
    .crm-cta-stats { flex-direction: column; }
    .crm-cta-stat  { width: 100%; }
    .crm-cta-trust { gap: 14px; }
}

/* ================================================================
   CLOSING (light blue gradient)
   ================================================================ */
.crm-closing {
    background: var(--grad-closing);
    padding: 96px 0;
}

.crm-closing-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.crm-closing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0,0,255,0.1);
    color: var(--c-primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,255,0.18);
}

.crm-closing-inner h2 {
    font-size: clamp(2rem, 4vw, 2.9rem) !important;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.crm-closing-inner p {
    font-size: 1.05rem;
    color: var(--c-body);
    line-height: 1.8;
}

/* ================================================================
   CTA — Electric Blue Palette
   ================================================================ */
.crm-cta {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Decorative blobs */
.crm-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,0,255,0.06) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
    z-index: 0;
}

/* Glow orbs */
.crm-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.crm-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.crm-cta-orb-1 {
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(22,137,254,0.12) 0%, transparent 70%);
    bottom: -80px; right: -80px;
}
.crm-cta-orb-2 {
    width: 300px; height: 250px;
    background: radial-gradient(ellipse, rgba(197,234,253,0.5) 0%, transparent 70%);
    top: 20px; right: 20%;
}

/* Main card */
.crm-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0000FF 0%, #1689FE 55%, #21A9FF 100%);
    border-radius: 32px;
    padding: 64px 56px 52px;
    box-shadow: 0 32px 80px rgba(0,0,255,0.3), 0 8px 32px rgba(0,0,255,0.15);
}

/* Heading */
.crm-cta-inner h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* Body */
.crm-cta-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Tag */
.crm-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.crm-cta-tag i { color: rgba(255,255,255,0.8); font-size: 0.75rem; }

/* Stats */
.crm-cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px 0;
    border: 1px solid rgba(255,255,255,0.2);
}
.crm-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 130px;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.crm-cta-stat:last-child { border-right: none; }
.crm-cta-stat strong {
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.crm-cta-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
    line-height: 1.3;
}
.crm-cta-sdiv { display: none; }

/* Trust row */
.crm-cta-trust {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}
.crm-cta-trust i {
    margin-right: 5px;
    color: rgba(255,255,255,0.9);
}

/* Actions */
.crm-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Ghost button override for CTA section */
.crm-btn-ghost-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.crm-btn-ghost-cta:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Primary button in CTA */
.crm-cta-inner .crm-btn-primary,
.crm-cta-inner .crm-btn-large {
    background: #ffffff;
    color: #0000FF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.crm-cta-inner .crm-btn-primary:hover,
.crm-cta-inner .crm-btn-large:hover {
    background: #f0f0ff;
    transform: translateY(-2px);
}

.crm-cta-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.crm-cta-note i {
    margin-right: 6px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .crm-cta-inner { padding: 44px 28px 40px; border-radius: 20px; }
}

/* ================================================================
   ABOUT
   ================================================================ */
.crm-about {
    background: var(--c-white);
    padding: 40px 0;
    border-top: 1px solid var(--c-border);
}
.crm-about p {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.75;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */
@media (max-width: 1024px) {
    .crm-hero { padding: 72px 0 60px; }
    .crm-hero-right { display: none; }
}
@media (max-width: 768px) {
    .crm-flow,
    .crm-features,
    .crm-workflow,
    .crm-position,
    .crm-closing,
    .crm-cta { padding: 64px 0; }
    .crm-trust { padding: 48px 0; }
}


/* ============================================================
   NEW HERO — Centered (matching PM page pattern)
   ============================================================ */
.crm-hero-new {
    position: relative;
    padding: 50px 0 100px;
    background: var(--c-white);
    overflow: hidden;
}
.crm-hero-bg-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(0,48,219,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,48,219,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.crm-hero-glow-1 {
    position: absolute; top: -10%; left: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,48,219,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.crm-hero-glow-2 {
    position: absolute; bottom: -10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.crm-hero-container { position: relative; z-index: 1; }
.crm-hero-center {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* Rating Badge */
.crm-hero-rating-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,48,219,0.04);
    border: 1px solid rgba(0,48,219,0.1);
    padding: 8px 20px; border-radius: 50px;
    margin-bottom: 32px;
}
.crm-hero-stars { display: flex; gap: 2px; color: #F59E0B; font-size: 13px; }
.crm-hero-rating-badge span { font-size: 14px; color: var(--c-muted); }
.crm-hero-rating-badge strong { color: var(--c-text); }

/* H1 */
.crm-hero-h1 {
    font-size: 72px; font-weight: 800; color: var(--c-text);
    line-height: 1.05; margin-bottom: 28px; letter-spacing: -2px;
}
.crm-hero-new .crm-h1-em {
    background: none;
    -webkit-text-fill-color: var(--c-primary);
    color: var(--c-primary);
    font-style: normal;
}

/* Subtitle */
.crm-hero-sub {
    font-size: 20px; color: var(--c-muted); line-height: 1.6;
    max-width: 650px; margin: 0 auto 36px;
    border-left: none; padding-left: 0;
}
.crm-hero-sub strong { color: var(--c-text); font-weight: 600; }

/* Checklist */
.crm-hero-checklist {
    display: flex; justify-content: center; gap: 30px;
    margin-bottom: 40px;
}
.crm-check-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; color: var(--c-text);
}
.crm-check-item i { color: var(--c-primary); font-size: 16px; }

/* Buttons */
.crm-hero-btns {
    display: flex; justify-content: center; gap: 24px;
    margin-bottom: 48px;
}
.crm-btn-signup, .crm-btn-demo {
    padding: 18px 40px; border-radius: 10px;
    font-size: 17px; font-weight: 800; font-family: 'Ubuntu', sans-serif;
    text-decoration: none; letter-spacing: 0.5px;
    transition: all 0.2s ease; cursor: pointer;
}
.crm-btn-signup {
    background: var(--c-primary); color: #fff;
    box-shadow: 0 10px 30px rgba(0,48,219,0.3);
}
.crm-btn-signup:hover {
    background: var(--c-accent); transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,48,219,0.4);
}
.crm-btn-demo {
    background: #F8FAFC; color: var(--c-text);
    border: 1px solid var(--c-border);
}
.crm-btn-demo:hover { background: #F1F5F9; border-color: #CBD5E1; }

/* Featured On */
.crm-hero-featured {
    display: flex; flex-direction: column; gap: 16px;
    align-items: center;
}
.crm-featured-label {
    font-size: 12px; font-weight: 800; color: #94A3B8;
    letter-spacing: 2px; text-transform: uppercase;
}
.crm-featured-logos {
    display: flex; align-items: center; justify-content: center; gap: 28px;
}
.crm-featured-item {
    font-size: 17px; font-weight: 700; color: #475569;
    letter-spacing: -0.5px;
}
.crm-featured-divider {
    width: 1px; height: 16px; background: #CBD5E1;
}

/* Hero Responsive */
@media (max-width: 1100px) {
    .crm-hero-new { padding: 120px 0 80px; }
    .crm-hero-h1 { font-size: 48px; }
    .crm-hero-checklist { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
    .crm-hero-new { padding: 100px 0 60px; }
    .crm-hero-h1 { font-size: 36px; letter-spacing: -1px; }
    .crm-hero-sub { font-size: 17px; }
    .crm-hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .crm-btn-signup, .crm-btn-demo { width: 100%; max-width: 320px; text-align: center; }
    .crm-hero-checklist { flex-direction: column; align-items: center; gap: 12px; }
}

/* Dashboard headers match card background colors */
[data-card="1"] .crm2-single-dash-hd { background: linear-gradient(90deg, #059669 0%, #34D399 100%); }
[data-card="2"] .crm2-single-dash-hd { background: linear-gradient(90deg, #7C3AED 0%, #A78BFA 100%); }
[data-card="3"] .crm2-single-dash-hd { background: linear-gradient(90deg, #EA580C 0%, #FB923C 100%); }
[data-card="4"] .crm2-single-dash-hd { background: linear-gradient(90deg, #0284C7 0%, #38BDF8 100%); }

/* ============================================================
   INTEGRATIONS v2 — Side-by-side layout with logo grid
   ============================================================ */
.crm-integ-v2 { padding: 90px 0; background: var(--c-white); }
.crm-iv2-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.crm-iv2-left {}
.crm-iv2-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,48,219,0.06); color: var(--c-primary);
    font-size: 13px; font-weight: 600; padding: 6px 14px;
    border-radius: 20px; margin-bottom: 20px;
    letter-spacing: 0.02em; text-transform: uppercase;
}
.crm-iv2-left h2 { font-size: 2rem; font-weight: 700; color: var(--c-text); margin-bottom: 14px; line-height: 1.2; }
.crm-iv2-left p { font-size: 0.95rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 8px; }
.crm-iv2-foot { font-size: 0.85rem; color: var(--c-muted); font-weight: 500; margin-top: 16px; }
.crm-iv2-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.crm-iv2-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 22px 12px; background: var(--c-bg); border-radius: 14px;
    border: 1px solid var(--c-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.crm-iv2-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.crm-iv2-item img { width: 36px; height: 36px; object-fit: contain; }
.crm-iv2-item span { font-size: 0.72rem; font-weight: 600; color: var(--c-text); text-align: center; }
@media (max-width: 1024px) { .crm-iv2-layout { grid-template-columns: 1fr; gap: 40px; } .crm-iv2-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 640px) { .crm-iv2-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CTA STRIP
   ============================================================ */
.crm-cta-strip { padding: 64px 0; background: var(--c-primary); }
.crm-cta-strip-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.crm-cta-strip-inner h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.crm-cta-strip-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.crm-cta-strip-btns { display: flex; gap: 16px; flex-shrink: 0; }
.crm-cta-strip-btns .crm-btn-signup { background: #fff; color: var(--c-primary); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.crm-cta-strip-btns .crm-btn-signup:hover { background: #EEF2FF; }
.crm-cta-strip-btns .crm-btn-demo { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.crm-cta-strip-btns .crm-btn-demo:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
@media (max-width: 900px) { .crm-cta-strip-inner { flex-direction: column; text-align: center; } .crm-cta-strip-btns { justify-content: center; } }

/* ============================================================
   FAQ v2 — Side-by-side layout
   ============================================================ */
.crm-faq-v2 { padding: 90px 0; background: var(--c-bg); }
.crm-faq-v2-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.crm-faq-v2-left h2 { font-size: 2rem; font-weight: 700; color: var(--c-text); margin-bottom: 12px; line-height: 1.2; }
.crm-faq-v2-left p { font-size: 0.95rem; color: var(--c-muted); line-height: 1.7; }
.crm-faq-v2-right { display: flex; flex-direction: column; gap: 8px; }
.crm-faq-v2-item {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: 12px; overflow: hidden;
}
.crm-faq-v2-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: var(--c-white);
    border: none; cursor: pointer; text-align: left;
    font-size: 0.93rem; font-weight: 600; color: var(--c-text);
    font-family: 'Ubuntu', sans-serif; gap: 16px;
    transition: background 0.15s ease;
}
.crm-faq-v2-q:hover { background: #FAFBFF; }
.crm-faq-v2-icon { font-size: 0.8rem; color: var(--c-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.crm-faq-v2-q.crm-faq-open .crm-faq-v2-icon { transform: rotate(45deg); color: var(--c-primary); }
.crm-faq-v2-q.crm-faq-open { color: var(--c-primary); }
.crm-faq-v2-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.crm-faq-v2-a.crm-faq-visible { max-height: 400px; }
.crm-faq-v2-a p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--c-muted); line-height: 1.75; }
@media (max-width: 1024px) { .crm-faq-v2-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FINAL CTA — Clean blue box
   ============================================================ */
.crm-final-cta { padding: 0; background: var(--c-white); }
.crm-final-cta-box {
    background: var(--c-primary);
    border-radius: 24px; padding: 80px 48px;
    text-align: center; margin: 60px 0;
}
.crm-final-cta-box h2 { font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.crm-final-cta-box p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.crm-final-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.crm-fc-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--c-primary);
    padding: 16px 32px; border-radius: 10px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s ease;
}
.crm-fc-btn-primary:hover { background: #EEF2FF; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.crm-fc-btn-outline {
    display: inline-flex; align-items: center;
    border: 1.5px solid rgba(255,255,255,0.35); color: #fff;
    padding: 16px 32px; border-radius: 10px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    background: transparent; transition: all 0.2s ease;
}
.crm-fc-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.crm-final-cta-fine { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
@media (max-width: 640px) {
    .crm-final-cta-box { padding: 48px 24px; border-radius: 16px; margin: 40px 0; }
    .crm-final-cta-box h2 { font-size: 1.8rem; }
    .crm-final-cta-btns { flex-direction: column; align-items: center; }
}

/* (old marquee CSS below kept for reference but unused) */
/* ============================================================
   INTEGRATIONS — old marquee (deprecated)
   ============================================================ */
.crm-integ { padding: 90px 0; background: var(--c-bg); overflow: hidden; }
.crm-integ-hd { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.crm-integ-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,48,219,0.06); color: var(--c-primary);
    font-size: 13px; font-weight: 600; padding: 6px 14px;
    border-radius: 20px; margin-bottom: 20px;
    letter-spacing: 0.02em; text-transform: uppercase;
}
.crm-integ-hd h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800; color: var(--c-text);
    margin-bottom: 14px; line-height: 1.2;
}
.crm-integ-hd p { color: var(--c-muted); font-size: 1.05rem; line-height: 1.75; }

/* Marquee wrapper with edge fade */
.crm-marquee-wrap { position: relative; margin-bottom: 16px; }
.crm-marquee-wrap::before,
.crm-marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px;
    z-index: 2; pointer-events: none;
}
.crm-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--c-bg), transparent); }
.crm-marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--c-bg), transparent); }

.crm-marquee { overflow: hidden; }
.crm-marquee-inner { display: flex; gap: 20px; width: max-content; }
.crm-marquee--left .crm-marquee-inner { animation: crm-scroll-left 30s linear infinite; }
.crm-marquee--right .crm-marquee-inner { animation: crm-scroll-right 35s linear infinite; }

@keyframes crm-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes crm-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Logo chip */
.crm-logo-chip {
    display: flex; align-items: center; gap: 12px;
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: 12px; padding: 14px 24px; flex-shrink: 0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.crm-logo-chip:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: rgba(0,48,219,0.2);
}
.crm-logo-chip img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.crm-logo-chip span { font-size: 0.85rem; font-weight: 600; color: var(--c-text); white-space: nowrap; }

/* Footer */
.crm-integ-foot {
    text-align: center; font-size: 0.88rem; color: var(--c-muted);
    font-weight: 500; margin-top: 32px;
}

@media (max-width: 640px) {
    .crm-logo-chip { padding: 10px 16px; }
    .crm-logo-chip img { width: 22px; height: 22px; }
    .crm-logo-chip span { font-size: 0.78rem; }
    .crm-marquee-wrap::before, .crm-marquee-wrap::after { width: 40px; }
}
