.compare-hero {
  text-align: center;
  padding: 80px 24px 48px;
}

.compare-hero h1 {
  font-family: var(--font-d);
  font-size: 40px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.compare-subtitle {
  font-size: 18px;
  color: var(--g1);
  margin-bottom: 40px;
}

.compare-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.compare-selects {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.compare-selects select {
  font-family: var(--font-b);
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid var(--g3);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  min-width: 200px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6E73' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.compare-selects select:focus {
  outline: none;
  border-color: var(--terra);
}

.compare-vs {
  font-size: 14px;
  font-weight: 600;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.compare-popular {
  padding: 0 24px 80px;
  text-align: center;
}

.compare-popular h2 {
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.compare-popular .compare-row {
  justify-content: center;
}

@media (max-width: 639px) {
  .compare-hero h1 { font-size: 32px; }
  .compare-selects { flex-direction: column; }
  .compare-selects select { min-width: 100%; }
}
