.what-we-help-with {
  --what-help-bg: #e7ebf3;
  --what-help-ink: #1b3b4d;
  --what-help-gold: #c8a46a;
  --what-help-line: rgba(27, 59, 77, 0.14);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--what-help-bg) 0%,
    var(--what-help-bg) 50%,
    transparent 100%
  );
  color: var(--what-help-ink);
}

.what-we-help-with::before,
.what-we-help-with::after {
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  width: 72vw;
  transform: skewX(-42deg);
  transform-origin: top left;
  pointer-events: none;
}

.what-we-help-with::before {
  right: -232px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(191, 197, 202, 0.15) 10%,
    rgba(191, 197, 202, 0.15) 90%,
    transparent 100%
  )
}

.what-we-help-with::after {
  right: 54px;
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(191, 197, 202, 0.1) 10%,
    rgba(191, 197, 202, 0.1) 90%,
    transparent 100%
  )
}

.what-we-help-with__inner {
  position: relative;
  z-index: 1;
  width: min(1290px, calc(100% - (var(--section-padding-x) * 2)));
  margin: 0 auto;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.what-we-help-with__header {
  width: min(740px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.what-we-help-with__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--what-help-ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: 0;
}

.what-we-help-with__eyebrow-line {
  width: 48px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--what-help-ink);
}

.what-we-help-with__title {
  display: flex;
  flex-direction: column;
  color: var(--what-help-ink);
  font-family: var(--font-display);
  font-size: 67px;
  font-weight: var(--fw-regular);
  line-height: 1.1;
  letter-spacing: 0;
}

.what-we-help-with__title-highlight {
  color: var(--what-help-gold);
}

.what-we-help-with__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--what-help-line);
  border-right: 0;
  border-bottom: 0;
}

.what-we-help-with__item {
  min-height: 303px;
  border-right: 1px solid var(--what-help-line);
  border-bottom: 1px solid var(--what-help-line);
  overflow: hidden;
}

.what-we-help-with__item-inner {
  width: 100%;
  height: 100%;
  padding: 39px 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.what-we-help-with__item-inner::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--what-help-gold);
  transition: transform 240ms ease;
}

.what-we-help-with__item:hover .what-we-help-with__item-inner::after,
.what-we-help-with__item:focus-within .what-we-help-with__item-inner::after {
  transform: translateX(100%);
}

.what-we-help-with__number {
  color: var(--what-help-ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0;
}

.what-we-help-with__icon {
  width: 24px;
  height: 24px;
  color: var(--what-help-ink);
}

.what-we-help-with__icon-svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.what-we-help-with__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.what-we-help-with__item-title {
  margin: 0;
  color: var(--what-help-ink);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: var(--fw-regular);
  line-height: 1.1;
  letter-spacing: 0;
}

.what-we-help-with__description {
  max-width: 321px;
  margin: 0;
  color: var(--what-help-ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-regular);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .what-we-help-with__inner {
    padding: 72px 0;
  }

  .what-we-help-with__title {
    font-size: 56px;
  }

  .what-we-help-with__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .what-we-help-with__inner {
    width: min(100% - 40px, 1290px);
    padding: 56px 0;
    gap: 36px;
  }

  .what-we-help-with__title {
    font-size: 42px;
  }

  .what-we-help-with__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .what-we-help-with__item {
    min-height: auto;
  }

  .what-we-help-with__item-inner {
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-we-help-with__item-inner::after {
    transition: none;
  }
}
