.home-hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at top, #171727, #0f0f17);
}

.home-hero h1 {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.4;
  margin: 0 auto 20px;
  max-width: 720px;
}

.home-hero p {
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 1.8;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 16px;
}

.home-services {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-services h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
  margin-bottom: 40px;
}

.home-services .services-intro {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 16px;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.service-box .card {
  padding: 30px;
  margin-bottom: 30px;
  background: #171727;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.service-box .card h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.service-box .card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

.service-box .card .service-images {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.service-box .card .media-item {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.service-box .card .media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-box .card .media-item:hover img {
  transform: scale(1.05);
}

.service-box .card .media-item .glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-box .card .media-item:hover .glass {
  opacity: 1;
}

.service-box .card .media-item:hover .glass span {
  transform: translateY(0);
}

.pricing {
  padding-top: 80px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top, #171727, #0f0f17);
  text-align: center;
}

.pricing h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 16px;
}

.grid.grid-3 {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 0 20px;
}

.pricing-card {
  padding: 35px 30px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.home-cta {
  text-align: center;
  background: linear-gradient(180deg, #1a1a2e, #0f0f17);
  padding: 60px 20px;
}

.home-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  line-height: 1.35;
}

.home-cta p {
  font-size: clamp(16px, 2.5vw, 20px);
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.8;
  opacity: 0.85;
}

