*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111111;
  overflow-x:hidden;
}

.background-shape{
  position:fixed;
  top:-250px;
  right:-250px;
  width:700px;
  height:700px;
  background:rgba(180,0,0,0.05);
  border-radius:50%;
  filter:blur(10px);
  z-index:-1;
}

.background-shape-two{
  position:fixed;
  bottom:-300px;
  left:-200px;
  width:600px;
  height:600px;
  background:rgba(180,0,0,0.04);
  border-radius:50%;
  filter:blur(10px);
  z-index:-1;
}

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px 0;
}

.hero{
  text-align:center;
}

.logo-wrapper img{
  width:100%;
  max-width:650px;
  margin:auto;
  display:block;
}

.badge{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:1px solid rgba(180,0,0,0.15);
  background:rgba(180,0,0,0.04);
  padding:16px 28px;
  border-radius:100px;
  color:#b00000;
  font-size:12px;
  letter-spacing:4px;
  font-weight:700;
}

.badge span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#b00000;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{
    opacity:0.4;
    transform:scale(1);
  }
  50%{
    opacity:1;
    transform:scale(1.4);
  }
  100%{
    opacity:0.4;
    transform:scale(1);
  }
}

.hero h1{
  margin-top:45px;
  font-size:72px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-2px;
}

.hero p{
  margin:35px auto 0;
  max-width:850px;
  color:#666666;
  font-size:20px;
  line-height:1.8;
}

.buttons{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  text-decoration:none;
  padding:18px 36px;
  border-radius:16px;
  font-weight:700;
  transition:0.4s ease;
  font-size:16px;
}

.btn-primary{
  background:#b00000;
  color:white;
  box-shadow:0 10px 30px rgba(176,0,0,0.2);
}

.btn-primary:hover{
  transform:translateY(-4px);
  background:#8f0000;
}

.btn-secondary{
  border:1px solid rgba(176,0,0,0.2);
  color:#b00000;
  background:white;
}

.btn-secondary:hover{
  background:#b00000;
  color:white;
}

.services{
  margin-top:110px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:28px;
  padding:40px;
  transition:0.4s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.card:hover{
  transform:translateY(-8px);
  border-color:rgba(176,0,0,0.2);
  box-shadow:0 20px 60px rgba(176,0,0,0.08);
}

.line{
  width:70px;
  height:5px;
  border-radius:100px;
  background:#b00000;
  margin-bottom:30px;
}

.card h3{
  font-size:28px;
  margin-bottom:18px;
}

.card p{
  color:#666666;
  line-height:1.8;
}

footer{
  margin-top:90px;
  padding-top:30px;
  border-top:1px solid rgba(0,0,0,0.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  color:#666666;
}

.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

@media(max-width:1100px){

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

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

}

@media(max-width:768px){

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

  .hero p{
    font-size:17px;
  }

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

  footer{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

}
