.pricing {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.addon-grid {
  margin-top: 30px;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
}

.addon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 94, 0, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  font-size: 1rem;
  width: 100%;
  max-width: 260px;
  transition: 0.3s;
}

.addon:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
}

/* ======= Maintenance ======= */

.service-table {
  margin: 40px auto 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 94, 0, 0.3);
  overflow: hidden;
  width: 90%;
  max-width: 900px;
}

.service-table .row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 94, 0, 0.2);
  transition: background 0.3s;
}

.service-table .row:hover {
  background: rgba(255, 94, 0, 0.1);
}

.section-subtitle {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff5e00, #00b2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Orbitron', monospace;
}

.divider {
  width: 70%;
  height: 2px;
  margin: 60px auto;
  background: linear-gradient(
    90deg,
    transparent,
    #ff5e00,
    #00b2ff,
    transparent
  );
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
    padding: 0 12px;
    word-break: break-word;
  }

  .service-table {
    width: 100%;
  }

  .service-table .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
