/* haendler-werden.css — SIB Händler-Registrierung */

/* -- 1. Hero (dunkel) -- */
.hw-hero { text-align: left; }

.hw-hero .container {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.hw-hero__headline {
  color: var(--color-on-dark);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--space-2);
}

.hw-hero__subtext {
  color: rgba(250,250,248,0.6);
  font-weight: 300;
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
}

.hw-hero__headline em {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-weight: 400;
}

/* -- Vorteils-Karten -- */
.hw-vorteile__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  color: var(--color-ink);
}

.hw-vorteile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .hw-vorteile__grid { grid-template-columns: repeat(4, 1fr); }
}

.hw-vorteil {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hw-vorteil:hover {
  transform: scale(1.04);
  border-color: rgba(255,255,255,0.25);
}

.hw-vorteil::before { display: none; }

.hw-vorteil__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.hw-vorteil__icon svg { color: #fff; }

.hw-vorteil__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-on-dark);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}

.hw-vorteil__text {
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(250,250,248,0.55);
  line-height: 1.6;
}

/* ── 2. Formular ── */
.hw-form-wrap {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.hw-form__headline {
  font-size: var(--text-3xl);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.hw-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
}

.hw-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .hw-form__row { grid-template-columns: 1fr 1fr; }
}

.hw-optional {
  font-weight: 400;
  color: var(--color-muted);
  text-transform: none;
  letter-spacing: 0;
}

input[type="file"].form-input {
  padding: 0.5rem var(--space-2);
  font-size: var(--text-sm);
}

/* Checkbox-Zeile */
.hw-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 300;
  cursor: pointer;
}

.hw-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-ink);
  cursor: pointer;
}

.hw-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
