/* ============================================================
   Service detail — Tech stack grid (Gelai light theme)
   Layout inspired by service detail pages; original copy & styling
   ============================================================ */

.svc-tech {
  padding: 72px 0 88px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(12, 110, 183, 0.06) 0%, transparent 70%),
    var(--white);
}

.svc-tech__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.svc-tech__header .label {
  margin-bottom: 16px;
}

.svc-tech__lead {
  font-family: var(--font);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(35, 43, 64, 0.78);
  margin: 16px auto 0;
  max-width: 640px;
}

.svc-tech__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.svc-tech__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(12, 110, 183, 0.1);
  box-shadow: 0 8px 28px rgba(12, 110, 183, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.svc-tech__card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 110, 183, 0.22);
  box-shadow: 0 14px 36px rgba(12, 110, 183, 0.12);
}

.svc-tech__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.svc-tech__icon--react { background: #e8f7fd; color: #149eca; }
.svc-tech__icon--next { background: #eef0f3; color: #111; }
.svc-tech__icon--vue { background: #e8f8f0; color: #2f9d6e; }
.svc-tech__icon--angular { background: #fde8e8; color: #c3002f; }
.svc-tech__icon--node { background: #e8f6e8; color: #3c873a; }
.svc-tech__icon--laravel { background: #fdeeed; color: #f53003; }
.svc-tech__icon--dotnet { background: #ece8f8; color: #512bd4; }
.svc-tech__icon--wordpress { background: #e8f0f8; color: #21759b; }
.svc-tech__icon--shopify { background: #e8f8ee; color: #008060; }
.svc-tech__icon--php { background: #ececf8; color: #777bb4; }
.svc-tech__icon--flutter { background: #e6f4fc; color: #02569b; }
.svc-tech__icon--rn { background: #e8f4fc; color: #087ea4; }
.svc-tech__icon--swift { background: #fdeee8; color: #f05138; }
.svc-tech__icon--kotlin { background: #f3eaf8; color: #7f52ff; }
.svc-tech__icon--firebase { background: #fff4e6; color: #ff9100; }
.svc-tech__icon--figma { background: #f3e8fd; color: #a259ff; }
.svc-tech__icon--xd { background: #fce8f5; color: #ff61f6; }
.svc-tech__icon--sketch { background: #fdeee8; color: #f7b500; }
.svc-tech__icon--proto { background: #e8f0fd; color: #0c6eb7; }
.svc-tech__icon--aws { background: #fff4e0; color: #ff9900; }
.svc-tech__icon--azure { background: #e8f0fc; color: #0078d4; }
.svc-tech__icon--gcp { background: #fde8e8; color: #ea4335; }
.svc-tech__icon--docker { background: #e8f2fc; color: #2496ed; }
.svc-tech__icon--k8s { background: #e8f0fc; color: #326ce5; }
.svc-tech__icon--terraform { background: #ede8fc; color: #623ce4; }
.svc-tech__icon--cicd { background: #e8f8f0; color: #2ea44f; }
.svc-tech__icon--gha { background: #eef0f3; color: #24292f; }
.svc-tech__icon--jenkins { background: #fdeee8; color: #d33833; }
.svc-tech__icon--monitor { background: #e8f4fc; color: #0c6eb7; }
.svc-tech__icon--seo { background: #e8f8f0; color: #2f9d6e; }
.svc-tech__icon--ads { background: #e8f0fc; color: #4285f4; }
.svc-tech__icon--meta { background: #e8f0fc; color: #1877f2; }
.svc-tech__icon--content { background: #f3e8fd; color: #7c3aed; }
.svc-tech__icon--analytics { background: #fff4e6; color: #e37400; }

.svc-tech__name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 8px;
}

.svc-tech__desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(35, 43, 64, 0.68);
  margin: 0;
}

@media (max-width: 1200px) {
  .svc-tech__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .svc-tech {
    padding: 56px 0 64px;
  }

  .svc-tech__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .svc-tech__card {
    padding: 22px 14px 20px;
  }

  .svc-tech__icon {
    width: 48px;
    height: 48px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .svc-tech__grid {
    grid-template-columns: 1fr;
  }
}
