/* Why Tikman section */

.why {
  background: var(--tc-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::after {
  content: "";
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(31,154,77,0.18), transparent 70%);
  pointer-events: none;
}
.why .container { position: relative; }
.why h2,
.why h3 { color: #fff; }

.why__head {
  max-width: 760px;
  margin-bottom: 64px;
}
.why__head .lede {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  max-width: 50ch;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why__item {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  border-radius: var(--radius);
  transition: background .25s ease;
  cursor: default;
}
.why__item:hover {
  background: rgba(255,255,255,0.07);
}

.why__item .num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color .25s ease;
}
.why__item:hover .num {
  color: var(--tc-green);
}

.why__item h3 {
  font-size: 19px;
  color: #fff;
  letter-spacing: -0.005em;
  font-weight: 500;
  transition: color .25s ease;
}
.why__item:hover h3 {
  color: #fff;
}

.why__item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  transition: color .25s ease;
}
.why__item:hover p {
  color: rgba(255,255,255,0.9);
}

@media (max-width: 1080px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why__item { align-items: flex-start; text-align: left; }
}
