/* ─── Features Section ───────────────────────────────────── */
.features-section {
  padding: 96px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover .feature-icon {
  background: var(--red-subtle);
  border-color: var(--red-border);
  color: var(--red);
}

.feature-name {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Comparison Section ─────────────────────────────────── */
.comparison-section {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.comparison-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead th {
  padding: 14px 22px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th.col-playrate {
  color: var(--red);
}

.comparison-table tbody td {
  padding: 16px 22px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody td.col-label {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tbody td.col-playrate-val {
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tbody td.col-price { color: var(--red); font-weight: 700; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-section, .comparison-section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 14px; font-size: 13px; }
}
