.page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 140px var(--page-padding) 80px;
  position: relative;
}
.page-hero-number {
  font-family: var(--font-mono);
  font-size: 120px; font-weight: 700;
  color: var(--cream);
  position: absolute;
  top: 100px; right: var(--page-padding);
  line-height: 1;
  user-select: none;
}
.page-hero .heading-xl { max-width: 800px; }
.page-hero .text-body { max-width: 520px; margin-top: 24px; }


.service-blocks { padding: 0 var(--page-padding) 140px; }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 100px 0;
  border-top: 1px solid var(--cream);
  align-items: start;
}
.service-block:last-child { border-bottom: 1px solid var(--cream); }

.sb-left {}
.sb-number {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.sb-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.sb-desc {
  font-size: 16px; color: var(--mid-gray);
  line-height: 1.75; font-weight: 300;
  max-width: 440px;
}

.sb-right {}
.sb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sb-feature {
  padding: 32px;
  background: var(--off-white);
  border-radius: 16px;
  transition: all 0.3s var(--ease-out-expo);
}
.sb-feature:hover {
  background: var(--accent-subtle);
  transform: translateY(-4px);
}
.sb-feature-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.sb-feature h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  margin-bottom: 8px;
}
.sb-feature p {
  font-size: 13px; color: var(--mid-gray);
  line-height: 1.6; font-weight: 300;
}


.tech-section {
  background: var(--tech-bg);
  color: var(--tech-text);
  border-radius: 32px;
  margin: 0 24px;
  padding: 120px clamp(32px, 5vw, 80px);
  text-align: center;
}
.tech-section .tag { color: var(--tech-muted); }
.tech-section .tag::before { background: var(--tech-muted); }
.tech-section .heading-lg { color: var(--tech-text); margin: 0 auto; max-width: 600px; }
.tech-section .text-body { color: var(--tech-muted); margin: 20px auto 0; max-width: 480px; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.tech-item {
  padding: 28px 16px;
  background: var(--tech-card-bg);
  border: 1px solid var(--tech-card-border);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
}
.tech-item:hover {
  background: rgba(45,91,255,0.1);
  border-color: rgba(45,91,255,0.2);
  transform: translateY(-4px);
}
.tech-item-name {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
}
.tech-item-icon {
  font-size: 28px;
  display: block;
}


.process-section { padding: 140px var(--page-padding); }
.process-header {
  margin-bottom: 80px;
}
.process-timeline {
  position: relative;
  max-width: 700px;
}
.process-timeline::before {
  content: ''; position: absolute;
  left: 23px; top: 0; bottom: 0;
  width: 1px; background: var(--cream);
}
.process-step {
  display: flex; gap: 40px;
  padding: 40px 0;
  position: relative;
}
.process-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: all 0.3s var(--ease-out-expo);
}
.process-step:hover .process-dot {
  background: var(--accent); color: var(--white);
  border-color: var(--accent);
  transform: scale(1.1);
}
.process-content h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.process-content p {
  font-size: 15px; color: var(--mid-gray);
  line-height: 1.7; font-weight: 300;
  max-width: 440px;
}


.services-cta {
  text-align: center;
  padding: 120px var(--page-padding) 140px;
}

@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 48px; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .page-hero-number { display: none; }
  .sb-features { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-section { margin: 0 12px; }
}
