/* HERO */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:40px 0 90px;
  gap:60px;
}

.hero-left{
  flex:1;
}

.tag{
  display:inline-block;
  padding:12px 20px;
  border-radius:30px;
  background:#f3f5ff;
  color:#2643ff;
  font-size:13px;
  font-weight:600;
  margin-bottom:30px;
}

.hero h1{
  font-size:88px;
  line-height:1;
  font-weight:800;
  color:#09104b;
  letter-spacing:-3px;
}

.green{
  color:#18ba5e;
}

.underline{
  width:280px;
  height:6px;
  background:#18ba5e;
  border-radius:10px;
  margin-top:10px;
  margin-bottom:30px;
}

.hero p{
  font-size:19px;
  color:#4d5673;
  line-height:1.8;
  max-width:650px;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-bottom:25px;
}

.secure{
  display:flex;
  align-items:center;
  gap:12px;
  color:#4d5673;
  font-size:15px;
  margin-top:15px;
}

/* PHONE */

.hero-right{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.phone{
  width:330px;
  height:640px;
  border:14px solid #0d132d;
  border-radius:50px;
  background:white;
  position:relative;
  transform:rotate(-8deg);
  box-shadow:0 35px 60px rgba(0,0,0,0.18);
  overflow:hidden;
}

.notch{
  width:150px;
  height:32px;
  background:#0d132d;
  border-radius:0 0 20px 20px;
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
}

.phone-content{
  padding:110px 30px;
  text-align:center;
}

.check{
  width:95px;
  height:95px;
  background:#19ba5f;
  border-radius:50%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:42px;
  margin-bottom:25px;
}

.phone-content h3{
  font-size:36px;
  color:#111;
  margin-bottom:25px;
  line-height:1.2;
}

.phone-content p{
  font-size:20px;
  line-height:1.7;
  color:#444;
}

/* FLOATING CARDS */

.float-card{
  position:absolute;
  right:-10px;
  background:white;
  padding:22px;
  width:250px;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.float-card h4{
  font-size:18px;
  margin-bottom:6px;
  color:#08134d;
}

.float-card p{
  font-size:14px;
  color:#666;
}

.card1{
  top:70px;
}

.card2{
  top:240px;
}

.card3{
  top:410px;
}

/* FEATURES */

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-bottom:90px;
}

.feature{
  text-align:center;
  padding:35px 25px;
  border-radius:24px;
  background:#fff;
  border:1px solid #edf0ff;
  transition:0.35s;
}

.feature:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.icon{
  width:90px;
  height:90px;
  background:#f5f7ff;
  border-radius:50%;
  margin:auto auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  color:#1838ff;
}

.feature h3{
  margin-bottom:12px;
  font-size:24px;
  color:#08134d;
}

.feature p{
  color:#666;
  line-height:1.7;
}

/* BENEFITS GLASS */

.benefits{
  position:relative;
  overflow:hidden;

  border-radius:40px;

  padding:70px 50px;

  margin-bottom:100px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.07)
    );

  border:1px solid rgba(255,255,255,0.3);

  backdrop-filter:blur(18px);
}

.benefits::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(
    circle,
    rgba(24,186,94,0.20),
    transparent 70%
  );
  top:-180px;
  left:-120px;
}

.benefits::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(
    circle,
    rgba(22,56,255,0.16),
    transparent 70%
  );
  bottom:-220px;
  right:-120px;
}

.benefits h2{
  position:relative;
  z-index:2;

  text-align:center;

  margin-bottom:60px;

  font-size:48px;

  line-height:1.4;

  font-weight:800;

  color:#07123f;
}

.benefits h2 span{
  background:linear-gradient(
    90deg,
    #18ba5e,
    #0bd48d
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.benefit-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:repeat(5,1fr);

  gap:25px;
}

.benefit{
  background:rgba(255,255,255,0.72);

  backdrop-filter:blur(18px);

  border-radius:26px;

  padding:30px 18px;

  min-height:210px;

  border:1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition:0.35s;

  text-align:center;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.benefit:hover{
  transform:translateY(-10px) scale(1.03);

  box-shadow:
    0 20px 40px rgba(24,186,94,0.15),
    0 12px 30px rgba(22,56,255,0.12);
}

.benefit .icon{
  width:82px;
  height:82px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.12),
      rgba(22,56,255,0.10)
    );

  border:1px solid rgba(24,186,94,0.18);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:22px;

  font-size:34px;
}

.benefit h4{
  font-size:18px;
  line-height:1.55;
  font-weight:600;
  color:#07123f;
}

/* STEPS */

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:90px;
}

.step{
  border:1px solid #edf0ff;
  border-radius:28px;
  padding:45px 35px;
  text-align:center;
  position:relative;
  transition:0.35s;
}

.step:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.step-number{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#1838ff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-20px;
  left:30px;
  font-weight:700;
}

.step h3{
  margin:20px 0 15px;
  font-size:28px;
}

.step p{
  color:#666;
  line-height:1.7;
}

/* APPLY */

.apply{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-bottom:80px;
}

.apply-box,
.trust-box{
  border:1px solid #edf0ff;
  border-radius:30px;
  padding:45px;
}

.apply h2{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.3;
}

.apply h2 span{
  color:#18ba5e;
}

.apply ul{
  list-style:none;
  margin-top:20px;
}

.apply li{
  margin-bottom:16px;
  font-size:18px;
  color:#555;
}

.trust-box h3{
  font-size:38px;
  margin-bottom:15px;
}

.trust-box p{
  line-height:1.8;
  color:#666;
  margin-bottom:30px;
}

.mini-features{
  display:flex;
  gap:20px;
}

.mini-feature{
  flex:1;
  border:1px solid #edf0ff;
  border-radius:22px;
  padding:25px;
  text-align:center;
}

.mini-feature h4{
  font-size:26px;
  color:#08134d;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .hero,
  .apply{
    grid-template-columns:1fr;
    display:grid;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .benefit-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .steps{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:64px;
  }

}

@media(max-width:700px){

  .hero h1{
    font-size:48px;
  }

  .features{
    grid-template-columns:1fr;
  }

  .benefit-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .phone{
    width:260px;
    height:520px;
  }

  .float-card{
    display:none;
  }

  .mini-features{
    flex-direction:column;
  }

  .benefits h2{
    font-size:34px;
  }

}