/* ── PAGE-SPECIFIC: jetzt-bewerten.html ── */

/* ── PLATTFORM-KARTEN ──────────────── */
.bewerten-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bw-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative;
}
.bw-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(1,70,57,.10);
}
.bw-card .bw-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.bw-card .bw-icon svg { width: 30px; height: 30px; }
.bw-card.bw-google .bw-icon { background: #fff8e1; }
.bw-card.bw-facebook .bw-icon { background: #e7f0ff; color: #1877f2; }
.bw-card.bw-direkt .bw-icon { background: var(--green-light); color: var(--green); }
.bw-card h3 {
  font-size: 1.05rem; font-weight: 800;
  margin-bottom: 8px;
}
.bw-card p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 20px;
  flex-grow: 1;
}
.bw-card .bw-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
}
.bw-card:hover .bw-cta { color: var(--green-dark); }
.bw-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--green-light); color: var(--green);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}

/* ── DIREKT-FEEDBACK FORMULAR ───────── */
.feedback-wrap {
  max-width: 760px; margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 40px 36px;
}
.feedback-wrap h2 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 8px;
}
.feedback-wrap > p.lead {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px;
}

/* ── STERNE ──────────────────────── */
.star-rating {
  display: flex; flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px; margin-bottom: 8px;
  direction: rtl;
}
.star-rating input { display: none; }
.star-rating label {
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  color: var(--border);
  transition: color .12s, transform .12s;
  user-select: none;
}
.star-rating label:hover { transform: scale(1.08); }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #f5a623;
}
.star-feedback {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 22px; min-height: 1.2em;
  font-weight: 600;
}

/* ── FORM-FELDER (gleicher Stil wie kontakt.html) ── */
.form-gruppe { margin-bottom: 18px; }
.form-gruppe label {
  display: block; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.form-gruppe .hint {
  font-weight: 400; color: var(--text-muted);
  font-size: 0.78rem; margin-left: 6px;
}
.form-gruppe input,
.form-gruppe textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  background: var(--bg); color: var(--text);
  transition: border-color .15s;
}
.form-gruppe input:focus,
.form-gruppe textarea:focus {
  outline: none; border-color: var(--green);
}
.form-gruppe textarea { height: 130px; resize: vertical; }
.form-gruppe .required::after { content: ' *'; color: var(--red); }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 22px; cursor: pointer;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.form-checkbox span { flex: 1; min-width: 0; }
.form-checkbox a { color: var(--green); }

.form-submit {
  width: 100%; padding: 14px 24px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: background .18s;
}
.form-submit:hover { background: var(--green-dark); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-success {
  display: none; background: var(--green-light);
  border: 1.5px solid var(--green-mid); border-radius: 14px;
  padding: 28px 24px; text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 { font-size: 1.15rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

.form-error {
  display: none; background: var(--red-light);
  border: 1.5px solid var(--red-border); border-radius: 10px;
  padding: 12px 16px; margin-bottom: 16px;
  font-size: 0.85rem; color: var(--red);
}
.form-error.visible { display: block; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ── PERSÖNLICHER SUB-CTA ─────────── */
.persoenlich {
  max-width: 760px; margin: 0 auto;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 18px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.persoenlich .p-icon {
  font-size: 1.8rem; line-height: 1;
  width: 48px; height: 48px;
  background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.persoenlich .p-icon svg { width: 24px; height: 24px; }
.persoenlich h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.persoenlich p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0;
}
.persoenlich .p-btns { display: flex; gap: 10px; flex-shrink: 0; }
.persoenlich .btn { white-space: nowrap; }

@media (max-width: 820px) {
  .bewerten-grid { grid-template-columns: 1fr; }
  .persoenlich {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .persoenlich .p-icon { margin: 0 auto; }
  .persoenlich .p-btns { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .feedback-wrap { padding: 28px 22px; }
  .star-rating label { font-size: 1.9rem; }
}
  
