/* ============================================================
   OnDestination - Klachten pagina stijlen
   Extends home.css / colors_and_type.css / feedback.css
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────── */
.kl-hero {
  position: relative;
  background:
    radial-gradient(860px 520px at 88% 10%, rgba(111,224,0,.11), transparent 54%),
    radial-gradient(520px 380px at 8% 92%, rgba(111,224,0,.06), transparent 50%),
    #000;
  color: #F8F5EE;
  padding: 130px 0 84px;
  overflow: hidden;
}

.kl-hero-inner {
  position: relative;
  z-index: 2;
}

.kl-hero h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  margin: 0 0 20px;
}

.kl-hero h1 em {
  font-style: normal;
  color: #6FE000;
  text-shadow: 0 0 44px rgba(111,224,0,.36);
}

.kl-hero-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.62;
  color: rgba(248,245,238,.66);
  max-width: 50ch;
  margin: 0 0 32px;
}

.kl-hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.kl-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(248,245,238,.52);
  letter-spacing: .02em;
}

.kl-hero-meta-item svg {
  color: #6FE000;
  flex-shrink: 0;
}

/* ── Info strip ─────────────────────────────────────────── */
.kl-strip {
  background: #F3EEE2;
  border-bottom: 1px solid rgba(0,0,0,.09);
  padding: 8px 0;
}

.kl-strip-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

.kl-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  flex: 1;
  min-width: 220px;
  border-right: 1px solid rgba(0,0,0,.08);
  padding-right: 32px;
  margin-right: 32px;
}

.kl-strip-item:last-of-type {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.kl-strip-icon {
  width: 38px;
  height: 38px;
  background: rgba(111,224,0,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3F8A00;
  flex-shrink: 0;
}

.kl-strip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
  margin-bottom: 2px;
}

.kl-strip-text span {
  font-size: 12.5px;
  color: #6a6a66;
  line-height: 1.4;
}

.kl-strip-cta {
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}

/* ── Form main ──────────────────────────────────────────── */
.kl-main { padding: 80px 0 104px; }

.kl-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Category chips ─────────────────────────────────────── */
.kl-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.kl-cat-chip {
  background: none;
  border: 1.5px solid rgba(0,0,0,.13);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: 'Luxe Uno', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2A2A2A;
  cursor: pointer;
  transition: border-color 160ms, background 160ms, color 160ms, box-shadow 160ms;
  white-space: nowrap;
  line-height: 1;
}

.kl-cat-chip:hover {
  border-color: #6FE000;
  color: #1A3300;
  background: rgba(111,224,0,.07);
}

.kl-cat-chip.is-active {
  background: #6FE000;
  border-color: #6FE000;
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(111,224,0,.28);
}

.kl-cat-required .kl-cats {
  animation: fb-shake 340ms ease both;
}

.kl-cat-err {
  font-size: 12.5px;
  color: #E04848;
  margin: 8px 0 0;
  display: none;
}

.kl-cat-required .kl-cat-err { display: block; }

/* ── Character count ────────────────────────────────────── */
.kl-field-wrap { position: relative; }

.kl-char-count {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 11px;
  color: #C0BDB4;
  pointer-events: none;
  transition: color 180ms;
}

.kl-char-count.near { color: #E8B100; }
.kl-char-count.full { color: #E04848; }

/* ── Success state ──────────────────────────────────────── */
.kl-success {
  background: #000;
  color: #F8F5EE;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.kl-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 68% 56% at 50% 46%, rgba(111,224,0,.11), transparent 64%);
  pointer-events: none;
}

.kl-success-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.kl-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(111,224,0,.1);
  border: 1.5px solid rgba(111,224,0,.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: #6FE000;
}

.kl-success h2 {
  font-family: 'Kardige', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}

.kl-success h2 em {
  font-style: normal;
  color: #6FE000;
}

.kl-success-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(248,245,238,.62);
  max-width: 42ch;
  margin: 0 auto 36px;
}

.kl-ref-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

.kl-ref-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248,245,238,.36);
  margin: 0 0 5px;
}

.kl-ref-number {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 700;
  color: #6FE000;
  letter-spacing: .04em;
}

.kl-ref-promise {
  font-size: 13px;
  color: rgba(248,245,238,.4);
  text-align: right;
  line-height: 1.5;
}

.kl-success-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .kl-hero { padding: 100px 0 60px; }
  .kl-hero-meta { gap: 16px; }
  .kl-container { padding: 0 20px; }
  .kl-strip-item { padding-right: 0; margin-right: 0; border-right: 0; border-bottom: 1px solid rgba(0,0,0,.07); padding-bottom: 18px; margin-bottom: 18px; }
  .kl-strip-item:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
  .kl-strip-cta { width: 100%; margin-top: 8px; margin-bottom: 6px; }
  .kl-ref-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .kl-ref-promise { text-align: left; }
  .kl-success { padding: 80px 0; }
}
