/**
 * Körper-Check – interaktive Landingpage (Quiz + Ergebnis-Kompass).
 *
 * Alle Regeln sind unter `.kcheck` gescoped, damit sie den Rest der Seite
 * nicht beeinflussen. Farben stammen aus den Theme-Variablen (siehe style.css).
 * Wird nur auf der Seite mit dem Slug „koerper-check" geladen.
 *
 * @package Martina_Steurer
 */

.kcheck {
	--kc-lato: 'Lato', 'Helvetica Neue', Arial, sans-serif;
	max-width: 640px;
	margin: 0 auto;
	/* Oben Platz für die fixe Navigationsleiste, unten Luft bis zum Footer. */
	padding: 140px 16px 96px;
	font-family: var(--kc-lato);
	color: var(--anthrazit);
	line-height: 1.7;
}

.kcheck * { box-sizing: border-box; }

/* --- Panels ---------------------------------------------------------- */
.kc-panel { display: none; }
.kc-panel.is-active { display: block; }

/* --- Bausteine ------------------------------------------------------- */
.kc-cap {
	font-family: var(--sans);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 11px;
}
.kc-serif {
	font-family: var(--serif);
}

.kc-btn {
	font-family: var(--sans);
	cursor: pointer;
	background: var(--gold);
	color: var(--weiss);
	border: none;
	padding: 14px 36px;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 4px;
	transition: background 0.2s ease;
}
.kc-btn:hover { background: var(--gold-deep); }

.kc-btn--ghost {
	background: none;
	border: none;
	color: var(--gold-deep);
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 0;
	cursor: pointer;
}

.kc-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--gold-beige);
	border-radius: 4px;
	font-size: 15px;
	font-family: var(--kc-lato);
	background: var(--weiss);
	color: var(--anthrazit);
}
.kc-input:focus { outline: none; border-color: var(--gold); }

.kc-opt {
	font-family: var(--kc-lato);
	text-align: left;
	width: 100%;
	padding: 14px 18px;
	font-size: 15px;
	border-radius: 6px;
	border: 1px solid var(--soft-beige);
	background: var(--weiss);
	color: var(--anthrazit);
	transition: all 0.15s ease;
	margin-bottom: 10px;
	cursor: pointer;
}
.kc-opt:hover { border-color: var(--gold-beige); }
.kc-opt.is-sel { border-color: var(--gold); background: var(--creme); }

.kc-card {
	background: var(--weiss);
	border-radius: 12px;
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}
.kc-card--beige { background: var(--soft-beige); }

/* --- Hero ------------------------------------------------------------ */
.kc-hero {
	padding: 3.5rem 2rem;
	text-align: center;
	background: var(--weiss);
	border-radius: 12px;
}
.kc-hero__eyebrow { letter-spacing: 0.22em; color: var(--gold); margin-bottom: 1.5rem; }
.kc-hero__title {
	font-size: 38px;
	line-height: 1.2;
	color: var(--schwarz);
	max-width: 480px;
	margin: 0 auto 1.25rem;
}
.kc-hero__lead {
	font-size: 16px;
	max-width: 440px;
	margin: 0 auto 1.75rem;
}
.kc-hero__note {
	background: var(--creme);
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
	max-width: 460px;
	margin: 0 auto 2rem;
	text-align: left;
}
.kc-hero__note p { font-size: 14px; margin: 0; }
.kc-hero__meta {
	display: inline-flex;
	gap: 1.75rem;
	margin-bottom: 2.25rem;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

/* --- Quiz ------------------------------------------------------------ */
.kc-quiz { padding: 2.5rem 2rem; }
.kc-progress {
	height: 3px;
	background: var(--soft-beige);
	border-radius: 2px;
	margin-bottom: 0.5rem;
	overflow: hidden;
}
.kc-progress__bar {
	height: 100%;
	width: 0;
	background: var(--gold);
	transition: width 0.35s ease;
}
.kc-counter { letter-spacing: 0.14em; color: var(--gold-deep); margin-bottom: 2rem; }
.kc-area { letter-spacing: 0.16em; color: var(--gold-beige); margin-bottom: 0.75rem; }
.kc-question {
	font-size: 26px;
	line-height: 1.35;
	color: var(--schwarz);
	min-height: 90px;
	margin-bottom: 2rem;
}

/* --- Gate ------------------------------------------------------------ */
.kc-gate {
	padding: 3.5rem 2rem;
	text-align: center;
	background: var(--weiss);
	border-radius: 12px;
}
.kc-gate__title { font-size: 30px; color: var(--schwarz); margin-bottom: 1rem; }
.kc-gate__lead { font-size: 15px; max-width: 400px; margin: 0 auto 2rem; }
.kc-gate__form { max-width: 340px; margin: 0 auto; text-align: left; }
.kc-gate__err { color: #A32D2D; font-size: 12px; min-height: 16px; margin-bottom: 8px; }
.kc-gate__hint { font-size: 11px; color: var(--gold-beige); margin-top: 12px; text-align: center; }

/* Honeypot – unsichtbar für Menschen, füllen nur Bots aus */
.kc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Newsletter-Einwilligung */
.kc-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	text-align: left;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--anthrazit);
	margin: 14px 0 6px;
	cursor: pointer;
}
.kc-consent input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--gold);
	cursor: pointer;
}
.kc-gate__privacy {
	font-size: 11px;
	line-height: 1.55;
	color: var(--gold-beige);
	text-align: left;
	margin: 10px 0 0;
}
.kc-gate__privacy a { color: var(--gold-deep); text-decoration: underline; }

/* --- Ergebnis -------------------------------------------------------- */
.kc-result { padding: 2.5rem 2rem; }
.kc-result__head { text-align: center; margin-bottom: 2rem; }
.kc-result__kicker { letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.75rem; }
.kc-type-name {
	font-size: 40px;
	font-style: italic;
	color: var(--schwarz);
	font-family: var(--serif);
}
.kc-type-second {
	font-size: 14px;
	color: var(--gold-deep);
	margin: 0.75rem auto 0;
	max-width: 420px;
}
.kc-card__label { letter-spacing: 0.14em; color: var(--gold-deep); margin-bottom: 1rem; }
.kc-card p { font-size: 15px; }

.kc-list-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	margin-bottom: 8px;
}
.kc-list-row--tip { align-items: center; font-size: 15px; margin-bottom: 10px; }
.kc-check { color: var(--gold); font-weight: 700; }

/* --- Kompass --------------------------------------------------------- */
.kc-compass { display: flex; flex-direction: column; gap: 1rem; }
.kc-compass__head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gold-beige);
}
.kc-compass__head.is-top { color: var(--gold-deep); }
.kc-compass__track {
	height: 8px;
	background: var(--soft-beige);
	border-radius: 4px;
	overflow: hidden;
}
.kc-compass__fill {
	height: 100%;
	background: var(--gold-beige);
	border-radius: 4px;
	transition: width 0.6s ease;
}
.kc-compass__fill.is-top { background: var(--gold); }
.kc-fine { font-size: 12px; color: var(--gold-beige); margin-top: 1.25rem; }

.kc-note-box {
	background: var(--soft-beige);
	border-radius: 12px;
	padding: 1.75rem;
	margin-bottom: 2rem;
}
.kc-note-box p { font-size: 14px; }

/* --- Abschluss-CTA --------------------------------------------------- */
.kc-final {
	text-align: center;
	padding: 2.75rem 1.5rem;
	background: var(--weiss);
	border-radius: 12px;
	border-top: 3px solid var(--gold);
}
.kc-final__claim {
	font-size: 30px;
	line-height: 1.3;
	color: var(--schwarz);
	font-style: italic;
	max-width: 440px;
	margin: 0 auto 1rem;
}
.kc-final__claim span { color: var(--gold); }
.kc-final__lead { font-size: 15px; max-width: 400px; margin: 0 auto 1.75rem; }

/* --- Mobile ---------------------------------------------------------- */
@media (max-width: 560px) {
	.kcheck { padding: 104px 14px 64px; }
	.kc-hero, .kc-gate { padding: 2.5rem 1.25rem; }
	.kc-quiz, .kc-result { padding: 2rem 1.25rem; }
	.kc-hero__title { font-size: 30px; }
	.kc-question { font-size: 22px; }
	.kc-type-name { font-size: 32px; }
	.kc-final__claim { font-size: 24px; }
	.kc-hero__meta { gap: 1.1rem; }
}
