/* Why Choose Us — creative digital */
.component--why {
  background: #0a0a0a;
  color: #fff;
  padding: 7vw 0 8vw;
  position: relative;
  overflow: hidden;
}

.component--why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(226, 59, 74, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(80, 140, 180, 0.12), transparent 55%);
  pointer-events: none;
}

.why {
  position: relative;
  z-index: 1;
}

.why__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4vw;
}

.why__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.why__title {
  margin: 0 0 18px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.why__lead {
  margin: 0 auto;
  max-width: 46ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.7;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why__card {
  position: relative;
  min-height: 320px;
  padding: 36px 32px 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0 120px 0 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 45%);
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.why__card:hover {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-6px);
  background:
    linear-gradient(160deg, rgba(226, 59, 74, 0.12), transparent 50%);
}

.why__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: #fff;
  opacity: 0.85;
}

.why__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.why__card h3 {
  margin: 0 0 14px;
  font-family: var(--font-primary, Diagramm, sans-serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.why__card p {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.72;
}

.why__tag {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-family: var(--font-secondary, "IBM Plex Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.35;
}

.why__actions {
  display: flex;
  justify-content: center;
  margin-top: 3.5vw;
}

.why__actions .button.--border {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .component--why {
    padding: 16vw 0 18vw;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why__card {
    min-height: 0;
    border-radius: 0 80px 0 0;
    padding: 28px 24px 32px;
  }

  .why__head {
    margin-bottom: 36px;
    text-align: left;
  }

  .why__lead {
    margin: 0;
  }
}
