.decision-detox-page {
	--dd-creme: #fff5e1;
	--dd-lila: #4b0082;
	--dd-anthrazit: #2d2d2d;
	--dd-apricot: #ffd6a5;
	--dd-gelb: #fffacd;
	--dd-weiss: #fff;
	--dd-max: 1120px;
	--dd-radius: 28px;
	--dd-shadow: 0 24px 70px rgba(45, 45, 45, 0.13);
	--dd-soft: 0 12px 34px rgba(45, 45, 45, 0.09);
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(255, 214, 165, 0.55), transparent 32rem),
		radial-gradient(circle at 85% 8%, rgba(75, 0, 130, 0.13), transparent 28rem),
		linear-gradient(180deg, var(--dd-creme), var(--dd-weiss) 48%, var(--dd-creme));
	color: var(--dd-anthrazit);
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.decision-detox-page * {
	box-sizing: border-box;
}

.decision-detox-page a {
	color: inherit;
}

.dd-page {
	overflow: hidden;
}

.dd-shell {
	width: min(var(--dd-max), calc(100% - 36px));
	margin: 0 auto;
}

.dd-text {
	max-width: 760px;
}

.dd-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.dd-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 7px 12px;
	border: 1px solid rgba(75, 0, 130, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--dd-lila);
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0;
	text-transform: uppercase;
}

.dd-kicker:before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--dd-lila);
	box-shadow: 0 0 0 5px rgba(75, 0, 130, 0.09);
}

.dd-page h1,
.dd-page h2,
.dd-page h3 {
	margin: 0;
	color: var(--dd-anthrazit);
	line-height: 1.08;
	letter-spacing: 0;
}

.dd-page h1,
.dd-page h2,
.dd-deck-title,
.dd-message blockquote,
.dd-quote-big,
.dd-reflection,
.dd-price strong {
	font-family: Georgia, "Times New Roman", serif;
}

.dd-page h1 {
	font-size: clamp(2.65rem, 7vw, 5.35rem);
	max-width: 880px;
}

.dd-page h2 {
	font-size: clamp(2rem, 4.3vw, 3.35rem);
}

.dd-page h3 {
	font-size: 1.1rem;
	font-weight: 850;
}

.dd-page p {
	margin: 0;
}

.dd-lead {
	font-size: clamp(1.07rem, 2vw, 1.28rem);
	line-height: 1.7;
	color: rgba(45, 45, 45, 0.78);
}

.dd-section {
	padding: clamp(70px, 9vw, 118px) 0;
}

.dd-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.dd-btn-row.dd-center {
	justify-content: center;
}

.dd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 14px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 850;
	line-height: 1.1;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.dd-btn:hover,
.dd-btn:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.dd-btn-primary {
	background: var(--dd-lila);
	color: var(--dd-weiss);
	box-shadow: 0 15px 34px rgba(75, 0, 130, 0.22);
}

.dd-btn-primary:hover,
.dd-btn-primary:focus {
	background: var(--dd-anthrazit);
	color: var(--dd-weiss);
}

.dd-btn-secondary {
	background: var(--dd-weiss);
	color: var(--dd-anthrazit);
	border: 1px solid rgba(75, 0, 130, 0.15);
}

.dd-btn-secondary:hover,
.dd-btn-secondary:focus {
	background: var(--dd-gelb);
	color: var(--dd-anthrazit);
}

.dd-hero {
	position: relative;
	overflow: hidden;
	padding: 34px 0 88px;
}

.dd-hero:after {
	content: "";
	position: absolute;
	inset: auto -20% -18%;
	height: 220px;
	background: radial-gradient(ellipse at center, rgba(75, 0, 130, 0.11), transparent 68%);
	pointer-events: none;
}

.dd-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0 54px;
	position: relative;
	z-index: 2;
}

.dd-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 900;
	text-decoration: none;
}

.dd-logo:hover {
	text-decoration: none;
}

.dd-logo-mark {
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--dd-lila), var(--dd-anthrazit));
	display: grid;
	place-items: center;
	color: var(--dd-apricot);
	box-shadow: 0 13px 28px rgba(75, 0, 130, 0.17);
}

.dd-nav-links {
	display: none;
	gap: 20px;
	font-size: 0.94rem;
	color: rgba(45, 45, 45, 0.72);
}

.dd-nav-links a {
	text-decoration: none;
}

.dd-nav-links a:hover {
	color: var(--dd-lila);
}

.dd-hero-grid {
	display: grid;
	gap: 42px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.dd-hero-copy {
	display: grid;
	gap: 22px;
}

.dd-hero h1 span {
	color: var(--dd-lila);
}

.dd-hero-note {
	max-width: 650px;
	padding-left: 18px;
	border-left: 4px solid var(--dd-apricot);
	color: rgba(45, 45, 45, 0.68);
	font-style: italic;
}

.dd-pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.dd-pill-list li {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(45, 45, 45, 0.08);
	color: rgba(45, 45, 45, 0.76);
	font-size: 0.92rem;
}

.dd-product-visual {
	position: relative;
	min-height: 438px;
}

.dd-product-visual:before {
	content: "";
	position: absolute;
	inset: 26px 18px 24px 34px;
	border-radius: 38px;
	background: rgba(75, 0, 130, 0.11);
	transform: rotate(-4deg);
}

.dd-deck-card {
	position: relative;
	width: min(100%, 390px);
	margin: 0 auto;
	border-radius: 34px;
	background: var(--dd-weiss);
	box-shadow: var(--dd-shadow);
	border: 1px solid rgba(75, 0, 130, 0.13);
	overflow: hidden;
	transform: rotate(1.4deg);
}

.dd-deck-top {
	background: radial-gradient(circle at top right, rgba(255, 214, 165, 0.55), transparent 13rem), linear-gradient(145deg, var(--dd-lila), var(--dd-anthrazit));
	color: var(--dd-weiss);
	padding: 34px 30px 30px;
	min-height: 234px;
}

.dd-deck-label {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 0;
	color: rgba(255, 214, 165, 0.95);
	font-weight: 900;
}

.dd-deck-title {
	font-size: 2.85rem;
	line-height: 0.94;
	margin-top: 18px;
	letter-spacing: 0;
}

.dd-deck-sub {
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.45;
	font-size: 0.97rem;
}

.dd-deck-bottom {
	padding: 24px 30px 28px;
}

.dd-mini-scenario {
	background: var(--dd-gelb);
	border-radius: 20px;
	padding: 18px;
	border: 1px solid rgba(75, 0, 130, 0.1);
}

.dd-mini-scenario strong {
	color: var(--dd-lila);
}

.dd-deck-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
	margin-top: 16px;
}

.dd-stat {
	background: var(--dd-creme);
	border-radius: 16px;
	padding: 11px 8px;
	text-align: center;
}

.dd-stat b {
	display: block;
	color: var(--dd-lila);
	font-size: 1.1rem;
	line-height: 1;
}

.dd-stat span {
	display: block;
	margin-top: 5px;
	color: rgba(45, 45, 45, 0.64);
	font-size: 0.72rem;
	line-height: 1.2;
}

.dd-problem-strip {
	padding: 0 0 22px;
}

.dd-strip-card,
.dd-panel,
.dd-who-card,
.dd-scenario-card {
	border-radius: var(--dd-radius);
}

.dd-strip-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(75, 0, 130, 0.1);
	box-shadow: var(--dd-soft);
	padding: clamp(22px, 4vw, 34px);
}

.dd-strip-grid {
	display: grid;
	gap: 14px;
}

.dd-problem-item {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	padding: 16px;
	border-radius: 18px;
	background: var(--dd-creme);
}

.dd-problem-dot {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 12px;
	background: var(--dd-lila);
	color: var(--dd-weiss);
	display: grid;
	place-items: center;
	font-weight: 900;
	line-height: 1;
}

.dd-strip-close {
	margin-top: 20px;
	color: var(--dd-lila);
	font-weight: 850;
}

.dd-heading-row {
	display: grid;
	gap: 18px;
	margin-bottom: 34px;
}

.dd-panel {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(75, 0, 130, 0.1);
	box-shadow: var(--dd-soft);
	padding: clamp(24px, 4vw, 40px);
}

.dd-quote-panel {
	background: radial-gradient(circle at top right, rgba(255, 214, 165, 0.45), transparent 16rem), var(--dd-weiss);
}

.dd-quote-big {
	color: var(--dd-lila);
	font-size: clamp(1.4rem, 3vw, 2.1rem);
	line-height: 1.22;
}

.dd-check-grid,
.dd-card-grid {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.dd-check {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	padding: 18px;
	border-radius: 18px;
	background: var(--dd-weiss);
	border: 1px solid rgba(75, 0, 130, 0.09);
	box-shadow: 0 8px 20px rgba(45, 45, 45, 0.05);
}

.dd-check-icon {
	flex: 0 0 30px;
	height: 30px;
	border-radius: 999px;
	background: var(--dd-gelb);
	color: var(--dd-lila);
	display: grid;
	place-items: center;
	font-weight: 900;
}

.dd-feature-card {
	background: var(--dd-weiss);
	border: 1px solid rgba(75, 0, 130, 0.1);
	border-radius: 22px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(45, 45, 45, 0.06);
}

.dd-feature-card h3 {
	color: var(--dd-lila);
	margin-bottom: 10px;
}

.dd-feature-card.dd-wide {
	background: var(--dd-gelb);
}

.dd-example {
	background: radial-gradient(circle at 20% 0%, rgba(255, 214, 165, 0.55), transparent 20rem), linear-gradient(180deg, var(--dd-weiss), var(--dd-creme));
}

.dd-scenario-card {
	display: grid;
	gap: 24px;
	padding: clamp(24px, 5vw, 46px);
	background: var(--dd-gelb);
	border: 1px solid rgba(75, 0, 130, 0.14);
	box-shadow: var(--dd-shadow);
}

.dd-message {
	background: var(--dd-weiss);
	border-radius: 24px;
	padding: 22px;
	border-left: 7px solid var(--dd-lila);
}

.dd-message p:first-child {
	color: rgba(45, 45, 45, 0.62);
	font-size: 0.94rem;
	margin-bottom: 8px;
}

.dd-message blockquote {
	margin: 0;
	color: var(--dd-lila);
	font-size: clamp(1.45rem, 3vw, 2.1rem);
	line-height: 1.22;
}

.dd-options {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.dd-option {
	background: var(--dd-weiss);
	border: 1px solid rgba(45, 45, 45, 0.09);
	border-radius: 18px;
	padding: 17px;
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 12px;
	align-items: start;
}

.dd-letter {
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: var(--dd-lila);
	color: var(--dd-weiss);
	display: grid;
	place-items: center;
	font-weight: 900;
}

.dd-analysis {
	background: var(--dd-weiss);
	border-radius: 24px;
	padding: 22px;
	display: grid;
	gap: 10px;
}

.dd-analysis-row {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 10px;
}

.dd-analysis-row b {
	color: var(--dd-lila);
}

.dd-reflection {
	color: var(--dd-lila);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	line-height: 1.3;
	padding-top: 18px;
	border-top: 1px solid rgba(75, 0, 130, 0.16);
}

.dd-who-grid {
	display: grid;
	gap: 18px;
}

.dd-who-card {
	padding: clamp(24px, 4vw, 34px);
	box-shadow: var(--dd-soft);
}

.dd-who-yes {
	background: var(--dd-gelb);
	border: 1px solid rgba(75, 0, 130, 0.14);
}

.dd-who-no {
	background: var(--dd-weiss);
	border: 1px solid rgba(45, 45, 45, 0.1);
}

.dd-bullets {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: grid;
	gap: 12px;
}

.dd-bullets li {
	position: relative;
	padding-left: 28px;
}

.dd-bullets li:before {
	content: "->";
	position: absolute;
	left: 0;
	color: var(--dd-lila);
	font-weight: 900;
}

.dd-who-no .dd-bullets li:before {
	content: "x";
	color: rgba(45, 45, 45, 0.45);
}

.dd-pricing {
	background: radial-gradient(circle at 50% 0%, rgba(255, 214, 165, 0.25), transparent 30rem), linear-gradient(145deg, var(--dd-lila), var(--dd-anthrazit));
	color: var(--dd-weiss);
}

.dd-pricing h2,
.dd-pricing h3,
.dd-pricing p {
	color: var(--dd-weiss);
}

.dd-pricing .dd-lead,
.dd-final .dd-lead {
	color: rgba(255, 255, 255, 0.78);
	margin-top: 16px;
}

.dd-price-card {
	margin-top: 34px;
	display: grid;
	gap: 24px;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 34px;
	padding: clamp(24px, 4vw, 38px);
}

.dd-price-card h3 {
	font-size: 1.35rem;
	margin-bottom: 12px;
}

.dd-price-card p {
	color: rgba(255, 255, 255, 0.76);
}

.dd-btn-download {
	background: var(--dd-apricot);
	color: var(--dd-anthrazit);
}

.dd-btn-download:hover,
.dd-btn-download:focus {
	background: var(--dd-gelb);
	color: var(--dd-anthrazit);
}

.dd-price {
	background: var(--dd-weiss);
	color: var(--dd-lila);
	border-radius: 28px;
	padding: 26px;
	text-align: center;
}

.dd-price small {
	display: block;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.dd-price strong {
	display: block;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1;
}

.dd-price span {
	display: block;
	margin-top: 8px;
	color: rgba(45, 45, 45, 0.58);
	text-decoration: line-through;
}

.dd-faq-grid {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.dd-faq-item {
	background: var(--dd-weiss);
	border-radius: 20px;
	border: 1px solid rgba(75, 0, 130, 0.09);
	padding: 22px;
	box-shadow: 0 8px 20px rgba(45, 45, 45, 0.05);
}

.dd-faq-item h3 {
	color: var(--dd-lila);
	margin-bottom: 8px;
}

.dd-final {
	background: var(--dd-anthrazit);
	color: var(--dd-weiss);
}

.dd-final h2,
.dd-final p {
	color: var(--dd-weiss);
}

.dd-final .dd-btn-primary {
	background: var(--dd-apricot);
	color: var(--dd-anthrazit);
}

.dd-final .dd-btn-primary:hover {
	background: var(--dd-gelb);
	color: var(--dd-anthrazit);
}

.dd-disclaimer {
	padding: 34px 0;
	border-top: 1px solid rgba(45, 45, 45, 0.08);
	background: var(--dd-creme);
	text-align: center;
}

.dd-disclaimer p {
	max-width: 820px;
	margin: 0 auto;
	color: rgba(45, 45, 45, 0.6);
	font-size: 0.88rem;
	line-height: 1.65;
}

.dd-footer {
	padding: 24px 0;
	background: var(--dd-anthrazit);
	color: rgba(255, 255, 255, 0.62);
	text-align: center;
	font-size: 0.9rem;
}

.dd-footer a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: underline;
}

@media (min-width: 720px) {
	.dd-nav-links {
		display: flex;
	}

	.dd-hero-grid {
		grid-template-columns: 1.08fr 0.92fr;
	}

	.dd-strip-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.dd-heading-row {
		grid-template-columns: 0.95fr 1.05fr;
		align-items: end;
	}

	.dd-check-grid,
	.dd-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dd-feature-card.dd-wide {
		grid-column: 1 / -1;
	}

	.dd-options {
		grid-template-columns: repeat(2, 1fr);
	}

	.dd-who-grid {
		grid-template-columns: 1fr 1fr;
	}

	.dd-price-card {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.dd-faq-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.dd-shell {
		width: min(100% - 28px, var(--dd-max));
	}

	.dd-btn,
	.dd-btn-row {
		width: 100%;
	}

	.dd-product-visual {
		min-height: auto;
	}

	.dd-deck-card {
		transform: none;
	}

	.dd-deck-title {
		font-size: 2.35rem;
	}

	.dd-option {
		grid-template-columns: 34px 1fr;
	}

	.dd-letter {
		width: 34px;
		height: 34px;
	}
}
