/* ===== SERVICES ===== */

.services {
  background: var(--dark);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 94, 167, 0.15) 0%, transparent 70%);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}

.services-header .section-tag {
  color: var(--mint-light);
}

.services-header .section-tag::before {
  background: var(--mint-light);
}

.services-header .section-title {
  color: white;
  margin-bottom: 0;
}

.services-header .section-title em {
  color: var(--mint-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--mint));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.service-number {
  position: absolute;
  right: 20px;
  top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 86px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.09);
  line-height: 1;
  margin-bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(123, 94, 167, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.service-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 18px 44px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}