/* ── COMPARE HERO ── */
.compare-hero {
  width: 100%;
  background: linear-gradient(180deg, #6C6C6C 0%, #EDEDED 47%);
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.compare-product-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  width: 100%;
  max-width: 860px;
}

.compare-product-info {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.compare-product-name {
  font-weight: 600;
  font-size: clamp(44px, 4vw, 42px);
  color: #6C6C6C;
  text-align: center;
  text-transform: capitalize;
}

.compare-product-img {
  display: flex;
  justify-content: center;
}

.compare-product-img img {
  max-width: 432px;
  width: 100%;
  height: auto;
  display: block;
}

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

.compare-price-label {
  font-weight: 400;
  font-size: 18px;
  color: #8B8782;
  text-align: center;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: var(--color-accent);
  color: var(--color-accent-dark);
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-accent:hover { opacity: 0.85; }

/* ── FEATURES LIST ── */
.compare-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 860px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
}

.compare-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
  gap: 10px;
}

.compare-feature-item:last-child { border-bottom: none; }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-label {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .compare-hero { padding: 40px 16px; }
  .compare-product-card { padding: 16px 16px 40px; }
  .compare-features-list { padding: 16px; }
}
