.spec-section {
  background: #202020;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
  text-align: center;
}

.spec-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  
}

.spec-section .kicker {
  text-align: center;     /* force left alignment */
  letter-spacing: 2px;
  color: #d4af37;       /* gold tone to match Philosophy */
  margin: 0 auto 12px;
  max-width: 1400px;    /* keeps aligned with grid */
  padding-left: 20px;   /* small left indent */
  display: block;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: center;
}

.spec-card {
    width: 100%;               /* Fill the grid column */
    height: 300px;             /* Fixed height */
    max-width: 450px;
    background: #000;
    border-radius: 20px;
    padding: 30 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 transparent;
    transition: transform 0.2s ease-in;

}

.spec-card:hover {
  transform: scale(1.03);
}


.spec-card i {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #00f0ff;
}

.spec-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr; /* Stack vertically */
  }
}