.sky-intro{
  width:100%;
  background:#F8F4EA;
  padding:32px 20px;
  overflow:hidden;
  font-family:'Inter', sans-serif;
}

.sky-intro,
.sky-intro *{
  box-sizing:border-box;
}

.sky-intro-wrap{
  max-width:1250px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.sky-intro-content{
  width:100%;
  padding:28px 0 0;
}

.sky-intro-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 15px;
  border:1px solid rgba(213,62,15,0.55);
  border-radius:10px;
  color:#D53E0F;
  background:rgba(255,255,255,0.55);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.7px;
  margin-bottom:24px;
}

.sky-intro-badge svg{
  width:17px;
  height:17px;
}

.sky-intro h2{
  margin:0;
  max-width:560px;
  color:#111827;
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  line-height:1.05;
  font-weight:700;
  letter-spacing:-1.2px;
}

.sky-intro h2 span{
  color:#D53E0F;
}

.sky-intro-line{
  display:flex;
  align-items:center;
  gap:12px;
  margin:26px 0 26px;
}

.sky-intro-line i{
  width:58px;
  height:3px;
  background:#D53E0F;
  display:block;
}

.sky-intro-line svg{
  width:20px;
  height:20px;
  color:#2D7A3E;
}

.sky-intro-content > p{
  max-width:560px;
  margin:0 0 22px;
  color:#111827;
  font-size:17px;
  line-height:1.75;
  font-weight:500;
}

.sky-intro-images{
  width:100%;
}

.sky-intro-main-img{
  width:100%;
  height:645px;
  border-radius:11px;
  overflow:hidden;
}

.sky-intro-main-img img,
.sky-intro-small-imgs img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  
}

.sky-intro-small-imgs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:8px;
}

.sky-intro-small-imgs div{
  height:190px;
  border-radius:9px;
  overflow:hidden;
}

.sky-intro-main-img:hover img,
.sky-intro-small-imgs div:hover img{
  transform:scale(0s);
}

.sky-intro-trust{
  max-width:580px;
  margin-top:40px;
  background:#FFFFFF;
  border:1px solid rgba(17,24,39,0.10);
  border-radius:10px;
  box-shadow:0 12px 35px rgba(44,26,29,0.08);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  padding:28px 24px;
}

.sky-trust-item{
  text-align:center;
  padding:0 20px;
  border-right:1px solid rgba(17,24,39,0.14);
}

.sky-trust-item:last-child{
  border-right:none;
}

.sky-trust-item svg{
  width:48px;
  height:48px;
  color:#D53E0F;
  margin-bottom:12px;
}

.sky-trust-item h4{
  margin:0 0 6px;
  color:#111827;
  font-size:15px;
  font-weight:900;
}

.sky-trust-item p{
  margin:0;
  color:#111827;
  font-size:14px;
  line-height:1.35;
  font-weight:500;
}

/* TABLET */
@media(max-width:991px){
  .sky-intro{
    padding:70px 20px;
  }

  .sky-intro-wrap{
    grid-template-columns:1fr;
    gap:35px;
  }

  .sky-intro h2{
    font-size:48px;
    max-width:720px;
  }

  .sky-intro-content > p,
  .sky-intro-trust{
    max-width:720px;
  }

  .sky-intro-main-img{
    height:500px;
  }
}

/* MOBILE */
@media(max-width:767px){
  .sky-intro{
    padding:55px 16px;
  }

  .sky-intro-content{
    padding-top:0;
  }

  .sky-intro-badge{
    font-size:11px;
    letter-spacing:1.1px;
    padding:9px 13px;
    margin-bottom:22px;
  }

  .sky-intro h2{
    font-size:39px;
    line-height:1.08;
  }

  .sky-intro-line{
    margin:22px 0 24px;
  }

  .sky-intro-content > p{
    font-size:15px;
    line-height:1.7;
  }

  .sky-intro-main-img{
    height:360px;
  }

  .sky-intro-small-imgs{
    grid-template-columns:1fr;
  }

  .sky-intro-small-imgs div{
    height:220px;
  }

  .sky-intro-trust{
    grid-template-columns:1fr;
    gap:22px;
    padding:26px 20px;
    margin-top:32px;
  }

  .sky-trust-item{
    border-right:none;
    border-bottom:1px solid rgba(17,24,39,0.12);
    padding:0 0 22px;
  }

  .sky-trust-item:last-child{
    border-bottom:none;
    padding-bottom:0;
  }
}