/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 10vw, 120px));
}

.page-hero-title {
  margin: 12px 0 24px;
  line-height: 0.95;
}

.page-hero-title em { font-style: normal; }

.page-hero-sub {
  max-width: 540px;
}

/* ── Service Rows ────────────────────────────────────────── */
.main-services {
  padding-top: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 240px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple);
  padding-top: 6px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--purple);
  box-shadow: 0 0 6px var(--purple-glow);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

/* Geometric shapes */
.service-shape {
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s ease;
}

.service-row:hover .service-shape {
  box-shadow: 0 0 40px var(--purple-glow);
}

.service-shape--circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--border-purple);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  animation: shapeFloat 4s ease-in-out infinite;
}

.service-shape--diamond {
  width: 90px;
  height: 90px;
  border: 1px solid var(--border-purple);
  background: rgba(168, 85, 247, 0.08);
  transform: rotate(45deg);
  animation: shapePulse 3.5s ease-in-out infinite;
}

.service-shape--square {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-purple);
  background: rgba(168, 85, 247, 0.06);
  animation: shapeFloat 5s ease-in-out infinite reverse;
}

.service-shape--triangle {
  width: 0;
  height: 0;
  border-left: 55px solid transparent;
  border-right: 55px solid transparent;
  border-bottom: 95px solid rgba(168, 85, 247, 0.1);
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
  animation: shapePulse 4.5s ease-in-out infinite;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes shapePulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.service-divider {
  height: 1px;
  background: var(--border);
}

/* ── Process ─────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 28px;
}

.process-connector::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--border-purple), var(--border));
}

.process-connector::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple-glow);
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── CTA Alt ─────────────────────────────────────────────── */
.cta-alt-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.cta-alt-inner em { font-style: normal; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .service-row { grid-template-columns: 48px 1fr; }
  .service-visual { display: none; }

  .process-steps { flex-direction: column; }
  .process-connector { width: 100%; height: 40px; margin: 0; }
  .process-connector::before { width: 1px; height: 100%; background: linear-gradient(to bottom, var(--border), var(--border-purple)); }
}

@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; gap: 16px; }
  .service-number { padding-top: 0; }
}
