*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  background:#ffffff;
}

/* =========================
   LEAD GENERATION SECTION
========================= */

.lead-section{
  position: relative;
  padding: 130px 20px;
  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #fff6f6
    );

  overflow: hidden;
}

/* GLOW */

.lead-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);

  animation:
    floatGlow 8s ease-in-out infinite;
}

.lead-glow-1{
  width: 300px;
  height: 300px;

  background:
    rgba(255,0,0,0.10);

  top: -80px;
  left: -80px;
}

.lead-glow-2{
  width: 260px;
  height: 260px;

  background:
    rgba(255,80,80,0.12);

  bottom: -80px;
  right: -80px;
}

/* TOP */

.lead-top{
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 950px;

  margin:
    0 auto 80px;

  animation:
    fadeUp 1s ease-in-out;
}

.lead-badge{
  display: inline-block;

  padding: 12px 24px;

  border-radius: 100px;

  background:
    #fff0f0;

  color:
    #d40000;

  border:
    1px solid rgba(255,0,0,0.08);

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 24px;

  transition:
    all 0.45s ease-in-out;
}

.lead-badge:hover{
  transform:
    translateY(-5px);
}

.lead-top h2{
  font-size:
    clamp(42px,6vw,76px);

  line-height: 1.1;

  color:
    #111;

  margin-bottom: 24px;

  font-weight: 800;
}

.lead-top h2 span{
  background:
    linear-gradient(
      90deg,
      #d40000,
      #ff4040
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-top p{
  color:
    #666;

  font-size: 18px;
  line-height: 1.9;

  max-width:700px;
  margin:auto;
}

/* MAIN GRID */

.lead-main-grid{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 35px;

  margin-bottom: 90px;
}

/* GROWTH CARD */

.lead-growth-card{
  position: relative;

  min-height: 650px;

  border-radius: 40px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #fe0202,
      #840303
    );

  padding: 40px;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);

  animation:
    fadeUp 1s ease-in-out;
}

/* WORLD */

.growth-world{
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);

  animation:
    floatWorld 5s ease-in-out infinite;
}

.growth-world img{
  width: 240px;
  filter:
    drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* LINE */

.growth-line{
  position: absolute;

  width: 6px;
  height: 180px;

  background:
    linear-gradient(
      to top,
      transparent,
      #ff1e1e
    );

  left: 50%;
  bottom: 90px;

  transform:
    translateX(-50%);

  border-radius: 100px;

  animation:
    growthLine 2s ease-in-out infinite;
}

/* POPUPS */

.growth-popup{
  position: absolute;

  padding: 14px 20px;

  border-radius: 18px;

  background:
    rgba(255,255,255,0.10);

  backdrop-filter: blur(12px);

  color: white;

  font-weight: 600;
  font-size: 14px;

  border:
    1px solid rgba(255,255,255,0.12);

  animation:
    popupFloat 4s ease-in-out infinite;
}

.popup-1{
  top: 100px;
  left: 40px;
}

.popup-2{
  top: 160px;
  right: 40px;
}

.popup-3{
  bottom: 170px;
  left: 70px;
}

.popup-4{
  bottom: 120px;
  right: 60px;
}

/* CONTENT */

.growth-content{
  position: absolute;

  left: 40px;
  right: 40px;
  bottom: 40px;

  z-index: 2;

  color: white;
}

.growth-content h3{
  font-size: 48px;
  line-height: 1.1;

  margin-bottom: 20px;
}

.growth-content p{
  color:
    rgba(255,255,255,0.75);

  line-height: 1.9;
}

/* SERVICES GRID */

.lead-services-grid{
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 24px;
}

/* CARD */

.lead-card{
  position: relative;

  padding: 34px 28px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.9);

  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;

  text-decoration:none;
}

.lead-card:hover{
  transform:
    translateY(-12px)
    scale(1.02);

  box-shadow:
    0 30px 60px rgba(255,0,0,0.08);
}

.lead-icon{
  width: 78px;
  height: 78px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      #ff1e1e,
      #8b0000
    );

  color: white;
  font-size: 32px;

  margin-bottom: 24px;

  transition:
    all 0.45s ease-in-out;
}

.lead-card:hover .lead-icon{
  transform:
    rotate(8deg)
    scale(1.08);
}

.lead-card h3{
  font-size: 28px;
  line-height: 1.3;

  color:
    #111;

  margin-bottom: 14px;
}

.lead-card p{
  color:#666;
  line-height: 1.8;
}

/* CTA */

.lead-cta{
  position: relative;

  padding: 80px 40px;

  border-radius: 42px;

  background:
    linear-gradient(
      135deg,
      #d40000,
      #7a0000
    );

  overflow: hidden;

  text-align: center;
  color: white;

  box-shadow:
    0 25px 70px rgba(255,0,0,0.18);
}

.lead-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;

  animation:
    floatGlow 6s ease-in-out infinite;
}

.lead-cta h3{
  position: relative;
  z-index: 2;

  font-size:
    clamp(36px,5vw,58px);

  line-height: 1.2;

  margin-bottom: 20px;
}

.lead-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 */

.lead-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:
    #d40000;

  text-decoration: none;

  font-size: 17px;
  font-weight: 700;

  transition:
    all 0.45s ease-in-out;
}

.lead-btn:hover{
  transform:
    translateY(-6px)
    scale(1.04);
}

/* ANIMATIONS */

@keyframes fadeUp{

  from{
    opacity: 0;
    transform: translateY(40px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes popupFloat{

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(-12px);
  }

  100%{
    transform: translateY(0);
  }

}

@keyframes floatWorld{

  0%{
    transform: translate(-50%,-50%);
  }

  50%{
    transform: translate(-50%,-54%);
  }

  100%{
    transform: translate(-50%,-50%);
  }

}

@keyframes growthLine{

  0%{
    height: 120px;
    opacity: 0.6;
  }

  50%{
    height: 200px;
    opacity: 1;
  }

  100%{
    height: 120px;
    opacity: 0.6;
  }

}

@keyframes floatGlow{

  0%{
    transform: translateY(0);
  }

  50%{
    transform: translateY(25px);
  }

  100%{
    transform: translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .lead-main-grid{
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px){

  .lead-section{
    padding: 90px 18px;
  }

  .lead-top h2{
    font-size: 42px;
  }

  .lead-services-grid{
    grid-template-columns: 1fr;
  }

  .lead-growth-card{
    min-height: 600px;
  }

  .growth-content h3{
    font-size: 36px;
  }

  .growth-world img{
    width: 180px;
  }

  .lead-cta{
    padding: 60px 24px;
  }

}

@media(max-width:480px){

  .growth-popup{
    font-size: 12px;
    padding: 12px 14px;
  }

  .popup-1{
    left: 20px;
  }

  .popup-2{
    right: 20px;
  }

  .popup-3{
    left: 20px;
  }

  .popup-4{
    right: 20px;
  }

  .lead-btn{
    width: 100%;
  }

  .growth-content h3{
    font-size:30px;
  }

}