/* ============================================
   VTN AGENCY — Services Page Styles
   Hero, Services Grid, Process Stepper
   ============================================ */

/* ==================== SERVICES HERO ==================== */
.services-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--gradient-hero);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(80px);
  pointer-events: none;
}

.services-hero__content {
  text-align: center;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.services-hero__title {
  margin-bottom: 24px;
}

.services-hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ==================== SERVICES FULL GRID ==================== */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-block {
  padding: 40px;
  display: flex;
  gap: 28px;
}

.service-block__icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.service-block__content {
  flex: 1;
}

.service-block__title {
  margin-bottom: 12px;
}

.service-block__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-block__deliverables {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-block__deliverables li {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-block__deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

/* ==================== PROCESS STEPPER ==================== */
.process-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 16px;
  max-width: 280px;
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step__title {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.process-step__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.65);
}

/* --- Connectors between steps --- */
.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  gap: 4px;
  flex-shrink: 0;
}

.process-connector__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.4;
}

.process-connector__arrow {
  color: var(--primary);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .process-stepper {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .service-block {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
  }

  .process-step {
    padding: 24px 16px;
  }

  .process-step__number {
    font-size: 2.5rem;
  }
}