/* ════════════════════════════════════════
   CRM DASHBOARD SECTION
   ════════════════════════════════════════ */

.crm-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #F8FAFC;
  overflow: hidden;
}

.crm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 41, 94, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 41, 94, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.crm-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(13, 86, 169, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

body.light .crm-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F8FAFC 50%, #F8FAFC 100%);
}

body.light .crm-section::before {
  background-image:
    linear-gradient(rgba(5, 41, 94, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 41, 94, 0.02) 1px, transparent 1px);
}

body.light .crm-section::after {
  background: radial-gradient(ellipse, rgba(13, 86, 169, 0.03) 0%, transparent 70%);
}

/* ── Inner Layout ── */
.crm-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════
   LEFT — CONTENT
═══════════════════════════════ */
.crm-left {
  flex: 1;
  min-width: 0;
}

.crm-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0D56A9;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.crm-tag-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0D56A9, transparent);
}

.crm-left h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #05295E;
  margin: 22px 0;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.5s ease, opacity 0.7s ease, transform 0.7s ease;
}

body.light .crm-left h2 {
  color: #05295E;
}

.crm-left h2 span {
  background: linear-gradient(135deg, #0D56A9, #B89857);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crm-left > p {
  font-size: 15px;
  line-height: 1.8;
  color: #5F6B7A;
  margin-bottom: 36px;
  max-width: 460px;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.5s ease, opacity 0.7s ease, transform 0.7s ease;
}

body.light .crm-left > p {
  color: #5F6B7A;
}

/* ── Feature List ── */
.crm-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.crm-feat {
  width: calc(50% - 8px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  transition: all 0.35s ease;
}

body.light .crm-feat {
  background: #FFFFFF;
  border-color: #E5E7EB;
}

.crm-feat:hover {
  border-color: rgba(13, 86, 169, 0.2);
  background: #EFF6FF;
  transform: translateX(6px);
}

body.light .crm-feat:hover {
  background: #EFF6FF;
  border-color: rgba(13, 86, 169, 0.18);
}

.crm-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(13, 86, 169, 0.1) 0%, rgba(184, 152, 87, 0.05) 100%);
  border: 1px solid rgba(13, 86, 169, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.crm-feat-icon i {
  font-size: 20px;
  color: #0D56A9;
}

.crm-feat:hover .crm-feat-icon {
  background: linear-gradient(135deg, rgba(13, 86, 169, 0.15) 0%, rgba(184, 152, 87, 0.08) 100%);
  border-color: rgba(13, 86, 169, 0.2);
  box-shadow: 0 0 16px rgba(13, 86, 169, 0.1);
}

.crm-feat h4 {
  font-size: 14px;
  font-weight: 700;
  color: #05295E;
  margin-bottom: 3px;
  transition: color 0.5s ease;
}

body.light .crm-feat h4 {
  color: #05295E;
}

.crm-feat p {
  font-size: 12px;
  color: #8A94A6;
  line-height: 1.5;
  transition: color 0.5s ease;
}

body.light .crm-feat p {
  color: #8A94A6;
}

/* ── Button ── */
.crm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0D56A9, #B89857);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(13, 86, 169, 0.25);
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease, transform 0.7s ease;
}

.crm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.crm-btn:hover::before {
  left: 100%;
}

.crm-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(13, 86, 169, 0.4);
}

.crm-btn:active {
  transform: translateY(0) scale(0.97);
}

.crm-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.crm-btn:hover i {
  transform: translateX(4px);
}

/* ═══════════════════════════════
   RIGHT — MOCKUP
═══════════════════════════════ */
.crm-right {
  flex: 1.15;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crm-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid rgba(13, 86, 169, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 0 rgba(13, 86, 169, 0.03),
    0 30px 80px rgba(5, 41, 94, 0.08),
    0 0 0 1px rgba(13, 86, 169, 0.05),
    0 0 80px rgba(13, 86, 169, 0.03);
  will-change: transform;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.crm-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
  z-index: 10;
}

.crm-mockup::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 86, 169, 0.15), transparent);
  pointer-events: none;
  z-index: 10;
}

/* ── Light Mode Glass ── */
body.light .crm-mockup {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  border: 1px solid rgba(13, 86, 169, 0.1);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 0 rgba(13, 86, 169, 0.03),
    0 30px 80px rgba(5, 41, 94, 0.06),
    0 0 0 1px rgba(13, 86, 169, 0.04),
    0 0 60px rgba(13, 86, 169, 0.02);
}

body.light .crm-mockup::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
}

body.light .crm-mockup::after {
  background: linear-gradient(90deg, transparent, rgba(13, 86, 169, 0.15), transparent);
}

/* ── Mockup Header ── */
.crm-mock-header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(13, 86, 169, 0.03);
  border-bottom: 1px solid rgba(13, 86, 169, 0.06);
  gap: 14px;
  position: relative;
}

.crm-mock-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 86, 169, 0.1), transparent);
  pointer-events: none;
}

body.light .crm-mock-header {
  background: rgba(13, 86, 169, 0.03);
  border-bottom-color: rgba(13, 86, 169, 0.06);
}

body.light .crm-mock-header::after {
  background: linear-gradient(90deg, transparent, rgba(13, 86, 169, 0.1), transparent);
}

.crm-mock-dots {
  display: flex;
  gap: 6px;
}

.crm-mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.crm-mock-dots span:nth-child(1) { background: #FF5F57; }
.crm-mock-dots span:nth-child(2) { background: #FEBC2E; }
.crm-mock-dots span:nth-child(3) { background: #28C840; }

.crm-mock-title {
  font-size: 12px;
  font-weight: 600;
  color: #8A94A6;
  letter-spacing: 0.3px;
}

body.light .crm-mock-title {
  color: #8A94A6;
}

.crm-mock-spacer {
  flex: 1;
}

.crm-mock-actions {
  display: flex;
  gap: 14px;
}

.crm-mock-actions i {
  font-size: 15px;
  color: #8A94A6;
  cursor: default;
  transition: color 0.3s ease;
}

body.light .crm-mock-actions i {
  color: #8A94A6;
}

/* ── Mockup Body ── */
.crm-mock-body {
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════
   STATS ROW
═══════════════════════════════ */
.crm-stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.crm-stat-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(13, 86, 169, 0.02);
  border: 1px solid rgba(13, 86, 169, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.crm-stat-box:hover {
  background: rgba(13, 86, 169, 0.04);
  border-color: rgba(13, 86, 169, 0.12);
}

body.light .crm-stat-box {
  background: rgba(13, 86, 169, 0.02);
  border-color: rgba(13, 86, 169, 0.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

body.light .crm-stat-box:hover {
  background: rgba(13, 86, 169, 0.04);
  border-color: rgba(13, 86, 169, 0.12);
}

.crm-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 86, 169, 0.1) 0%, rgba(13, 86, 169, 0.03) 100%);
  border: 1px solid rgba(13, 86, 169, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crm-stat-icon i {
  font-size: 18px;
  color: #0D56A9;
}

.crm-stat-icon.active-icon {
  background: linear-gradient(135deg, rgba(184, 152, 87, 0.12) 0%, rgba(184, 152, 87, 0.04) 100%);
  border-color: rgba(184, 152, 87, 0.08);
}

.crm-stat-icon.active-icon i {
  color: #B89857;
}

.crm-stat-icon.revenue-icon {
  background: linear-gradient(135deg, rgba(226, 210, 146, 0.15) 0%, rgba(226, 210, 146, 0.05) 100%);
  border-color: rgba(226, 210, 146, 0.1);
}

.crm-stat-icon.revenue-icon i {
  color: #B89857;
}

body.light .crm-stat-icon {
  background: linear-gradient(135deg, rgba(13, 86, 169, 0.08) 0%, rgba(13, 86, 169, 0.03) 100%);
}

body.light .crm-stat-icon.active-icon {
  background: linear-gradient(135deg, rgba(184, 152, 87, 0.08) 0%, rgba(184, 152, 87, 0.03) 100%);
}

body.light .crm-stat-icon.revenue-icon {
  background: linear-gradient(135deg, rgba(226, 210, 146, 0.1) 0%, rgba(226, 210, 146, 0.03) 100%);
}

.crm-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.crm-stat-label {
  font-size: 9px;
  font-weight: 600;
  color: #8A94A6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

body.light .crm-stat-label {
  color: #8A94A6;
}

.crm-stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #05295E;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

body.light .crm-stat-value {
  color: #05295E;
}

.crm-stat-dollar {
  font-size: 14px;
  font-weight: 800;
  color: #B89857;
}

body.light .crm-stat-dollar {
  color: #B89857;
}

/* ═══════════════════════════════
   CLIENT TABLE
═══════════════════════════════ */
.crm-table-wrap {
  border-radius: 12px;
  border: 1px solid rgba(13, 86, 169, 0.05);
  overflow: hidden;
  background: rgba(13, 86, 169, 0.01);
}

body.light .crm-table-wrap {
  border-color: rgba(13, 86, 169, 0.05);
  background: rgba(13, 86, 169, 0.01);
}

.crm-table-header {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(13, 86, 169, 0.02);
  border-bottom: 1px solid rgba(13, 86, 169, 0.04);
  font-size: 9px;
  font-weight: 700;
  color: #8A94A6;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body.light .crm-table-header {
  background: rgba(13, 86, 169, 0.02);
  border-bottom-color: rgba(13, 86, 169, 0.04);
  color: #8A94A6;
}

.ct-client { flex: 1.4; }
.ct-status { flex: 0.8; text-align: center; }
.ct-balance { flex: 0.8; text-align: right; }
.ct-pnl { flex: 0.7; text-align: right; }

.crm-table-body {
  padding: 2px 0;
}

/* ── Table Row ── */
.crm-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  transition: all 0.25s ease;
  cursor: default;
  border-left: 2px solid transparent;
}

.crm-row:hover {
  background: rgba(13, 86, 169, 0.03);
  border-left-color: #0D56A9;
}

body.light .crm-row:hover {
  background: rgba(13, 86, 169, 0.03);
}

.crm-row + .crm-row {
  border-top: 1px solid rgba(13, 86, 169, 0.04);
}

body.light .crm-row + .crm-row {
  border-top-color: rgba(13, 86, 169, 0.04);
}

/* ── Client Cell ── */
.crm-client-cell {
  flex: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.crm-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.crm-avatar.jd {
  background: linear-gradient(135deg, #0D56A9, #05295E);
  box-shadow: 0 2px 10px rgba(13, 86, 169, 0.3);
}

.crm-avatar.sm {
  background: linear-gradient(135deg, #71542E, #B89857);
  box-shadow: 0 2px 10px rgba(113, 84, 46, 0.3);
}

.crm-avatar.mr {
  background: linear-gradient(135deg, #B89857, #E2D292);
  box-shadow: 0 2px 10px rgba(184, 152, 87, 0.3);
}

.crm-avatar.al {
  background: linear-gradient(135deg, #0D56A9, #1A6FC4);
  box-shadow: 0 2px 10px rgba(13, 86, 169, 0.3);
}

.crm-avatar::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.crm-avatar.jd::after { content: "JD"; }
.crm-avatar.sm::after { content: "SM"; }
.crm-avatar.mr::after { content: "MR"; }
.crm-avatar.al::after { content: "AL"; }

.crm-client-name {
  font-size: 13px;
  font-weight: 700;
  color: #05295E;
  line-height: 1.2;
}

body.light .crm-client-name {
  color: #05295E;
}

.crm-client-id {
  font-size: 9px;
  font-weight: 500;
  color: #8A94A6;
  letter-spacing: 0.3px;
}

body.light .crm-client-id {
  color: #8A94A6;
}

/* ── Status Badge ── */
.crm-status {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}

.crm-status.active {
  background: rgba(184, 152, 87, 0.08);
  color: #B89857;
  border: 1px solid rgba(184, 152, 87, 0.12);
}

.crm-status.pending {
  background: rgba(13, 86, 169, 0.08);
  color: #0D56A9;
  border: 1px solid rgba(13, 86, 169, 0.12);
}

.crm-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.crm-status.active .crm-status-dot {
  box-shadow: 0 0 6px rgba(184, 152, 87, 0.5);
}

body.light .crm-status.active {
  background: rgba(184, 152, 87, 0.08);
  color: #B89857;
  border-color: rgba(184, 152, 87, 0.12);
}

body.light .crm-status.pending {
  background: rgba(13, 86, 169, 0.08);
  color: #0D56A9;
  border-color: rgba(13, 86, 169, 0.12);
}

/* ── Balance ── */
.crm-balance {
  flex: 0.8;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: #5F6B7A;
  font-variant-numeric: tabular-nums;
}

body.light .crm-balance {
  color: #5F6B7A;
}

/* ── P&L ── */
.crm-pnl {
  flex: 0.7;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.crm-pnl.up { color: #B89857; }
.crm-pnl.down { color: #FF4D6A; }
.crm-pnl.neutral { color: #8A94A6; }

body.light .crm-pnl.neutral { color: #8A94A6; }

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.crm-hidden {
  opacity: 0 !important;
  transform: translateY(28px) !important;
}

.crm-mockup.crm-hidden {
  transform: translateY(50px) scale(0.92) !important;
}

.crm-tag.crm-reveal { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.crm-left h2.crm-reveal { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.crm-left > p.crm-reveal { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.crm-features.crm-reveal { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.crm-btn.crm-reveal { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.crm-mockup.crm-reveal { opacity: 1; transform: translateY(0) scale(1); }

/* ═══════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .crm-inner {
    padding: 0 30px;
    gap: 50px;
  }

  .crm-left h2 {
    font-size: 38px;
  }

  .crm-mockup {
    max-width: 520px;
  }
}

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

  .crm-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 6%;
  }

  .crm-left > p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .crm-feat {
    text-align: left;
  }

  .crm-btn {
    margin: 0 auto;
  }

  .crm-mockup {
    width: 100%;
    max-width: 460px;
  }

  .crm-stats-row {
    gap: 8px;
  }

  .crm-stat-box {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .crm-stat-value {
    font-size: 16px;
  }

  .crm-mock-body {
    padding: 14px;
  }

  .ct-pnl,
  .crm-pnl {
    display: none;
  }

  .ct-balance,
  .crm-balance {
    flex: 0.9;
  }
}

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

  .crm-left h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .crm-left > p {
    font-size: 13px;
  }

  .crm-features {
    gap: 10px;
  }

  .crm-feat {
    padding: 12px 14px;
    gap: 12px;
  }

  .crm-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .crm-feat-icon i {
    font-size: 16px;
  }

  .crm-feat h4 {
    font-size: 13px;
  }

  .crm-btn {
    width: 100%;
    justify-content: center;
  }

  .crm-mockup {
    width: 100%;
    border-radius: 16px;
  }

  .crm-mock-header {
    padding: 10px 14px;
  }

  .crm-mock-title {
    font-size: 10px;
  }

  .crm-mock-body {
    padding: 10px;
  }

  .crm-stats-row {
    flex-direction: column;
    gap: 8px;
  }

  .crm-stat-box {
    flex-direction: row;
    align-items: center;
    padding: 10px 12px;
  }

  .crm-table-header {
    padding: 8px 12px;
    font-size: 8px;
  }

  .crm-row {
    padding: 10px 12px;
  }

  .crm-avatar {
    width: 28px;
    height: 28px;
  }

  .crm-avatar::after {
    font-size: 10px;
  }

  .crm-client-name {
    font-size: 11px;
  }

  .crm-client-id {
    font-size: 8px;
  }

  .crm-balance {
    font-size: 11px;
  }

  .crm-status {
    font-size: 9px;
    padding: 3px 8px;
  }

  .ct-status,
  .crm-status {
    display: none;
  }

  .ct-client,
  .crm-client-cell {
    flex: 1.5;
  }

  .ct-balance,
  .crm-balance {
    flex: 1;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .crm-tag,
  .crm-left h2,
  .crm-left > p,
  .crm-features,
  .crm-btn,
  .crm-mockup {
    transition: none !important;
  }
}