/* SERVICES PAGE */
.page-header {
  background-color: var(--bg-primary);
  background-image: url('media/services/hero.jpg');
  background-size: cover;
  background-position: center;
}
.page-header .bg-overlay { background: linear-gradient(rgba(10,12,16,0.80), rgba(10,12,16,0.88)); }
.page-header h1 em { color: var(--accent); font-style: italic; }

.service-blocks { padding: 100px 0; }

.service-block {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border-soft);
  position: relative;
}

.service-block:first-child { border-top: none; padding-top: 0; }

.service-block.reversed .sb-visual { order: 2; }
.service-block.reversed .sb-content { order: 3; }

.sb-num {
  font-family: 'Abril Fatface', serif;
  font-size: 72px;
  color: var(--text-muted);
  line-height: 1;
  opacity: 0.5;
  align-self: start;
  padding-top: 40px;
}

.sb-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.sb-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,17,23,0.4));
  pointer-events: none;
}

.sb-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.08);
  transition: transform 1.5s var(--ease-out), filter 0.8s;
}

.service-block:hover .sb-visual img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.1);
}

.sb-content h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 24px;
  letter-spacing: -0.5px;
}

.sb-lead {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 28px;
}

.sb-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}

.sb-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.sb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.sb-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-price span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sb-price strong {
  font-family: 'Abril Fatface', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
}

/* PROCESS */
.section-process {
  position: relative;
  background-color: var(--bg-surface);
  background-image:
    linear-gradient(rgba(10,12,16,0.78), rgba(10,12,16,0.86)),
    url('media/services/process.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
}

.process-head {
  text-align: center;
  margin-bottom: 80px;
}

.process-head .section-label { justify-content: center; }
.process-head .section-label::before { display: none; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-accent);
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  font-family: 'Abril Fatface', serif;
  font-size: 28px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.process-step:hover .process-step-num {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(86,196,184,0.3);
}

.process-step h3 {
  font-family: 'Abril Fatface', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PRICING CTA */
.section-pricing-cta {
  padding: 100px 0;
}

.pricing-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.08), transparent 70%);
  pointer-events: none;
}

.pricing-box p {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 500px;
}

.pricing-box > div:last-child {
  justify-self: end;
  position: relative;
  z-index: 1;
}

@media (max-width: 1000px) {
  .service-block, .service-block.reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-block.reversed .sb-visual { order: 1; }
  .service-block.reversed .sb-content { order: 2; }
  .sb-num { padding-top: 0; font-size: 48px; }
  .sb-visual { aspect-ratio: 16/10; }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-timeline::before { display: none; }
  .pricing-box { grid-template-columns: 1fr; padding: 40px; text-align: left; }
  .pricing-box > div:last-child { justify-self: start; }
}
