/* About Us — Work Process */
.icv-work-process {
  --icv-wp-bg: #002561;
  --icv-wp-primary: #007dc5;
  --icv-wp-primary-soft: #3a9fd4;
  --icv-wp-white: #ffffff;
  --icv-wp-muted: rgba(255, 255, 255, 0.78);
  --icv-wp-deco: rgba(58, 159, 212, 0.28);

  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
  background: var(--icv-wp-bg);
  color: var(--icv-wp-white);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.icv-work-process .container {
  position: relative;
  z-index: 2;
}

/* Decorative background elements */
.icv-work-process__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.icv-work-process__deco--lines {
  top: -20px;
  left: -30px;
  width: min(280px, 38vw);
  opacity: 0.85;
  line-height: 0;
}

.icv-work-process__deco--lines img {
  display: block;
  width: 100%;
  height: auto;
}

.icv-work-process__deco--dots {
  top: auto;
  bottom: 6%;
  left: 1.5%;
  width: clamp(70px, 9vw, 120px);
  opacity: 0.85;
  line-height: 0;
}

.icv-work-process__deco--dots img {
  display: block;
  width: 100%;
  height: auto;
}

.icv-work-process__deco--cube {
  top: 8%;
  right: 6%;
  width: 88px;
  height: 88px;
  border: 1.5px solid rgba(90, 170, 220, 0.35);
  transform: rotate(18deg) skewY(-8deg);
  opacity: 0.7;
}

.icv-work-process__deco--cube::before,
.icv-work-process__deco--cube::after {
  content: "";
  position: absolute;
  border: 1.5px solid rgba(90, 170, 220, 0.28);
}

.icv-work-process__deco--cube::before {
  inset: 12px;
}

.icv-work-process__deco--cube::after {
  inset: 24px;
}

.icv-work-process__deco--rings {
  right: -20px;
  bottom: -30px;
  width: min(260px, 36vw);
  opacity: 0.9;
  line-height: 0;
}

.icv-work-process__deco--rings img {
  display: block;
  width: 100%;
  height: auto;
}

/* Header */
.icv-work-process__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.icv-work-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icv-wp-white);
}

.icv-work-process__eyebrow-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.icv-work-process__eyebrow-icon::before,
.icv-work-process__eyebrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 14px;
  background: currentColor;
  border-radius: 1px;
  transform: skewX(-18deg);
}

.icv-work-process__eyebrow-icon::before {
  left: 0;
}

.icv-work-process__eyebrow-icon::after {
  left: 8px;
}

.icv-work-process__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--icv-wp-white);
}

/* Steps list — wave layout */
.icv-work-process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.icv-work-process__item {
  position: relative;
  text-align: center;
  min-width: 0;
}

.icv-work-process__item:nth-child(odd) {
  margin-top: clamp(36px, 4.5vw, 56px);
}

.icv-work-process__item:nth-child(even) {
  margin-top: 0;
}

.icv-work-process__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px;
}

.icv-work-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 12vw, 128px);
  height: clamp(100px, 12vw, 128px);
  border-radius: 50%;
  background: var(--icv-wp-white);
  color: var(--icv-wp-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.icv-work-process__icon svg {
  width: 52%;
  height: 52%;
}

.icv-work-process__num {
  position: absolute;
  top: 2px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #001a44;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--icv-wp-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.icv-work-process__arrow {
  position: absolute;
  top: 38%;
  left: calc(100% + 4px);
  width: clamp(64px, 8vw, 110px);
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}

.icv-work-process__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.icv-work-process__item:nth-child(odd) .icv-work-process__arrow {
  top: 28%;
}

.icv-work-process__item:nth-child(even) .icv-work-process__arrow {
  top: 48%;
}

.icv-work-process__step-title {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--icv-wp-white);
}

.icv-work-process__step-text {
  margin: 0 auto;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--icv-wp-muted);
}

/* Responsive */
@media (max-width: 991px) {
  .icv-work-process {
    clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%);
    padding: 56px 0 64px;
  }

  .icv-work-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
  }

  .icv-work-process__item:nth-child(odd),
  .icv-work-process__item:nth-child(even) {
    margin-top: 0;
  }

  .icv-work-process__item:nth-child(2),
  .icv-work-process__item:nth-child(4) {
    margin-top: 28px;
  }

  .icv-work-process__arrow {
    display: none;
  }

  .icv-work-process__deco--cube,
  .icv-work-process__deco--dots {
    opacity: 0.4;
  }
}

@media (max-width: 575px) {
  .icv-work-process {
    clip-path: none;
    padding: 48px 0 56px;
  }

  .icv-work-process__list {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 320px;
    margin: 0 auto;
  }

  .icv-work-process__item:nth-child(2),
  .icv-work-process__item:nth-child(4) {
    margin-top: 0;
  }

  .icv-work-process__step-text {
    max-width: none;
  }

  .icv-work-process__deco--lines,
  .icv-work-process__deco--cube,
  .icv-work-process__deco--dots {
    opacity: 0.25;
  }
}
