/* ============================================
   FREEZEAL — Dealer Page Styles
   ============================================ */

/* ── Benefits Grid ── */
.dealer-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.dealer-benefit {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.dealer-benefit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-primary);
}

.dealer-benefit__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-ultra-light), var(--bg-pink-light));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 32px;
  transition: all var(--transition-base);
}

.dealer-benefit:hover .dealer-benefit__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.dealer-benefit h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.dealer-benefit p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Dealer Form ── */
.dealer-form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.dealer-form-info {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.dealer-form-info h2 {
  margin-bottom: var(--space-lg);
}

.dealer-form-info p {
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.dealer-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dealer-checklist__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--text-body);
}

.dealer-checklist__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.dealer-form-card h3 {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

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

@media (max-width: 768px) {
  .dealer-benefits {
    grid-template-columns: 1fr;
  }

  .dealer-form-section {
    grid-template-columns: 1fr;
  }

  .dealer-form-info {
    position: static;
  }
}
