@import url("inner-premium.css");

/* Services overview — premium inner page (pairs with home.css for cards & reveals) */

body.services-page {
  --svc-radius: 6px;
}

body.services-page .page-hero--premium .page-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=75&fm=webp");
}

/* Intro band — tight handoff from hero, aligned with company inner rhythm */
.section--services-intro {
  background: linear-gradient(180deg, #f5f7fa 0%, var(--color-surface) 55%);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.services-intro-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.services-intro-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-hero);
}

.services-intro-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Pillars section */
.section--services-pillars {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.services-pillars-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.services-pillars-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--color-hero);
}

.services-pillars-head p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Slightly taller service cards on this page */
body.services-page .card-grid {
  gap: 1.5rem;
}

body.services-page .service-card {
  min-height: 18rem;
  padding: 2rem 1.75rem;
}

/* Process */
.section--services-process {
  background: var(--color-surface-alt);
}

.services-process-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.services-process-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-hero);
}

.services-process-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.services-process-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .services-process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
  }

  .services-process-track::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(30, 143, 90, 0.2), rgba(30, 143, 90, 0.45), rgba(30, 143, 90, 0.2));
    z-index: 0;
    pointer-events: none;
  }
}

.services-process-step {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--svc-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 6px 28px rgba(15, 23, 41, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(15, 23, 41, 0.1);
}

.services-process-step__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--color-accent-green), #167a4c);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(30, 143, 90, 0.35);
}

.services-process-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-hero);
}

.services-process-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Partners slice */
.section--services-partners {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border-bottom: 1px solid var(--color-border);
}

.services-partners-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.services-partners-inner .partners-strip__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-hero);
}

.services-partners-inner > p {
  margin: 0.5rem auto 1.75rem;
  max-width: 32rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.services-partners-inner .partners-strip__logos {
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 4.5rem);
}

.services-partners-inner .partner-logo {
  height: 38px;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.services-partners-inner .partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.stat-strip--cols-3 .stat-strip__inner {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stat-strip--cols-3 .stat-strip__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Stat row uses titles instead of numeric KPIs */
body.services-page .stat-item--rich .stat-item__text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-hero);
}

body.services-page .stat-item--rich .stat-item__text span {
  font-size: 0.8rem;
  line-height: 1.4;
}
