/* ============================================================
   Fitlandclub DE — landing page
   ============================================================ */

:root {
	--ink: #1c1c1c;
	--ink-soft: #3b3b3b;
	--muted: #777;
	--line: #e3e3e3;

	--brand: #0e1b5c;
	--brand-2: #182a8a;

	--accent: #ea5b1f;   /* Fitlandclub orange (CTA, why-section) */
	--accent-2: #d24a10;

	--success: #5bbf3b;
	--success-soft: #e8f6e1;

	--bg: #ffffff;
	--bg-2: #f6f6f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
	font-family: "Poppins", system-ui, -apple-system, sans-serif;
	background: var(--bg);
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	line-height: 1.45;
	font-size: 14px;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
	max-width: 460px;
	margin: 0 auto;
	padding: 14px 26px 30px;
	background: #fff;
}

/* Step indicator */
.step { margin-bottom: 14px; }
.step__label {
	color: var(--success);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	display: block;
	margin-bottom: 8px;
}
.step__bars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.step__bar {
	height: 6px;
	border-radius: 4px;
	background: #e1e1e1;
	position: relative;
	overflow: hidden;
}
.step__bar--fill::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 18%;
	background: var(--success);
	border-radius: 4px;
	animation: stepFill 1.4s ease forwards;
}
@keyframes stepFill { to { width: 100%; } }

/* Brand */
.brand {
	display: flex;
	justify-content: center;
	margin: 6px 0 14px;
}
.brand img { width: 130px; height: auto; }

/* Service hero (image + tagline) */
.hero {
	margin: 4px 0 16px;
	animation: heroIn 0.5s ease both;
}
.hero__img {
	width: 100%;
	aspect-ratio: 16 / 7;
	max-height: 150px;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.28)),
		url("../imgs/content_stretch.jpg") center/cover no-repeat;
	box-shadow: 0 6px 18px -10px rgba(14, 27, 92, 0.35);
}
.hero__copy {
	margin-top: 10px;
	font-size: 12.5px;
	line-height: 1.45;
	color: #555;
	text-align: center;
	letter-spacing: 0.1px;
}
@keyframes heroIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Heading */
.form-card__heading {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.35;
	margin: 2px 0 12px;
}

/* Price callout — bordered, bolded, sits directly above the input */
.priceinfo {
	margin: 0 0 12px;
	padding: 10px 14px;
	border: 1.5px solid var(--brand);
	border-radius: 8px;
	background: #f4f6ff;
	color: var(--ink);
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

/* ============================================================
   Floating-label input
   ============================================================ */
.field {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	column-gap: 10px;
	border: 2px solid var(--accent);
	border-radius: 10px;
	padding: 18px 14px 16px;
	position: relative;
	background: #fff;
	transition: border-color 0.2s;
}
.field.is-valid { border-color: var(--success); }

.field__label {
	position: absolute;
	top: -9px;
	left: 14px;
	background: #fff;
	color: var(--accent);
	font-size: 12px;
	font-weight: 500;
	padding: 0 6px;
	letter-spacing: 0.2px;
	transition: color 0.2s;
}
.field.is-valid .field__label { color: var(--success); }

.field__icon {
	width: 26px;
	height: 26px;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
}
.field__icon svg { width: 22px; height: 22px; }

.field__prefix {
	font-size: 22px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: 1px;
}

.field input {
	border: 0;
	outline: 0;
	background: transparent;
	font-family: inherit;
	font-size: 22px;
	letter-spacing: 3px;
	width: 100%;
	color: var(--ink);
	padding: 0 4px;
	min-width: 0;
}
.field input::placeholder {
	color: #b9b9b9;
	letter-spacing: 6px;
}

.field__tick {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #2c2c2c;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s, transform 0.25s;
}
.field__tick svg { width: 14px; height: 14px; }
.field.is-valid .field__tick {
	background: var(--success);
	transform: scale(1.08);
}

/* PIN variant — no label, no icon, no prefix, centered code */
.field--pin {
	grid-template-columns: 1fr;
}
.field--pin input {
	text-align: center;
	letter-spacing: 10px;
	padding-left: 10px;
	font-weight: 700;
}
.field--pin input::placeholder {
	color: #2c2c2c;
	font-weight: 700;
}

/* Step block toggling */
.step-block.hidden { display: none; }

/* ============================================================
   WEITER button
   ============================================================ */
.weiter {
	margin-top: 18px;
	width: 100%;
	height: 56px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #ee6a30, var(--accent));
	color: #fff;
	font-family: inherit;
	font-weight: 700;
	font-size: 17px;
	letter-spacing: 1.2px;
	cursor: pointer;
	box-shadow: 0 6px 16px -6px rgba(234, 91, 31, 0.6);
	transition: transform 0.06s;
}
.weiter[disabled] { cursor: not-allowed; }
.weiter:not([disabled]):active { transform: translateY(1px); }

/* Tiny secondary cancel link */
.cancel {
	display: block;
	margin: 10px auto 0;
	text-align: center;
	color: #8a8a8a;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.cancel:hover { color: var(--ink-soft); }

/* ============================================================
   Payment info paragraph
   ============================================================ */
.payinfo {
	margin-top: 28px;
	text-align: center;
	font-size: 13px;
	color: #4a4a4a;
	line-height: 1.6;
}
.payinfo a {
	color: var(--brand);
	text-decoration: none;
}

/* ============================================================
   "Zahl einfach per Handyrechnung" badge + carriers
   ============================================================ */
.handy {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.handy__logo {
	width: 40%;
	max-width: 320px;
	height: auto;
	display: block;
}
.handy__carriers {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	max-width: 360px;
	padding: 0 4px;
}
.carrier {
	height: 22px;
	width: auto;
	max-width: 25%;
	object-fit: contain;
	display: block;
}
/* Per-carrier optical sizing — these logos have very different aspect ratios */
.carrier--telekom    { height: 18px; }
.carrier--vodafone   { height: 22px; }
.carrier--telefonica { height: 16px; }
.carrier--freenet    { height: 20px; }

/* ============================================================
   Top legal links
   ============================================================ */
.legal-links {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	list-style: none;
	margin-top: 30px;
	padding: 0 4px;
	gap: 8px;
}
.legal-links li { flex: 1; text-align: center; }
.legal-links a {
	color: var(--brand);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.3;
}

/* ============================================================
   WHY SUBSCRIBE — dark banner
   ============================================================ */
.why {
	margin-top: 36px;
	background: #1a1a1a;
	padding: 36px 22px;
}
.why__inner { max-width: 1100px; margin: 0 auto; }
.why__head {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 28px;
}
.why h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.4px;
}
.why h2 span { font-weight: 400; opacity: 0.9; }
.why__cta {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 16px 36px;
	border-radius: 4px;
	text-decoration: none;
	letter-spacing: 0.8px;
	text-align: center;
	transition: background 0.2s;
	box-shadow: 0 8px 22px -8px rgba(234, 91, 31, 0.6);
}
.why__cta:hover { background: var(--accent-2); }

.why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 18px;
}
.why__cell {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.why__ic {
	width: 36px; height: 36px;
	border: 1.5px solid var(--accent);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.why__ic svg { width: 22px; height: 22px; }
.why__cell p {
	color: #d8d8d8;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
}

@media (min-width: 720px) {
	.why__inner {
		display: grid;
		grid-template-columns: 1fr 1.6fr;
		gap: 40px;
		align-items: center;
	}
	.why__head { margin-bottom: 0; }
	.why__grid {
		grid-template-columns: 1fr 1fr;
		gap: 22px 30px;
	}
}

/* ============================================================
   3 image cards
   ============================================================ */
.cards {
	max-width: 1100px;
	margin: 40px auto 0;
	padding: 0 22px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 760px) {
	.cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.card { text-align: center; }
.card__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background: #d8d8d8 center/cover no-repeat;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}
.card__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25));
}
.card__img--mountain {
	background-image:
		linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.25)),
		url("../imgs/content_mountain.jpg");
}
.card__img--stretch {
	background-image:
		linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.25)),
		url("../imgs/content_stretch.jpg");
}
.card__img--yoga {
	background-image:
		linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.25)),
		url("../imgs/content_yoga.jpg");
}

.card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--ink);
	letter-spacing: -0.2px;
}
.card p {
	font-size: 13.5px;
	color: #4a4a4a;
	line-height: 1.55;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
	max-width: 1100px;
	margin: 60px auto 0;
	padding: 0 22px 30px;
}
.faq__title {
	font-size: 28px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 22px;
	color: var(--ink);
}
.faq__title b { font-weight: 800; }

.faq__item {
	border-bottom: 1px solid #e8e8e8;
}
.faq__item summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 4px;
	font-size: 15px;
	color: #2c2c2c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
	width: 22px; height: 22px;
	flex-shrink: 0;
	position: relative;
}
.faq__plus::before,
.faq__plus::after {
	content: "";
	position: absolute;
	background: var(--accent);
	border-radius: 1px;
	transition: transform 0.25s;
}
.faq__plus::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.faq__plus::after  { top: 2px; left: 10px; width: 2px; height: 18px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__body {
	padding: 0 4px 18px;
	color: #555;
	font-size: 13.5px;
	line-height: 1.55;
}
.faq__body a { color: var(--brand); }

/* ============================================================
   Site footer
   ============================================================ */
.site-footer {
	background: #fff;
	border-top: 1px solid #ececec;
	padding: 28px 22px 36px;
	text-align: center;
	margin-top: 20px;
}
.site-footer__logo {
	width: 140px;
	height: auto;
	margin: 0 auto 18px;
}
.site-footer__links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
}
.site-footer__links a {
	color: var(--brand);
	text-decoration: underline;
	font-weight: 500;
	font-size: 14px;
}

/* ============================================================
   Small adjustments
   ============================================================ */
@media (max-width: 380px) {
	.form-card { padding: 12px 18px 24px; }
	.form-card__heading { font-size: 15px; }
	.hero__img { max-height: 130px; }
	.hero__copy { font-size: 12px; }
	.field input, .field__prefix { font-size: 19px; }
}
