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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(245, 197, 66, 0.16), transparent 32%),
    linear-gradient(rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.96)),
    url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 24px 7%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}

.logo img {
  width: 170px;
  height: auto;
  display: block;
}

.nav-call {
  color: #050505;
  background: #f5c542;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(245, 197, 66, 0.12);
  color: #f5c542;
  border: 1px solid rgba(245, 197, 66, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #d5d7de;
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  padding: 16px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.primary {
  background: #f5c542;
  color: #050505;
}

.secondary {
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #c8cad2;
  font-size: 15px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
}

.hero-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #e4e6ec;
}

.hero-card li:last-child {
  border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 18px;
    min-height: auto;
  }

  .navbar {
    margin-bottom: 55px;
  }

  .logo img {
    width: 125px;
  }

  .nav-call {
    padding: 10px 15px;
    font-size: 14px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

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

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

  .btn {
    text-align: center;
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-card {
    padding: 24px;
  }
}

/* SERVICES */

.services {
  padding: 110px 7%;
  background: #0b0b0b;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 197, 66, 0.12);
  color: #f5c542;
  border: 1px solid rgba(245, 197, 66, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
}

.section-subtitle {
  color: #c8cad2;
  font-size: 18px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 66, 0.4);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card p {
  color: #c8cad2;
  line-height: 1.7;
  font-size: 16px;
}

/* MOBILE */

@media (max-width: 992px) {

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

}

@media (max-width: 768px) {

  .services {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .section-subtitle {
    font-size: 16px;
  }

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

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    font-size: 22px;
  }

}

/* WHY CHOOSE US */

.why-us {
  padding: 110px 7%;
  background: #050505;
}

.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-left h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.why-text {
  color: #c8cad2;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.why-buttons {
  margin-top: 35px;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 26px;
  border-radius: 22px;

  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 66, 0.4);
}

.why-icon {
  font-size: 34px;
  min-width: 42px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.why-card p {
  color: #c8cad2;
  line-height: 1.7;
  font-size: 16px;
}

/* EQUIPMENT */

.equipment {
  padding: 110px 7%;
  background: #050505;
}

.equipment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equipment-left h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.equipment-text {
  color: #c8cad2;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.equipment-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 14px;

  background: rgba(255,255,255,0.04);

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

  border-radius: 16px;

  padding: 18px 20px;
}

.equipment-item span {
  color: #f5c542;
  font-size: 18px;
  font-weight: bold;
}

.equipment-item p {
  color: #ffffff;
  font-size: 17px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.equipment-card {
  width: 100%;
  height: 340px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #050505;
}

.equipment-card:hover {
  transform: translateY(-5px);

  border-color: rgba(245, 197, 66, 0.35);
}

.equipment-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #050505;
}

/* TABLET */

@media (max-width: 992px) {

  .equipment-container {
    grid-template-columns: 1fr;
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .equipment {
    padding: 80px 20px;
  }

  .equipment-text {
    font-size: 16px;
  }

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

  .equipment-card img {
    height: 300px;
    object-fit: contain;
  }

}

/* MOBILE */

@media (max-width: 992px) {

  .why-us-container {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .why-us {
    padding: 80px 20px;
  }

  .why-us-left h2 {
    font-size: 38px;
  }

  .why-text {
    font-size: 16px;
  }

  .why-card {
    padding: 22px;
  }

  .why-card h3 {
    font-size: 20px;
  }

}

 /* GOOGLE REVIEW SCREENSHOTS */

.review-screenshots {
  padding: 110px 7%;
  background: #0b0b0b;
}

.review-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 26px;

  max-width: 1250px;
  margin: 60px auto 0;
}

.review-image-card {
  background: rgba(255,255,255,0.04);

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

  border-radius: 24px;

  padding: 14px;

  transition: 0.25s ease;
}

.review-image-card:hover {
  transform: translateY(-5px);

  border-color: rgba(245, 197, 66, 0.35);
}

.review-image-card img {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: contain;
  object-position: top;

  background: #ffffff;

  display: block;

  border-radius: 16px;
}

.reviews-button {
  display: flex;
  justify-content: center;

  margin-top: 55px;
}

/* TABLET */

@media (max-width: 992px) {

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

}

/* MOBILE */

@media (max-width: 768px) {

  .review-screenshots {
    padding: 80px 20px;
  }

  .review-images-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 40px;
  }

  .review-image-card {
    padding: 10px;
  }

}

/* CONTACT */

.contact {
  padding: 120px 7%;
  background:
    radial-gradient(circle at center, rgba(245, 197, 66, 0.14), transparent 35%),
    #050505;
  text-align: center;
}

.contact-container {
  max-width: 850px;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-text {
  color: #c8cad2;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 45px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-info div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 180px;
}

.contact-info span {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-info p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

/* MOBILE */

@media (max-width: 768px) {

  .contact {
    padding: 85px 20px;
  }

  .contact-text {
    font-size: 16px;
  }

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

  .contact-info {
    flex-direction: column;
  }

  .contact-info div {
    width: 100%;
  }

}

/* FOOTER */

.footer {
  background: #020202;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 7% 30px;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #bfc2ca;
  line-height: 1.8;
  font-size: 16px;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 22px;
}

.footer-column a {
  color: #bfc2ca;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #f5c542;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);

  padding-top: 24px;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p {
  color: #8f939d;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 768px) {

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-top {
    flex-direction: column;
    gap: 45px;
  }

  .footer-links {
    flex-direction: column;
    gap: 35px;
  }

  .footer-brand img {
    width: 140px;
  }

  .footer-bottom {
    flex-direction: column;
  }

}