/* ==========================================================================
   Service — Why Us, Variant 1. Same construction as the Real Estate App
   Development page's "Why Choose Us" Differentiators section
   (assets/css/real-estate-app-development.css `.reapp-why-*`) — reused
   verbatim and renamed `.svc-whyus1-*`. Dark, centered header + a 5-card
   grid (3 over 2; the short last row is left to wrap naturally rather
   than being manually centered).
   ========================================================================== */

.svc-whyus1 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000000;
  padding: 80px 0 80px;
}

.svc-whyus1-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.svc-whyus1-title {
  margin: 0 auto;
  max-width: 780px;
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

@media (max-width: 1550px) {
  .svc-whyus1-title { font-size: 38px; }
}

@media (max-width: 1440px) {
  .svc-whyus1-title { font-size: 36px; }
}

@media (max-width: 1200px) {
  .svc-whyus1-title { font-size: 40px; }
}

@media (max-width: 1024px) {
  .svc-whyus1-title { font-size: 36px; }
}

@media (max-width: 912px) {
  .svc-whyus1-title { font-size: 32px; }
}

@media (max-width: 820px) {
  .svc-whyus1-title { font-size: 30px; }
}

@media (max-width: 767px) {
  .svc-whyus1-title { font-size: 27px; }
}

@media (max-width: 650px) {
  .svc-whyus1-title { font-size: 22px; line-height: 1.35; }
}

.svc-whyus1-accent {
  color: #00c2ff;
}

.svc-whyus1-subtitle {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.7);
}

/* ---- Card grid ---- */

.svc-whyus1-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.svc-whyus1-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.svc-whyus1-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.svc-whyus1-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00c2ff, #2f5fe6);
  color: #ffffff;
  transition: transform 240ms ease;
}

.svc-whyus1-card:hover .svc-whyus1-card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.svc-whyus1-card-icon svg,
.svc-whyus1-card-icon i {
  width: 22px;
  height: 22px;
}

.svc-whyus1-card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.svc-whyus1-card-desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.66);
}

@media (prefers-reduced-motion: reduce) {
  .svc-whyus1-card,
  .svc-whyus1-card-icon {
    transition: none;
  }

  .svc-whyus1-card:hover {
    transform: none;
  }

  .svc-whyus1-card:hover .svc-whyus1-card-icon {
    transform: none;
  }
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .svc-whyus1 {
    padding: 80px 0 88px;
  }

  .svc-whyus1-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .svc-whyus1 {
    padding: 64px 0 72px;
  }

  .svc-whyus1-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .svc-whyus1-card {
    padding: 26px 22px;
  }
}
