/* =========================
   SALES SECTION
========================= */

.sales-section{
  position: relative;

  padding: 130px 20px;

  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #fff9f6
    );

  overflow: hidden;
}

/* BLUR */

.sales-blur{
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  animation:
    salesBlur 8s ease-in-out infinite;
}

.sales-blur-1{
  width: 320px;
  height: 320px;

  background:
    rgba(255,140,0,0.10);

  top: -100px;
  left: -100px;
}

.sales-blur-2{
  width: 260px;
  height: 260px;

  background:
    rgba(255,80,80,0.10);

  bottom: -80px;
  right: -100px;
}

/* TOP */

.sales-top{
  position: relative;
  z-index: 2;

  max-width: 950px;

  margin:
    0 auto 80px;

  text-align: center;

  animation:
    fadeUp 1s ease-in-out;
}

.sales-badge{
  display: inline-block;

  padding: 12px 24px;

  border-radius: 100px;

  background:
    rgba(255,140,0,0.08);

  color:
    #ff7300;

  border:
    1px solid rgba(255,140,0,0.10);

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;
}

.sales-top h2{
  font-size:
    clamp(42px,6vw,74px);

  line-height: 1.1;

  color:
    #111;

  margin-bottom: 24px;

  font-weight: 800;
}

.sales-top h2 span{
  background:
    linear-gradient(
      90deg,
      #ff7300,
      #ff9d00
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sales-top p{
  color:
    #666;

  font-size: 18px;
  line-height: 1.9;
}

/* GRID */

.sales-grid{
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    1.1fr 1fr;

  gap: 35px;

  margin-bottom: 90px;
}

/* FLOW CARD */

.sales-flow-card{
  position: relative;

  min-height: 680px;

  border-radius: 40px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #1a1207,
      #2a1d0d
    );

  padding: 40px;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}

/* LINE */

.sales-line{
  position: absolute;

  width: 4px;
  height: 72%;

  background:
    linear-gradient(
      to bottom,
      #ff7300,
      transparent
    );

  left: 50%;
  top: 14%;

  transform:
    translateX(-50%);

  border-radius: 100px;

  animation:
    salesLine 3s ease-in-out infinite;
}

/* STEP */

.sales-step{
  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  width: 250px;

  padding: 20px;

  border-radius: 24px;

  background:
    rgba(255,255,255,0.10);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255,255,255,0.10);

  text-align: center;

  animation:
    popupFloat 4s ease-in-out infinite;
}

.sales-step h4{
  color: white;

  margin-top: 14px;

  font-size: 20px;
}

.step-1{
  top: 40px;
}

.step-2{
  top: 190px;
}

.step-3{
  top: 340px;
}

.step-4{
  bottom: 40px;
}

/* ICON */

.step-icon{
  width: 72px;
  height: 72px;

  margin: auto;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #ff7300,
      #ff9d00
    );

  color: white;

  font-size: 32px;
}

.manager-icon{
  background:
    linear-gradient(
      135deg,
      #006eff,
      #00b4ff
    );
}

.auth-icon{
  background:
    linear-gradient(
      135deg,
      #00b894,
      #00d084
    );
}

.convert-icon{
  background:
    linear-gradient(
      135deg,
      #ff004c,
      #ff5f7a
    );
}

/* ARROWS */

.sales-arrow{
  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  color:
    #ff9d00;

  font-size: 34px;

  animation:
    arrowMove 2s ease-in-out infinite;
}

.arrow-1{
  top: 155px;
}

.arrow-2{
  top: 305px;
}

.arrow-3{
  top: 455px;
}

/* POPUPS */

.sales-popup{
  position: absolute;

  padding: 14px 18px;

  border-radius: 18px;

  background:
    rgba(255,255,255,0.10);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255,255,255,0.10);

  color: white;

  font-size: 14px;
  font-weight: 600;

  animation:
    popupFloat 4s ease-in-out infinite;
}

.popup-sales-1{
  top: 100px;
  left: 30px;
}

.popup-sales-2{
  top: 300px;
  right: 30px;
}

.popup-sales-3{
  bottom: 120px;
  left: 40px;
}

/* SERVICES */

.sales-services{
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 24px;
}

/* CARD */

.sales-card{
  padding: 34px 28px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.92);

  border:
    1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.05);

  transition:
    all 0.5s ease-in-out;
}

.sales-card:hover{
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 30px 60px rgba(255,140,0,0.12);
}

.sales-icon{
  width: 78px;
  height: 78px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #ff7300,
      #ff9d00
    );

  color: white;

  font-size: 32px;

  margin-bottom: 24px;

  transition:
    all 0.45s ease-in-out;
}

.sales-card:hover .sales-icon{
  transform:
    rotate(8deg)
    scale(1.08);
}

.sales-card h3{
  font-size: 28px;

  line-height: 1.3;

  color:
    #111;

  margin-bottom: 14px;
}

.sales-card p{
  color:
    #666;

  line-height: 1.8;
}

/* CTA */

.sales-cta{
  position: relative;

  padding: 80px 40px;

  border-radius: 42px;

  overflow: hidden;

  text-align: center;

  color: white;

  background:
    linear-gradient(
      135deg,
      #ff7300,
      #cc5b00
    );

  box-shadow:
    0 25px 70px rgba(255,140,0,0.18);
}

.sales-cta-glow{
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.18),
      transparent 70%
    );

  top: -140px;
  right: -120px;
}

.sales-cta h3{
  position: relative;
  z-index: 2;

  font-size:
    clamp(36px,5vw,58px);

  line-height: 1.2;

  margin-bottom: 20px;
}

.sales-cta p{
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin:
    0 auto 35px;

  color:
    rgba(255,255,255,0.82);

  line-height: 1.8;

  font-size: 17px;
}

/* BUTTON */

.sales-btn{
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 18px 38px;

  border-radius: 100px;

  background:
    white;

  color:
    #ff7300;

  text-decoration: none;

  font-size: 17px;
  font-weight: 700;

  transition:
    all 0.45s ease-in-out;
}

.sales-btn:hover{
  transform:
    translateY(-6px)
    scale(1.04);
}

/* ANIMATION */

@keyframes fadeUp{

  from{
    opacity: 0;
    transform: translateY(40px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes popupFloat{

  0%{
    transform: translateY(0) translateX(-50%);
  }

  50%{
    transform: translateY(-10px) translateX(-50%);
  }

  100%{
    transform: translateY(0) translateX(-50%);
  }

}

@keyframes arrowMove{

  0%{
    transform: translateX(-50%) translateY(0);
  }

  50%{
    transform: translateX(-50%) translateY(8px);
  }

  100%{
    transform: translateX(-50%) translateY(0);
  }

}

@keyframes salesLine{

  0%{
    opacity: 0.5;
    height: 55%;
  }

  50%{
    opacity: 1;
    height: 72%;
  }

  100%{
    opacity: 0.5;
    height: 55%;
  }

}

@keyframes salesBlur{

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(20px);
  }

  100%{
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .sales-grid{
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .sales-section{
    padding: 90px 18px;
  }

  .sales-top h2{
    font-size: 42px;
  }

  .sales-services{
    grid-template-columns: 1fr;
  }

  .sales-flow-card{
    min-height: 760px;
  }

  .sales-cta{
    padding: 60px 24px;
  }

}

@media(max-width:480px){

  .sales-step{
    width: 190px;
  }

  .sales-step h4{
    font-size: 16px;
  }

  .sales-popup{
    display: none;
  }

  .sales-btn{
    width: 100%;
  }

}