/* ════════════════════════════════════════════
   SERVICES PAGE — HANDLE GRID
   ════════════════════════════════════════════ */
.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
}

.handle-card {
  background: var(--black);
  padding: 52px 32px;
  text-align: center;
  transition: background 0.5s;
  position: relative;
  overflow: hidden;
}

.handle-card:hover {
  background: var(--deep);
}

.handle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease-expo);
}

.handle-card:hover::before {
  width: 100%;
}

.handle-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 18px;
}

.handle-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.handle-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}

.handle-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   SERVICES PAGE — ENGINE GRID (Deep Dive)
   ════════════════════════════════════════════ */
.engine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.engine-card {
  padding: 56px 32px;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.5s;
}

.engine-card:last-child {
  border-right: none;
}

.engine-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-expo);
}

.engine-card:hover::after {
  transform: scaleX(1);
}

.engine-card:hover {
  background: rgba(212, 168, 67, 0.02);
}

.engine-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(212, 168, 67, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.5s;
}

.engine-card:hover .engine-num {
  color: rgba(212, 168, 67, 0.15);
}

.engine-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  opacity: 0.7;
  transition: opacity 0.4s;
}

.engine-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.engine-card:hover .engine-icon {
  opacity: 1;
}

.engine-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.engine-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   RESPONSIVE — SERVICES
   ════════════════════════════════════════════ */
@media(max-width:1200px) {
  .handle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engine-card:nth-child(2) {
    border-right: none;
  }
}

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

  .engine-grid {
    grid-template-columns: 1fr;
  }

  .engine-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .engine-card:last-child {
    border-bottom: none;
  }
}