.spec-page {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
}

/* Hero header */
.spec-hero {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 80px 24px 60px;
}

.spec-hero-label {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.spec-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.spec-hero-title span {
  color: #c4132a;
}

.spec-hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.spec-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.spec-hero-stat {
  text-align: center;
}

.spec-hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.spec-hero-stat-value small {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.spec-hero-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Spec sections */
.spec-sections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.spec-section {
  padding: 64px 0;
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.spec-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.spec-section:last-child {
  border-bottom: none;
}

.spec-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}

.spec-section-number {
  font-size: 48px;
  font-weight: 800;
  color: #e8e8e8;
  line-height: 1;
  min-width: 56px;
}

.spec-section-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spec-section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #c4132a;
  margin-top: 10px;
  transition: width 0.4s ease;
}

.spec-section.visible .spec-section-title::after {
  width: 60px;
}

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
  gap: 24px;
}

.spec-item-label {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}

.spec-item-value {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  color: #1a1a1a;
}

/* Feature list (for bullet-style sections like Safety, Tech) */
.spec-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px 40px;
}

.spec-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #333;
}

.spec-feature::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c4132a;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Colors section */
.spec-colors {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.spec-color {
  text-align: center;
}

.spec-color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 2px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spec-color-name {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .spec-hero {
    padding: 60px 20px 40px;
  }

  .spec-hero-stats {
    gap: 32px;
  }

  .spec-hero-stat-value {
    font-size: 28px;
  }

  .spec-section {
    padding: 40px 0;
  }

  .spec-section-header {
    flex-direction: column;
    gap: 4px;
  }

  .spec-section-number {
    font-size: 32px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-features {
    grid-template-columns: 1fr;
  }
}
