/* Balder Tilbud wizard — uses ACSS brand tokens (--primary peach, --secondary petrol, etc.) */
.btq { max-width: 720px; margin-inline: auto; position: relative; }
.btq * { box-sizing: border-box; }

/* Heart watermark behind the wizard — matches the prototype's .quote-wm (large, top-anchored). */
.btq-wm { position: absolute; left: 50%; top: 40px; transform: translateX(-50%); width: min(900px, 104%); opacity: .4; pointer-events: none; user-select: none; z-index: 0; }

/* Header */
.btq-head { text-align: center; margin-bottom: var(--space-l, 32px); }
.btq-eyebrow { font-size: var(--text-xs, .75rem); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: var(--primary); margin: 0 0 var(--space-xs, 8px); }
.btq-title { color: var(--secondary); font-weight: 600; line-height: 1.14; margin: 0; font-size: clamp(1.75rem, 4vw, 2.2rem); }
.btq-title em { font-style: normal; color: inherit; }

/* Stepper */
.btq-steps { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-l, 32px); }
.btq-step-ind { display: flex; align-items: center; gap: 10px; }
.btq-dot { position: relative; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8125rem; font-weight: 700; border: 1.5px solid var(--neutral-light); background: #fff; color: var(--info); transition: background .2s, border-color .2s, color .2s; flex-shrink: 0; }
.btq-dot-check { display: none; align-items: center; justify-content: center; color: #fff; }
.btq-dot-check svg { display: block; width: 15px; height: 15px; }
.btq-step-label { font-size: .8125rem; font-weight: 600; color: var(--info); transition: color .2s; }
.btq-step-ind.is-active .btq-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.btq-step-ind.is-active .btq-step-label { color: var(--primary); }
.btq-step-ind.is-done .btq-dot { background: var(--success); border-color: var(--success); color: #fff; }
.btq-step-ind.is-done .btq-dot-num { display: none; }
.btq-step-ind.is-done .btq-dot-check { display: inline-flex; }
.btq-bar { flex: 1; height: 2px; background: var(--neutral-light); border-radius: 2px; }

/* Panel */
.btq-panel { background: #fff; border: 1px solid var(--neutral-light); border-radius: 24px; padding: var(--space-xl, 40px); box-shadow: 0 10px 40px rgba(0,42,56,.06); }
.btq-panel h2 { color: var(--secondary); font-size: var(--text-xl, 1.5rem); margin: 0 0 6px; }
.btq-sub { color: var(--info); margin: 0 0 var(--space-l, 28px); font-size: var(--text-s, .9375rem); line-height: 1.55; }

/* Option tiles */
.btq-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btq-opt { position: relative; display: flex; gap: 14px; align-items: center; text-align: left; padding: 18px; border: 1.5px solid var(--neutral-light); border-radius: 16px; cursor: pointer; background: #fff; transition: border-color .2s, box-shadow .2s; font: inherit; }
.btq-opt:hover { border-color: color-mix(in srgb, var(--primary) 55%, #fff); }
.btq-opt.is-sel { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent); }
.btq-opt.is-disabled { opacity: .4; pointer-events: none; }
.btq-opt-ic { width: 52px; height: 52px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.btq-opt-ic svg { width: 22px; height: 22px; }
.btq-opt-txt { display: flex; flex-direction: column; }
.btq-opt-t { font-weight: 600; color: var(--secondary); font-size: .95rem; }
.btq-opt-d { font-size: .8rem; color: var(--info); margin-top: 2px; }
.btq-opt-tick { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transform: scale(.6); transition: opacity .18s, transform .18s; }
.btq-opt-tick svg { width: 13px; height: 13px; }
.btq-opt.is-sel .btq-opt-tick { opacity: 1; transform: scale(1); }

/* Fields */
.btq-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.btq-field { display: flex; flex-direction: column; font-size: .8125rem; font-weight: 600; color: var(--secondary); gap: 7px; }
.btq-field input { width: 100%; padding: 13px 16px; font: inherit; font-size: .9375rem; font-weight: 400; color: var(--secondary); background: #fff; border: 1.5px solid var(--neutral-light); border-radius: 10px; outline: none; transition: border-color .2s, box-shadow .2s; }
.btq-field input:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,62,82,.1); }

/* Summary */
.btq-summary { display: flex; flex-direction: column; margin: 4px 0 var(--space-l, 28px); }
.btq-srow { display: flex; justify-content: space-between; gap: 16px; font-size: .9375rem; padding: 12px 0; border-bottom: 1px solid var(--neutral-light); }
.btq-srow span:first-child { color: var(--info); }
.btq-srow span:last-child { font-weight: 600; color: var(--secondary); text-align: right; }

/* Nav row + buttons */
.btq-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-l, 32px); }
.btq-btn { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-weight: 600; font-size: .9375rem; padding: 13px 26px; border-radius: 100vmax; border: 1.5px solid transparent; cursor: pointer; transition: filter .2s, background .2s, color .2s; }
.btq-btn svg { width: 16px; height: 16px; }
.btq-btn--peach { background: var(--primary); color: #fff; }
.btq-btn--peach:hover { filter: brightness(.95); }
.btq-btn--peach:disabled { opacity: .5; cursor: not-allowed; filter: none; }
.btq-btn--ghost { background: transparent; color: var(--secondary); border-color: var(--neutral-light); }
.btq-btn--ghost:hover { border-color: var(--secondary); }

/* Error */
.btq-err { color: var(--danger, #c0392b); font-size: .85rem; margin: 14px 0 0; }

/* Done */
.btq-done { text-align: center; }
.btq-done-ic { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--success) 15%, #fff); color: var(--success); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.btq-done-ic svg { width: 32px; height: 32px; }
.btq-done h2 { margin-bottom: 10px; }
.btq-done .btq-btn { margin-top: 8px; }

/* Meld skade claim form ([balder_skade]) — reuses the .btq-opt tiles + fields */
.bsk { display: flex; flex-direction: column; gap: var(--space-m); }
.bsk-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--secondary); margin-bottom: 10px; }
.bsk-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bsk-actions { margin-top: 2px; }
.bsk-done { text-align: center; padding: 12px 0; }
.btq-field textarea { width: 100%; padding: 13px 16px; font: inherit; font-size: .9375rem; font-weight: 400; color: var(--secondary); background: #fff; border: 1.5px solid var(--neutral-light); border-radius: 10px; outline: none; resize: vertical; min-height: 110px; transition: border-color .2s, box-shadow .2s; }
.btq-field textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(0,62,82,.1); }
@media (max-width: 600px) { .bsk-grid2 { grid-template-columns: 1fr; } }

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

@media (max-width: 640px) {
	.btq-opts, .btq-grid2 { grid-template-columns: 1fr; }
	.btq-step-label { display: none; }
}