.sky-protect{
  width:100%;
  background:linear-gradient(135deg,#FFF8F1 0%, #F7E8D3 100%);
  padding:28px 30px 18px;
  overflow:hidden;
  font-family:'Inter',sans-serif;
}

.sky-protect-wrap{
  max-width:1200px;
  margin:0 auto;
}

.sky-protect-grid{
  display:grid;
  grid-template-columns:650px 1fr;
  gap:42px;
  align-items:start;
}

.sky-protect-badge{
  display:inline-block;
  color:#D53E0F;
  font-size:15px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.sky-protect-content h2{
  color:#2C1A1D;
  font-family:'Cormorant Garamond',serif;
  font-size:46px;
  line-height:1.05;
  font-weight:900;
  margin:0 0 22px;
  max-width:610px;
}

.sky-protect-content p{
  color:#4A2B2B;
  font-size:16px;
  line-height:1.65;
  font-weight:600;
  margin:0 0 16px;
  max-width:610px;
}

.sky-protect-content h3{
  color:#2C1A1D;
  font-family:'Cormorant Garamond',serif;
  font-size:29px;
  line-height:1.2;
  font-weight:900;
  margin:32px 0 26px;
  position:relative;
}

.sky-protect-content h3::after{
  content:"";
  width:52px;
  height:3px;
  background:#D53E0F;
  position:absolute;
  left:0;
  bottom:-11px;
}

.sky-threat-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.sky-threat-card{
  min-height:82px;
  background:rgba(255,248,241,0.88);
  border:1px solid rgba(44,26,29,0.12);
  border-radius:14px;
  padding:14px;
  display:grid;
  grid-template-columns:58px 34px 1fr;
  gap:12px;
  align-items:center;
  box-shadow:0 8px 20px rgba(44,26,29,0.08);
}

.sky-threat-icon{
  width:54px;
  height:54px;
  border-radius:12px;
  background:#F8E7D3;
  color:#D53E0F;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sky-threat-icon svg{
  width:31px;
  height:31px;
}

.sky-threat-card span{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#2C1A1D;
  color:#D53E0F;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
}

.sky-threat-card p{
  margin:0;
  color:#2C1A1D;
  font-size:13px;
  line-height:1.45;
  font-weight:900;
}

.sky-protect-visual{
  width:100%;
}

.sky-main-image{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(44,26,29,0.12);
}

.sky-main-image > img{
  width:100%;
  height:535px;
  object-fit:cover;
  display:block;
}

.sky-species-card{
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  width:255px;
  background:rgba(255,248,241,0.95);
  border-radius:16px;
  padding:22px;
  box-shadow:0 18px 45px rgba(44,26,29,0.18);
}

.sky-species-card h4{
  color:#2C1A1D;
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 16px;
}

.sky-species-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:9px;
}

.sky-species-card li{
  background:#F8E7D3;
  color:#2C1A1D;
  border-radius:9px;
  padding:13px 15px;
  font-size:14px;
  font-weight:900;
}

.sky-small-images{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:18px;
}

.sky-small-images img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}

.sky-protect-bottom{
  margin-top:22px;
  background:rgba(255,248,241,0.8);
  border:1px solid rgba(44,26,29,0.12);
  border-radius:14px;
  padding:20px 36px;
  display:grid;
  grid-template-columns:90px 1fr 310px;
  gap:28px;
  align-items:center;
}

.sky-bottom-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  background:#C9462D;
  color:#FFF8F4;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sky-bottom-icon svg{
  width:42px;
  height:42px;
}

.sky-protect-bottom p{
  margin:0;
  color:#2C1A1D;
  font-size:17px;
  line-height:1.55;
  font-weight:900;
}

.sky-protect-bottom a{
  height:58px;
  background:#D53E0F;
  color:#FFF8F4;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:16px;
  font-weight:900;
}

@media(max-width:1100px){
  .sky-protect-grid{
    grid-template-columns:1fr;
  }

  .sky-main-image > img{
    height:430px;
  }
}

@media(max-width:768px){
  .sky-protect{
    padding:45px 14px;
  }

  .sky-threat-cards{
    grid-template-columns:1fr;
  }

  .sky-protect-content h2{
    font-size:38px;
  }

  .sky-main-image > img{
    height:320px;
  }

  .sky-species-card{
    position:relative;
    right:auto;
    top:auto;
    transform:none;
    width:100%;
    margin-top:14px;
  }

  .sky-main-image{
    overflow:visible;
    box-shadow:none;
  }

  .sky-main-image > img{
    border-radius:18px;
  }

  .sky-small-images{
    grid-template-columns:1fr;
  }

  .sky-small-images img{
    height:210px;
  }

  .sky-protect-bottom{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
    padding:26px 20px;
  }

  .sky-protect-bottom a{
    width:100%;
  }
}