* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

.navbar {
  height: 95px;
  background: #050505;
  display: flex;
  align-items: center;
  padding: 0 70px;
  gap: 35px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.logo img {
  width: 190px;
}

nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover {
  color: #6dbd38;
}

.nav-contact {
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-contact span {
  font-size: 11px;
  display: block;
}

.nav-contact strong {
  font-size: 22px;
}

.btn,
.btn-outline {
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn {
  background: #6dbd38;
  color: #fff;
}

.btn:hover {
  background: #58a52c;
}

.btn-outline {
  border: 2px solid #6dbd38;
  color: #fff;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55), rgba(0,0,0,.1)),
    url("house.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 70px 60px;
}

.hero-content {
  max-width: 650px;
  color: #fff;
}

.subtitle {
  color: #6dbd38;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero h1 span {
  color: #6dbd38;
}

.description {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 45px;
}

.features {
  display: flex;
  gap: 40px;
}

.features strong {
  text-transform: uppercase;
  font-size: 15px;
}

.features p {
  color: #ddd;
  margin-top: 5px;
}

.services {
  padding: 70px 70px;
  text-align: center;
}

.section-label {
  color: #6dbd38;
  font-weight: 800;
  text-transform: uppercase;
}

.services h2 {
  font-size: 36px;
  text-transform: uppercase;
  margin: 10px 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  text-align: left;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  transition: .3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 20px 20px 10px;
  text-transform: uppercase;
}

.card p {
  padding: 0 20px;
  color: #555;
}

.card a {
  display: block;
  padding: 20px;
  color: #6dbd38;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 25px;
    height: auto;
    flex-wrap: wrap;
  }

  nav {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    padding: 130px 25px 50px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .features {
    flex-direction: column;
    gap: 20px;
  }
}