/* =========================================================
   V36 CRM Enterprise
   ========================================================= */

.v36-crm-enterprise{
  position:relative;
  overflow:hidden;
}

.v36-crm-enterprise::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0,229,255,.12), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255,90,95,.10), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(255,122,24,.08), transparent 38%);
  pointer-events:none;
}

.v36-crm-enterprise .container{
  position:relative;
  z-index:1;
}

.v36-crm-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  margin-top:34px;
  align-items:stretch;
}

.v36-crm-panel,
.v36-crm-side{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  padding:24px;
  background:linear-gradient(180deg, rgba(15,18,32,.96), rgba(8,10,18,.98));
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 26px 90px rgba(0,0,0,.34);
}

.v36-crm-panel::before,
.v36-crm-side::before,
.v36-crm-card::before,
.v36-crm-lead::before{
  content:"";
  position:absolute;
  inset:-45%;
  background:
    radial-gradient(circle at 22% 26%, rgba(0,229,255,.18), transparent 36%),
    radial-gradient(circle at 72% 34%, rgba(255,90,95,.16), transparent 38%),
    radial-gradient(circle at 52% 82%, rgba(255,122,24,.12), transparent 40%);
  opacity:.38;
  filter:blur(18px);
  pointer-events:none;
}

.v36-crm-panel > *,
.v36-crm-side > *,
.v36-crm-card > *,
.v36-crm-lead > *{
  position:relative;
  z-index:1;
}

.v36-crm-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  margin-bottom:18px;
}

.v36-crm-window{
  display:flex;
  gap:7px;
}

.v36-crm-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
}

.v36-crm-dot:nth-child(1){background:#ff5a5f}
.v36-crm-dot:nth-child(2){background:#ffbd2e}
.v36-crm-dot:nth-child(3){background:#28c840}

.v36-crm-label{
  color:#cbd5e1;
  font-size:13px;
}

.v36-crm-cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-bottom:18px;
}

.v36-crm-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:16px;
  text-align:center;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  transition:.22s ease;
}

.v36-crm-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,229,255,.38);
  box-shadow:0 20px 65px rgba(0,229,255,.10);
}

.v36-crm-card strong{
  display:block;
  color:#fff;
  font-size:25px;
  margin-bottom:5px;
}

.v36-crm-card span{
  color:#cbd5e1;
  font-size:12px;
}

.v36-crm-leads{
  display:grid;
  gap:10px;
}

.v36-crm-lead{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
}

.v36-crm-lead b{
  color:#fff;
  display:block;
  margin-bottom:4px;
}

.v36-crm-lead small{
  color:#94a3b8;
}

.v36-crm-status{
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  background:rgba(0,229,255,.16);
  border:1px solid rgba(0,229,255,.25);
  animation:v36LeadPulse 2s infinite;
}

@keyframes v36LeadPulse{

  0%{
    box-shadow:0 0 0 0 rgba(0,229,255,.35);
  }

  70%{
    box-shadow:0 0 0 10px rgba(0,229,255,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(0,229,255,0);
  }

}

.v36-crm-status.paid{
  background:rgba(52,199,89,.16);
  border-color:rgba(52,199,89,.28);
}

.v36-crm-status.work{
  background:rgba(255,122,24,.16);
  border-color:rgba(255,122,24,.28);
}

.v36-crm-side{
  text-align:center;
}

.v36-crm-side h3{
  margin:0 0 12px;
  color:#fff;
  font-size:27px;
}

.v36-crm-side p{
  color:#cbd5e1;
  line-height:1.7;
  margin:0 auto 20px;
}

.v36-crm-funnel{
  display:grid;
  gap:10px;
}

.v36-crm-step{
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  color:#e5e7eb;
  text-align:left;
}

.v36-crm-step span{
  color:#00E5FF;
  font-weight:900;
  margin-right:8px;
}

@media(max-width:980px){
  .v36-crm-layout{
    grid-template-columns:1fr;
  }

  .v36-crm-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:560px){
  .v36-crm-panel,
  .v36-crm-side{
    padding:20px;
    border-radius:24px;
  }

  .v36-crm-cards{
    grid-template-columns:1fr;
  }

  .v36-crm-lead{
    grid-template-columns:1fr;
    text-align:center;
  }

  .v36-crm-card:hover{
    transform:none;
  }
}

/* =========================================================
   V36.0.1 CRM FX
   ========================================================= */

.v36-crm-card,
.v36-crm-lead,
.v36-crm-step{
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.v36-crm-card:hover,
.v36-crm-lead:hover,
.v36-crm-step:hover{
  transform:translateY(-4px);
  border-color:rgba(0,229,255,.35);

  box-shadow:
    0 0 20px rgba(0,229,255,.08),
    0 18px 55px rgba(0,0,0,.25);
}

/* =========================================================
   V36.0.2 CRM SCAN FX
   ========================================================= */

.v36-crm-panel::after{

  content:"";

  position:absolute;

  top:-30%;
  left:-50%;

  width:40%;
  height:180%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0,229,255,.08),
      transparent
    );

  transform:rotate(8deg);

  animation:v36ScanFx 8s linear infinite;

  pointer-events:none;

  z-index:0;
}

@keyframes v36ScanFx{

  from{
    left:-50%;
  }

  to{
    left:150%;
  }

}
