.ovla-expertise-page {
  background: var(--color-bg);
}

.ovla-expertise-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.ovla-expertise-hero {
  padding: 7rem 0 4rem;
}

.ovla-expertise-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.08;
  font-weight: 800;
  max-width: 920px;
}

.ovla-expertise-services {
  padding: 1.5rem 0 5rem;
}

.ovla-expertise-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.ovla-expertise-services__card {
  position: relative;
  padding: 2rem 1rem 2.25rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-base);
}

.ovla-expertise-services__card:nth-child(odd) {
  padding-right: 1.5rem;
}

.ovla-expertise-services__card:nth-child(even) {
  padding-left: 1.5rem;
}

.ovla-expertise-services__card:hover {
  background: rgba(17, 17, 17, 0.03);
}

.ovla-expertise-services__num {
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 1;
  font-weight: 900;
  color: rgba(17, 17, 17, 0.08);
  letter-spacing: -0.04em;
}

.ovla-expertise-services__name {
  margin: 0 0 0.8rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
}

.ovla-expertise-services__desc {
  margin: 0;
  max-width: 520px;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.72);
}

.ovla-expertise-process {
  padding: 5rem 0;
}

.ovla-expertise-process__title {
  max-width: 900px;
  margin: 0 0 2.5rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.25;
  font-weight: 800;
}

.ovla-expertise-process__steps {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.ovla-expertise-process__step {
  flex: 1;
  position: relative;
  padding: 1rem 1rem 0 0;
}

.ovla-expertise-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(100% - 0.5rem);
  width: calc(100% - 0.5rem);
  height: 1px;
  background: var(--color-border);
}

.ovla-expertise-process__roman {
  display: block;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ovla-expertise-process__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.ovla-expertise-cta {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 3.5rem 0;
}

.ovla-expertise-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ovla-expertise-cta__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
}

@media (max-width: 1023px) {
  .ovla-expertise-services__grid {
    grid-template-columns: 1fr;
  }

  .ovla-expertise-services__card:nth-child(odd),
  .ovla-expertise-services__card:nth-child(even) {
    padding: 2rem 0 2.25rem;
  }

  .ovla-expertise-process__steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ovla-expertise-process__step {
    padding: 0;
  }

  .ovla-expertise-process__step:not(:last-child)::after {
    display: none;
  }
}
