/* ── SOLUTIONS ─────────────────────────────────────────── */
.solutions {
  padding: 110px var(--page-px);
}
.solutions:not(.dots-bg) {
  background-color: var(--black);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--gray-70);
}
/* Solution cards: same visual language as .sector-card (4:3 image, gradient overlay, circular CTA) */
.solution-card:not(.ghost) {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.solution-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.solution-img::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
}
.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(1) brightness(0.55);
}
.solution-card:not(.ghost):hover .solution-img img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}
.solution-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 80px 24px 24px;
  display: flex;
  flex-direction: column;
}
.solution-tag {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.solution-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.solution-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 0;
}
.solution-arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-40);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.solution-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--yellow);
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.5s cubic-bezier(0.34, 1.1, 0.42, 1);
  z-index: 0;
}
.solution-card:not(.ghost):hover .solution-arrow::before {
  transform: scale(1);
}
.solution-arrow .material-icons {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1;
  color: var(--yellow);
  margin-left: 2px;
  transition: color 0.35s ease 0.05s;
}
.solution-card:not(.ghost):hover .solution-arrow .material-icons {
  color: var(--black);
}
.solution-card.ghost {
  display: flex;
  flex-direction: column;
  background-color: var(--yellow);
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  text-align: center;
  color: var(--black);
}
.ghost-label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
  max-width: 200px;
  margin-bottom: 8px;
}
.solution-card.ghost .btn-primary {
  background: var(--black);
  color: var(--yellow);
}
.solution-card.ghost .btn-primary:hover {
  background: var(--gray-80);
}

.solutions-foot {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SOLUTIONS — responsive ──────────────────────────── */

/* Tablet: 2 kolommen */
@media (max-width: 1023px) {
  .solutions {
    padding: 80px 40px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

/* Mobile: 1 kolom, full-width kaarten */
@media (max-width: 599px) {
  .solutions {
    padding: 64px clamp(18px, 5vw, 32px);
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .solution-card.ghost {
    padding: 36px 28px;
    aspect-ratio: unset;
    min-height: 220px;
  }
  .ghost-label {
    font-size: 20px;
  }
  .solutions-foot {
    margin-top: 36px;
  }
}
