/* ─── Speed Benchmark Section ────────────────────────────── */
.speed-section {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.speed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.speed-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.speed-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.speed-card-playrate {
  border-color: #a7f3d0;
  background: #f0fdf4;
}

/* ─── Header ─────────────────────────────────────────────── */
.speed-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.speed-card-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.speed-card-playrate .speed-card-title {
  color: #059669;
}

/* ─── Image Preview ──────────────────────────────────────── */
.speed-preview-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  margin-bottom: 20px;
}

.speed-preview-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 953 / 428;
  object-fit: cover;
}

/* ─── Footer / Features ──────────────────────────────────── */
.speed-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin-top: auto;
}

.speed-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.speed-feature-item i {
  font-size: 16px;
  flex-shrink: 0;
}

.text-green { color: #059669; }
.text-red { color: var(--red); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .speed-grid {
    grid-template-columns: 1fr;
  }
  .speed-section {
    padding: 60px 0;
  }
}
