* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* HEADER */
.header {
  background: #000;
  padding: 16px 20px;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #FFD200;
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #fff;
}

.phone {
  color: #FFD200;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #e9c008;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #000;
  color: #FFD200;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* TRUST */
.trust {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  background: #f5f5f5;
  padding: 20px;
  font-weight: 600;
}

/* SERVICES */
.services {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service {
  border: 1px solid #eee;
}

.service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service h3 {
  text-align: center;
  padding: 16px;
  font-size: 17px;
}

.service p {
  text-align: center;
  padding: 0 16px 20px;
  font-size: 15px;
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* CTA */
.cta {
  background: #e9c008;
  padding: 80px 20px;
  text-align: center;
}

.cta p {
  margin: 20px 0 30px;
  font-size: 18px;
}

.btn-black {
  background: #000;
  color: #FFD200;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* INSTAGRAM */
.instagram {
  text-align: center;
  padding: 80px 20px;
}

.instagram p {
  margin: 20px 0 30px;
  font-size: 18px;
}

.btn-outline {
  background: #000;
  color: #FFD200;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer a {
  color: #FFD200;
  text-decoration: none;
}

/*INSTAGRAM */
.instagram-cta {
  text-align: center;
  margin: 40px auto;
}

.instagram-cta p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #000000;
}

.instagram-cta a {
  display: inline-block;
  padding: 12px 28px;
  background: #f5c400;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

.instagram-cta a:hover {
  background: #ffdb4d;
}

/* MOBILE */
@media (max-width: 768px) {
  .trust,
  .service-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }

  .service img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .service:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  }

  .service img {
    transition: transform 0.4s ease;
  }

  .service:hover img {
    transform: scale(1.05);
  }
}

