/* =========================
   MARKETING SECTION
========================= */

.marketing-section{
  position: relative;

  padding: 130px 20px;

  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #f7fff9
    );

  overflow: hidden;
}

/* BLUR */

.marketing-blur{
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  animation:
    floatBlur 8s ease-in-out infinite;
}

.blur-1{
  width: 320px;
  height: 320px;

  background:
    rgba(0,255,140,0.10);

  top: -100px;
  left: -100px;
}

.blur-2{
  width: 260px;
  height: 260px;

  background:
    rgba(255,0,0,0.08);

  bottom: -80px;
  right: -100px;
}

/* TOP */

.marketing-top{
  position: relative;
  z-index: 2;

  max-width: 950px;

  margin:
    0 auto 80px;

  text-align: center;

  animation:
    fadeUp 1s ease-in-out;
}

.marketing-badge{
  display: inline-block;

  padding: 12px 24px;

  border-radius: 100px;

  background:
    rgba(0,255,140,0.08);

  color:
    #00a86b;

  border:
    1px solid rgba(0,255,140,0.14);

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;
}

.marketing-top h2{
  font-size:
    clamp(42px,6vw,74px);

  line-height: 1.1;

  color:
    #111;

  margin-bottom: 24px;

  font-weight: 800;
}

.marketing-top h2 span{
  background:
    linear-gradient(
      90deg,
      #00a86b,
      #00d084
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marketing-top p{
  color:
    #666;

  font-size: 18px;
  line-height: 1.9;
}

/* MAIN GRID */

.marketing-grid{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 35px;
}

/* FLOW CARD */

.marketing-flow-card{
  position: relative;

  min-height: 650px;

  border-radius: 40px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #08140f,
      #10251d
    );

  padding: 40px;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}

/* FLOW LINE */

.flow-line{
  position: absolute;

  width: 4px;
  height: 70%;

  background:
    linear-gradient(
      to bottom,
      #00d084,
      transparent
    );

  left: 50%;
  top: 15%;

  transform:
    translateX(-50%);

  border-radius: 100px;

  animation:
    flowMove 3s ease-in-out infinite;
}

/* FLOW ITEM */

.flow-item{
  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  width: 240px;

  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;
}

.flow-item h4{
  color: white;

  margin-top: 14px;

  font-size: 20px;
}

.flow-1{
  top: 40px;
}

.flow-2{
  top: 180px;
}

.flow-3{
  top: 320px;
}

.flow-4{
  bottom: 40px;
}

/* ICON */

.flow-icon{
  width: 70px;
  height: 70px;

  margin: auto;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #00d084,
      #008f5b
    );

  color: white;

  font-size: 30px;
}

.mail-icon{
  background:
    linear-gradient(
      135deg,
      #ff5f5f,
      #d40000
    );
}

.sales-icon{
  background:
    linear-gradient(
      135deg,
      #006eff,
      #0047ab
    );
}

/* ARROWS */

.flow-arrow{
  position: absolute;

  left: 50%;

  transform:
    translateX(-50%);

  color:
    #00d084;

  font-size: 34px;

  animation:
    arrowMove 2s ease-in-out infinite;
}

.arrow-1{
  top: 145px;
}

.arrow-2{
  top: 285px;
}

.arrow-3{
  top: 425px;
}

/* POPUPS */

.marketing-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-1{
  top: 100px;
  left: 30px;
}

.popup-2{
  top: 250px;
  right: 30px;
}

.popup-3{
  bottom: 100px;
  left: 40px;
}

/* SERVICES */

.marketing-services{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD */

.marketing-card{
  position: relative;

  padding: 34px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.92);

  border:
    1px solid rgba(0,0,0,0.06);

  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.05);

  transition:
    all 0.5s ease-in-out;
}

.marketing-card:hover{
  transform:
    translateY(-10px)
    scale(1.02);

  box-shadow:
    0 30px 60px rgba(0,208,132,0.10);
}

.marketing-card img{
  width: 72px;
  margin-bottom: 24px;

  transition:
    all 0.45s ease-in-out;
}

.marketing-card:hover img{
  transform:
    rotate(8deg)
    scale(1.08);
}

.marketing-card h3{
  font-size: 30px;

  color:
    #111;

  margin-bottom: 14px;
}

.marketing-card p{
  color:
    #666;

  line-height: 1.8;

  margin-bottom: 22px;
}

/* BUTTON */

.marketing-card a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 14px 24px;

  border-radius: 100px;

  background:
    linear-gradient(
      135deg,
      #00d084,
      #009f68
    );

  color: white;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition:
    all 0.45s ease-in-out;
}

.marketing-card a:hover{
  transform:
    translateY(-5px)
    scale(1.03);
}

/* 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 flowMove{

  0%{
    opacity: 0.5;
    height: 55%;
  }

  50%{
    opacity: 1;
    height: 70%;
  }

  100%{
    opacity: 0.5;
    height: 55%;
  }

}

@keyframes floatBlur{

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(25px);
  }

  100%{
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .marketing-grid{
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .marketing-section{
    padding: 90px 18px;
  }

  .marketing-top h2{
    font-size: 42px;
  }

  .marketing-flow-card{
    min-height: 760px;
  }

  .flow-item{
    width: 200px;
  }

  .marketing-card{
    padding: 28px;
  }

}

@media(max-width:480px){

  .flow-item{
    width: 180px;
    padding: 16px;
  }

  .flow-item h4{
    font-size: 16px;
  }

  .marketing-popup{
    display: none;
  }

  .marketing-card a{
    width: 100%;
  }

}