/* ==========================================================================
   Our Technology & Solutions Section — dark schematic capability grid.
   Paired with .section--dark from base.css for the forest surface + a
   faint circuit grid so it reads as a distinct, engineered tier.
   ========================================================================== */
.technology {
  position: relative;
  overflow: hidden;
  background: var(--gradient-forest);
}
.technology .section-eyebrow { color: var(--color-green-500); }
.technology .section-eyebrow::before { color: var(--color-amber-500); }
.technology .section-heading { color: var(--color-white); }
.technology .section-subheading { color: rgba(255, 255, 255, 0.62); }

.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 184, 102, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 184, 102, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  pointer-events: none;
}

.technology .container { position: relative; }

.technology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.tech-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 26px 28px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-green-500);
  background: rgba(34, 184, 102, 0.06);
}

.tech-card__index {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.05em;
}

.tech-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(14, 122, 69, 0.35);
  transition: transform 0.25s ease;
}
.tech-card:hover .tech-card__icon { transform: scale(1.05); }

.tech-card__icon svg { width: 25px; height: 25px; }

.tech-card__title {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.tech-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  .technology__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .technology__grid { grid-template-columns: 1fr; }
}
