.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
    url('../images/hero image 2.png') center/cover no-repeat;
  background-color: #0a0a1e;
}

@media (max-width: 1440px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 45% center/cover no-repeat;
  }
}
@media (max-width: 1024px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 42% center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 40% center/cover no-repeat;
  }
}
@media (max-width: 576px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 38% center/cover no-repeat;
  }
}
@media (max-width: 480px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 36% center/cover no-repeat;
  }
}
@media (max-width: 390px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 35% center/cover no-repeat;
  }
}
@media (max-width: 360px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 33% center/cover no-repeat;
  }
}
@media (max-width: 320px) {
  .page-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 100%),
      url('../images/hero image 2.png') 30% center/cover no-repeat;
  }
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  max-width: 700px;
}

.page-hero-content h1 {
  color: #fff;
  margin: 16px 0 20px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .page-hero-content h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
}
@media (max-width: 760px) {
  .page-hero { min-height: 85vh; }
  .page-hero-content p { font-size: 1rem; }
}
@media (max-width: 480px) {
  .page-hero { min-height: 75vh; }
  .page-hero-content h1 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .page-hero-content p { font-size: 0.9rem; }
}
@media (max-width: 360px) {
  .page-hero { min-height: 70vh; }
  .page-hero-content { max-width: 100%; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  cursor: pointer;
  position: relative;
}

.service-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.service-faq { background: var(--bg-alt); }
.service-cta { color: #fff; }

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.modal-img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--bg-alt);
  max-height: 50vh;
}
@media (max-width: 1024px) { .modal-img { max-height: 45vh; } }
@media (max-width: 768px) { .modal-img { max-height: 40vh; } }
@media (max-width: 480px) { .modal-img { max-height: 35vh; } }
@media (max-width: 360px) { .modal-img { max-height: 30vh; } }
