/* Technology Page — Enhanced Icon Cards */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 860px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.tech-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card:hover {
  border-color: #EA590C;
  transform: translateY(-4px);
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EA590C, #FF8A50);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.tech-icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(234, 89, 12, 0.15), rgba(234, 89, 12, 0.05));
  border: 1px solid rgba(234, 89, 12, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.tech-card:hover .tech-icon-wrap {
  background: linear-gradient(135deg, rgba(234, 89, 12, 0.25), rgba(234, 89, 12, 0.1));
}

.tech-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.tech-card-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #EA590C;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.tech-card-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-top: 4px;
}

.tech-card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b0b0;
}

.tech-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(234, 89, 12, 0.1);
  border: 1px solid rgba(234, 89, 12, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #EA590C;
  margin-top: 1rem;
  margin-right: 0.5rem;
}
