/* ============================================================
   MERLIN-PROJECT LANDING — page-specific styles for the
   merlin-project landing page and related sub-pages.
   Lädt für: merlin-project, merlin-project-features,
             merlin-project-details, reviews
   Konsumiert: --pw-* aus global.css (keine eigenen Tokens).
   ============================================================ */
#content.mp-landing { padding: 0 !important; background: var(--pw-bg) !important; }

/* Fix: Hide secondaryheader + submenu via CSS (no flash) */
.mp-landing ~ .secondaryheader,
.mp-landing ~ .submenu,
body:has(.mp-landing) .secondaryheader,
body:has(.mp-landing) .submenu { display: none !important; }

.mp-section { padding: var(--pw-section-standard); position: relative; }
.mp-section--alt { background: var(--pw-bg-alt); }
.mp-pricing-section { padding-bottom: 56px; }

/* Dark section variant — adopts the closing-experience palette */
.mp-section--dark {
	position: relative;
	color: var(--pw-fg);
	background:
		radial-gradient(1000px 600px at 85% 0%, rgba(83,181,243,0.10), transparent 60%),
		radial-gradient(800px 500px at 10% 100%, rgba(249,157,27,0.08), transparent 60%),
		var(--pw-bg-dark-gradient);
}
#content.mp-landing .mp-section--dark .mp-section__title { color: var(--pw-fg); }
.mp-section--dark .mp-section__sub { color: var(--pw-fg-muted); }

/* Floating image utility — bridges section boundaries for visual rhythm */
.mp-float-img { position: absolute; pointer-events: none; z-index: 20; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5)); }
.mp-float-img img { width: 100%; height: auto; display: block; }
.mp-float-img--bottom { bottom: -120px; right: 5%; width: min(640px, 50vw); }
.mp-float-img--top { top: -120px; left: 5%; width: min(640px, 50vw); }
@media (max-width: 1024px) { .mp-float-img { display: none; } }

/* ---- PROBLEM / SOLUTION (dark, interactive) ---- */
.mp-problem { padding-bottom: var(--pw-space-3xl); overflow: hidden; }
.mp-problem__eyebrow { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pw-accent); margin: 0 0 14px; }
#content.mp-landing .mp-problem__title { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; max-width: 900px; margin: 0 auto 20px; transition: opacity 0.1s ease; }
#content.mp-landing .mp-problem__title span { display: block; }
.mp-problem .mp-problem__intro { max-width: 720px; margin-left: auto; margin-right: auto; transition: opacity 0.1s ease; }

/* Interactive panel: buttons centered, screenshot below */
.mp-problem__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--pw-space-2xl);
	max-width: 1100px;
	margin: 0 auto;
}
.mp-problem__buttons {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
	width: 100%;
}
.mp-problem__btn {
	display: flex; align-items: center; gap: var(--pw-space-sm);
	text-align: center; cursor: pointer;
	padding: 14px 22px;
	background: rgba(255,255,255,0.025);
	border: 1px solid var(--pw-line);
	border-radius: var(--pw-radius-md);
	color: var(--pw-fg);
	font-family: inherit;
	transition: background 0.25s, border-color 0.25s, transform 0.25s;
	position: relative;
	white-space: nowrap;
}
.mp-problem__btn:hover,
.mp-problem__btn:focus-visible {
	background: rgba(255,255,255,0.05);
	border-color: rgba(83,181,243,0.35);
	outline: none;
	transform: translateY(-2px);
}
.mp-problem__btn.is-active {
	background: rgba(249,157,27,0.08);
	border-color: rgba(249,157,27,0.55);
	box-shadow: 0 10px 30px rgba(249,157,27,0.12);
}
.mp-problem__btn-label {
	display: block;
	font-size: 15px; font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--pw-fg);
}
.mp-problem__btn-detail {
	display: none;
}
.mp-problem__btn-arrow {
	display: none;
}

/* Screenshot display — centered below buttons, embedded in section */
.mp-problem__display {
	position: relative;
	width: 100%;
	max-width: 900px;
	aspect-ratio: 16 / 10;
	isolation: isolate;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.mp-problem__shot {
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%) translateY(8px) scale(0.99) translateZ(0);
	width: auto;
	height: 100%;
	max-width: none;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: opacity, transform;
}
.mp-problem__shot.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s;
	transform: translateX(-50%) translateY(0) scale(1) translateZ(0);
	filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}

/* Tablet & mobile: fit to width instead of height, no overflow */
@media (max-width: 1024px) {
	.mp-problem__shot {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 600px) {
	.mp-problem__btn { padding: 10px var(--pw-space-md); }
	.mp-problem__btn-label { font-size: 13px; }
}

/* ---- MS PROJECT COMPAT mini block (light) ---- */
.mp-compat { padding: 64px 0; background: var(--pw-bg); border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); }
@media (prefers-color-scheme: dark) { .mp-compat { border-color: rgba(255,255,255,0.06); } }
.mp-compat__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.mp-compat__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pw-brand); margin: 0 0 12px; }
.mp-compat__title { font-size: 26px; font-weight: 700; color: var(--pw-text); margin: 0 0 14px; letter-spacing: -0.02em; }
@media (prefers-color-scheme: dark) { .mp-compat__title { color: var(--pw-fg); } }
.mp-compat__text { font-size: 16px; line-height: 1.6; color: var(--pw-text-secondary); margin: 0 0 28px; }
@media (prefers-color-scheme: dark) { .mp-compat__text { color: var(--pw-text-secondary); } }
.mp-compat__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 var(--pw-space-lg); }
.mp-compat__badge { display: inline-block; padding: var(--pw-space-sm) var(--pw-space-md); border-radius: var(--pw-radius-pill); border: 1px solid var(--pw-border); background: #fff; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 600; color: var(--pw-text); }
.mp-compat__badge--primary { background: #1d1d1f; color: #fff; border-color: var(--pw-text); }
@media (prefers-color-scheme: dark) {
	.mp-compat__badge { background: var(--pw-dark-2); border-color: #333; color: var(--pw-fg); }
	.mp-compat__badge--primary { background: var(--pw-brand); border-color: var(--pw-brand); color: #fff; }
}
.mp-compat__link { display: inline-block; font-size: 15px; font-weight: 600; color: var(--pw-link); }
.mp-compat__link:hover { color: #1c5f8f; }
@media (prefers-color-scheme: dark) { .mp-compat__link { color: #53b5f3; } .mp-compat__link:hover { color: #7cc4f5; } }


.mp-section__title { text-align: center; font-size: 32px; font-weight: 700; color: var(--pw-text); margin: 0 0 var(--pw-space-sm); letter-spacing: -0.025em; }
.mp-section__sub { text-align: center; font-size: 17px; color: var(--pw-text-secondary); margin: 0 0 var(--pw-space-lg); }
@media (prefers-color-scheme: dark) { .mp-section__title { color: var(--pw-fg); } .mp-section__sub { color: var(--pw-text-secondary); } }

/* ---- FAQ ---- */
.mp-faq { display: flex; flex-direction: column; gap: 12px; }
.mp-faq__item { background: #fff; border: 1px solid var(--pw-border); border-radius: var(--pw-radius-md); padding: 0; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.mp-faq__item[open] { border-color: var(--pw-border-light); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.mp-faq__q { list-style: none; cursor: pointer; padding: 22px 56px 22px 28px; font-size: 17px; font-weight: 600; color: var(--pw-text); position: relative; user-select: none; }
.mp-faq__q::-webkit-details-marker { display: none; }
.mp-faq__q::after { content: ''; position: absolute; right: 28px; top: 50%; width: 10px; height: 10px; border-right: 2px solid #8e8e93; border-bottom: 2px solid #8e8e93; transform: translateY(-70%) rotate(45deg); transition: transform 0.2s; }
.mp-faq__item[open] .mp-faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.mp-faq__q:hover { color: var(--pw-brand); }
.mp-faq__a { padding: 0 28px var(--pw-space-lg); color: #555; font-size: 16px; line-height: 1.65; }
.mp-faq__a p { margin: 0 0 12px; }
.mp-faq__a p:last-child { margin-bottom: 0; }
.mp-faq__a a { color: var(--pw-link); border-bottom: 1px solid rgba(42,127,191,0.3); transition: border-color 0.2s; }
.mp-faq__a a:hover { border-bottom-color: var(--pw-link); }
.mp-faq__a code { background: var(--pw-bg-alt); padding: 1px 6px; border-radius: 4px; font-size: 14px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
@media (prefers-color-scheme: dark) {
	.mp-faq__item { background: var(--pw-dark-2); border-color: var(--pw-dark-3); }
	.mp-faq__item[open] { border-color: #333; box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
	.mp-faq__q { color: var(--pw-fg); }
	.mp-faq__q::after { border-color: var(--pw-text-secondary); }
	.mp-faq__a { color: var(--pw-text-secondary); }
	.mp-faq__a code { background: var(--pw-dark-3); }
}
@media (max-width: 640px) {
	.mp-faq__q { padding: 18px var(--pw-space-2xl) 18px 20px; font-size: 16px; }
	.mp-faq__q::after { right: 20px; }
	.mp-faq__a { padding: 0 20px 20px; font-size: 15px; }
}

/* ---- HERO ---- */
.mp-hero { background: radial-gradient(1000px 600px at 85% 0%, rgba(83,181,243,0.10), transparent 60%), radial-gradient(800px 500px at 10% 100%, rgba(249,157,27,0.08), transparent 60%), linear-gradient(180deg, #0b1020 0%, #0e1628 40%, #111a33 100%); color: #fff; padding: var(--pw-space-3xl) 0 var(--pw-space-2xl); }
#content.mp-landing--express .mp-hero { background: linear-gradient(135deg, #0a2814 0%, #1a4a2d 50%, #0f3820 100%); }
.mp-landing--express .mp-hero__eyebrow { color: #4ade80; }
.mp-hero__video { margin-bottom: var(--pw-space-2xl); text-align: center; }
.mp-hero__video video { max-width: 100%; width: auto; height: auto; border-radius: var(--pw-radius-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: inline-block; }
.mp-hero__content { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.mp-hero__eyebrow { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #53b5f3; margin: 0 0 var(--pw-space-md); }
#content.mp-landing .mp-hero__title { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: #fff; margin: 0 0 20px; }
.mp-hero__subtitle { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.7); margin: 0 0 28px; }
.mp-hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: var(--pw-space-md); }
.mp-hero__trust { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
/* ---- RATINGS STRIP ---- */
.mp-native { background: linear-gradient(135deg, rgba(83,181,243,0.06) 0%, rgba(249,157,27,0.04) 100%), linear-gradient(180deg, #0e1628 0%, #111a33 100%); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.mp-native__inner { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.mp-native__rating { display: flex; align-items: center; gap: 12px; }
.mp-native__score { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.mp-native__stars { color: #f5a623; font-size: 18px; letter-spacing: 3px; }
.mp-native__source { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }
@media (max-width: 600px) { .mp-native__inner { gap: var(--pw-space-xl); } .mp-native__score { font-size: 22px; } .mp-native__stars { font-size: 14px; } .mp-native__source { font-size: 12px; } }

/* ---- LOGO GRID ---- */
.mp-logos { background: var(--pw-bg-alt); }
#content.mp-landing .mp-logos .mp-section__title { color: var(--pw-text); margin: 0 0 64px; }
.mp-logos__grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 64px 72px; margin: 0 auto; padding: 0 var(--pw-space-xl); box-sizing: border-box; width: 100%; max-width: 1100px; }
.mp-logos__grid .mp-logos__logo { flex: 0 0 auto; display: inline-block; width: 150px; height: 44px; -webkit-mask: var(--logo-src) center / contain no-repeat; mask: var(--logo-src) center / contain no-repeat; -webkit-mask-mode: alpha; mask-mode: alpha; background-color: #8e8e93; }
.mp-logos__grid--featured { margin-top: 64px; }
.mp-logos__grid--featured .mp-logos__logo { width: 188px; height: 55px; }
@media (max-width: 720px) { .mp-logos__grid--featured { margin-top: 44px; } }
@media (max-width: 960px) { .mp-logos__grid { gap: var(--pw-space-2xl) var(--pw-space-2xl); } }
@media (max-width: 720px) { .mp-logos__grid { gap: 44px 40px; } }
@media (max-width: 480px) { .mp-logos__grid { padding: 0 var(--pw-space-md); gap: 36px var(--pw-space-xl); } }
@media (prefers-color-scheme: dark) {
	#content.mp-landing .mp-logos .mp-section__title { color: var(--pw-fg); }
	.mp-logos__grid .mp-logos__logo { background-color: var(--pw-text-secondary); }
}
.mp-logos__stats { text-align: center; font-size: 17px; color: var(--pw-text-secondary); margin: -48px 0 56px; }
.mp-logos__stats strong { color: var(--pw-text); font-weight: 700; }
@media (prefers-color-scheme: dark) {
	.mp-logos__stats { color: var(--pw-text-secondary); }
	.mp-logos__stats strong { color: var(--pw-fg); }
}

/* ---- REVIEW RATINGS ---- */
.mp-reviews__ratings { display: flex; gap: 0; justify-content: center; align-items: stretch; flex-wrap: wrap; margin: -16px 0 56px; }
.mp-rating { display: flex; flex-direction: column; align-items: center; padding: 0 64px; position: relative; }
.mp-rating + .mp-rating::before { content: ''; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--pw-border-light); }
.mp-rating__score { font-size: 56px; font-weight: 700; color: var(--pw-text); letter-spacing: -0.03em; line-height: 1; }
.mp-rating__stars { color: #f5a623; font-size: 20px; letter-spacing: 4px; margin: 12px 0 10px; }
.mp-rating__label { font-size: 15px; color: var(--pw-text); font-weight: 500; }
@media (prefers-color-scheme: dark) {
	.mp-rating__score { color: var(--pw-fg); }
	.mp-rating__label { color: var(--pw-fg); }
	.mp-rating + .mp-rating::before { background: #333; }
}

/* ---- HIGHLIGHT PILLS (value props inline) ---- */
.mp-section__sub--meta { font-size: 14px; color: var(--pw-text-muted); margin: -32px 0 40px; letter-spacing: 0.02em; }
@media (prefers-color-scheme: dark) { .mp-section__sub--meta { color: var(--pw-text-secondary); } }

/* ---- FEATURE TABS ---- */
.mp-tabs { display: flex; justify-content: center; gap: var(--pw-space-xs); margin-bottom: var(--pw-space-xl); flex-wrap: wrap; }
.mp-tab { padding: 10px 20px; font-size: 14px; font-weight: 600; border: 1px solid var(--pw-border); background: #fff; color: var(--pw-text-secondary); border-radius: 24px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.mp-tab:hover { border-color: var(--pw-brand); color: var(--pw-brand); }
.mp-tab.active { background: var(--pw-brand); border-color: var(--pw-brand); color: #fff; }
@media (prefers-color-scheme: dark) { .mp-tab { background: var(--pw-dark-2); border-color: #333; color: var(--pw-text-secondary); } .mp-tab:hover { border-color: var(--pw-brand); color: var(--pw-brand); } .mp-tab.active { background: var(--pw-brand); border-color: var(--pw-brand); color: #fff; } }

/* Panels keep a fixed min-height across all tabs so the surrounding section
   never jumps. Text column is centered vertically inside the full panel height,
   image column is also center-aligned — both cells span the same box so the
   left-hand copy stays anchored to the exact same position regardless of which
   illustration is active. */
.mp-panel { display: none; grid-template-columns: 0.85fr 1.4fr; gap: 56px; align-items: center; padding: 0; min-height: 360px; }
.mp-panel.active { display: grid; }
.mp-panel__text { display: flex; flex-direction: column; justify-content: center; min-height: 340px; }
.mp-panel__text h3 { font-size: 28px; font-weight: 700; color: var(--pw-text); margin: 0 0 20px; letter-spacing: -0.02em; }
.mp-panel__text p { font-size: 17px; line-height: 1.65; color: var(--pw-text-secondary); margin: 0 0 28px; }
.mp-panel__img { display: flex; justify-content: center; align-items: center; min-height: 340px; }
.mp-illu { width: 100%; max-width: 760px; height: auto; display: block; }

/* ---- MINDMAP ANIMATION ---- */
.mp-illu.mm .mm-center,
.mp-illu.mm .mm-card,
.mp-illu.mm .mm-sub-node-1,
.mp-illu.mm .mm-sub-node-2,
.mp-illu.mm .mm-sub-node-3,
.mp-illu.mm .mm-card-2 { opacity: 0; transform-box: fill-box; transform-origin: center; }
.mp-illu.mm .mm-card,
.mp-illu.mm .mm-card-2 { transform: scale(0.7); }
.mp-illu.mm .mm-sub-node-1,
.mp-illu.mm .mm-sub-node-2,
.mp-illu.mm .mm-sub-node-3 { transform: translateX(-20px); }
.mp-illu.mm .mm-branch,
.mp-illu.mm .mm-branch-2,
.mp-illu.mm .mm-sub-branch-1,
.mp-illu.mm .mm-sub-branch-2,
.mp-illu.mm .mm-sub-branch-3 { stroke-dasharray: 100; stroke-dashoffset: 100; }

/* Mindmap timing: each branch draws 400ms, then 200ms pause, next branch starts
   → 600ms start-to-start delta between all 5 branches (1 main, 3 sub, 1 sibling).
   Cards/nodes/typewriter are anchored to their own branch-end timestamps. */
.mp-illu.mm.play .mm-center       { animation: mmPop  350ms 0ms    forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.mp-illu.mm.play .mm-branch       { animation: mmDraw 400ms 200ms  forwards ease-out; }
.mp-illu.mm.play .mm-card         { animation: mmPop  350ms 600ms  forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.mp-illu.mm.play .mm-sub-branch-1 { animation: mmDraw 400ms 800ms  forwards ease-out; }
.mp-illu.mm.play .mm-sub-node-1   { animation: mmSlide 280ms 1200ms forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.mp-illu.mm.play .mm-sub-branch-2 { animation: mmDraw 400ms 1400ms forwards ease-out; }
.mp-illu.mm.play .mm-sub-node-2   { animation: mmSlide 280ms 1800ms forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.mp-illu.mm.play .mm-sub-branch-3 { animation: mmDraw 400ms 2000ms forwards ease-out; }
.mp-illu.mm.play .mm-sub-node-3   { animation: mmSlide 280ms 2400ms forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.mp-illu.mm.play .mm-branch-2     { animation: mmDraw 400ms 2600ms forwards ease-out; }
.mp-illu.mm.play .mm-card-2       { animation: mmPop  350ms 3000ms forwards cubic-bezier(0.2, 0.8, 0.2, 1); }

@keyframes mmFade { to { opacity: 1; } }
@keyframes mmPop { to { opacity: 1; transform: scale(1); } }
@keyframes mmDraw { to { stroke-dashoffset: 0; } }
@keyframes mmSlide { to { opacity: 1; transform: translateX(0); } }

/* ---- GANTT ANIMATION ---- */
.mp-illu.gt .gt-task-2 { transform: translateX(0); }
.mp-illu.gt .gt-milestone { transform: translate(89px, 216px); }
.mp-illu.gt .gt-dep { stroke-dasharray: 100; stroke-dashoffset: 100; }
.mp-illu.gt .gt-arrow { opacity: 0; }
.mp-illu.gt.play .gt-dep-1 { animation: gtDraw 1200ms 0ms forwards ease-out; }
.mp-illu.gt.play .gt-arrow-1 { animation: gtFade 200ms 1200ms forwards ease-out; }
.mp-illu.gt.play .gt-task-2 { animation: gtTask2Slide 1200ms 0ms forwards cubic-bezier(0.4,0.0,0.2,1); }
.mp-illu.gt.play .gt-dep-2 { animation: gtDraw 1200ms 0ms forwards ease-out; }
.mp-illu.gt.play .gt-arrow-2 { animation: gtFade 200ms 1200ms forwards ease-out; }
.mp-illu.gt.play .gt-milestone { animation: gtMsSlide 1200ms 0ms forwards cubic-bezier(0.4,0.0,0.2,1); }
@keyframes gtFade { to { opacity: 1; } }
@keyframes gtDraw { to { stroke-dashoffset: 0; } }
@keyframes gtTask2Slide { to { transform: translateX(120px); } }
@keyframes gtMsSlide { to { transform: translate(320px, 216px); } }

/* ---- KANBAN ANIMATION ---- */
.mp-illu.kb .kb-headers,
.mp-illu.kb .kb-card { opacity: 0; }
.mp-illu.kb .kb-card-2 { transform: translateY(160px); }
.mp-illu.kb .kb-card-3 { transform: translate(-230px, 102px); }
.mp-illu.kb .kb-card-3 .kb-check { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0.4); }
.mp-illu.kb.play .kb-headers { animation: kbFade 300ms 0ms forwards ease-out; }
.mp-illu.kb.play .kb-card-1 { animation: kbFade 400ms 300ms forwards ease-out; }
.mp-illu.kb.play .kb-card-2 { animation: kbCardSlideUp 900ms 1600ms forwards cubic-bezier(0.4,0,0.2,1); }
.mp-illu.kb.play .kb-card-3 { animation: kbFadeIn 400ms 900ms forwards ease-out, kbDrag 900ms 1600ms forwards cubic-bezier(0.4,0,0.2,1); }
.mp-illu.kb.play .kb-cursor { animation: kbFadeOut 200ms 2500ms forwards ease-out; }
.mp-illu.kb.play .kb-card-3 .kb-check { animation: kbPop 400ms 2600ms forwards cubic-bezier(0.2,0.8,0.2,1); }
@keyframes kbFade { to { opacity: 1; } }
@keyframes kbFadeIn { to { opacity: 1; } }
@keyframes kbDrag { to { transform: translate(0, 0); } }
@keyframes kbCardSlideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes kbFadeOut { to { opacity: 0; } }
@keyframes kbPop { 0% { opacity: 0; transform: scale(0.4); } 60% { transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }

/* ---- RESOURCES ANIMATION ---- */
.mp-illu.rs .rs-bar { transform: scaleY(0); transform-box: fill-box; transform-origin: bottom; }
.mp-illu.rs.play .rs-bar-1 { animation: rsBarGrow 450ms 0ms   forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.rs.play .rs-bar-2 { animation: rsBarGrow 450ms 80ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.rs.play .rs-bar-3 { animation: rsBarGrow 450ms 160ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.rs.play .rs-bar-4 { animation: rsBarGrow 450ms 240ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.rs.play .rs-bar-5 { animation: rsBarGrow 450ms 320ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.rs.play .rs-bar-6 { animation: rsBarGrow 450ms 400ms forwards cubic-bezier(0.2,0.8,0.2,1); }
@keyframes rsBarGrow { to { transform: scaleY(1); } }

/* ---- EXPORT ANIMATION ---- */
.mp-illu.ex .ex-doc { opacity: 0; transform: scale(0.9); transform-box: fill-box; transform-origin: center; }
.mp-illu.ex .ex-line { stroke-dasharray: 100; stroke-dashoffset: 100; }
.mp-illu.ex .ex-badge { opacity: 0; transform: scale(0.7); transform-box: fill-box; transform-origin: center; }
.mp-illu.ex.play .ex-doc { animation: exPop 500ms 0ms forwards cubic-bezier(0.2,0.8,0.2,1); }
/* clockwise sequence from MindManager: 7→8→9→10→11→12→6→5→4→3→2→1
   First pair starts at 300 ms (previously 600 ms) — halved wait after doc pop.
   80 ms stagger between consecutive lines, 160 ms between line and its badge. */
.mp-illu.ex.play .ex-line-7  { animation: exDraw 220ms 300ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-7 { animation: exPop 260ms 460ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-8  { animation: exDraw 220ms 380ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-8 { animation: exPop 260ms 540ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-9  { animation: exDraw 220ms 460ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-9 { animation: exPop 260ms 620ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-10 { animation: exDraw 220ms 540ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-10 { animation: exPop 260ms 700ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-11 { animation: exDraw 220ms 620ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-11 { animation: exPop 260ms 780ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-12 { animation: exDraw 220ms 700ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-12 { animation: exPop 260ms 860ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-6  { animation: exDraw 220ms 780ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-6 { animation: exPop 260ms 940ms  forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-5  { animation: exDraw 220ms 860ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-5 { animation: exPop 260ms 1020ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-4  { animation: exDraw 220ms 940ms  forwards ease-out; }
.mp-illu.ex.play .ex-badge-4 { animation: exPop 260ms 1100ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-3  { animation: exDraw 220ms 1020ms forwards ease-out; }
.mp-illu.ex.play .ex-badge-3 { animation: exPop 260ms 1180ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-2  { animation: exDraw 220ms 1100ms forwards ease-out; }
.mp-illu.ex.play .ex-badge-2 { animation: exPop 260ms 1260ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.ex.play .ex-line-1  { animation: exDraw 220ms 1180ms forwards ease-out; }
.mp-illu.ex.play .ex-badge-1 { animation: exPop 260ms 1340ms forwards cubic-bezier(0.2,0.8,0.2,1); }
@keyframes exPop { to { opacity: 1; transform: scale(1); } }
@keyframes exDraw { to { stroke-dashoffset: 0; } }

/* ---- EXPRESS RESOURCES ANIMATION (Drag & Drop einer Ressource auf einen Vorgang) ----
   Sequenz: (1) Drei Gantt-Balken faden links->rechts ein.
            (2) Person-Card fliegt smooth in einer kontinuierlichen Bewegung
                aus dem Off auf Bar 1 (ease-out, 1500ms).
            (3) Bar 1 pulst kurz blau (Drop-Feedback).
            (4) Card fadet aus.
            (5) Person-Icon + Kosten erscheinen rechts NEBEN Bar 1.
            (6) Bar 2 bekommt 2 Personen + Kosten.
            (7) Bar 3 bekommt 3 Personen + Kosten.
*/
.mp-illu.xr .rd-task   { opacity: 0; transform-box: fill-box; transform: translateX(-12px); }
.mp-illu.xr .rd-card   { opacity: 0; transform-box: fill-box; transform: translate(220px, -110px); }
.mp-illu.xr .rd-pulse  { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(1); }
.mp-illu.xr .rd-result { opacity: 0; transform-box: fill-box; transform: translateX(6px); }

.mp-illu.xr.play .rd-task-1 { animation: rdTaskIn 320ms    0ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.xr.play .rd-task-2 { animation: rdTaskIn 320ms  120ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.xr.play .rd-task-3 { animation: rdTaskIn 320ms  240ms forwards cubic-bezier(0.2,0.8,0.2,1); }

/* Card: zwei parallele Animationen — eine fuer Slide (lang, smooth) und
   eine fuer den Fade-Out nach dem Drop. Transform und Opacity laufen damit
   monoton ohne Knicke. */
.mp-illu.xr.play .rd-card   {
	animation:
		rdCardSlide 1500ms  700ms forwards cubic-bezier(0.22, 0.61, 0.36, 1),
		rdCardFade   400ms  700ms forwards ease-out,
		rdCardOut    300ms 2350ms forwards ease-in;
}

.mp-illu.xr.play .rd-pulse    { animation: rdPulse 500ms 2150ms forwards ease-out; }
.mp-illu.xr.play .rd-result-1 { animation: rdResultIn 320ms 2650ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.xr.play .rd-result-2 { animation: rdResultIn 320ms 2950ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.xr.play .rd-result-3 { animation: rdResultIn 320ms 3250ms forwards cubic-bezier(0.2,0.8,0.2,1); }

@keyframes rdTaskIn   { to { opacity: 1; transform: translateX(0); } }
@keyframes rdCardSlide { to { transform: translate(0, 0); } }
@keyframes rdCardFade  { to { opacity: 1; } }
@keyframes rdCardOut   { to { opacity: 0; } }
@keyframes rdPulse {
	0%   { opacity: 0;   transform: scale(1); }
	40%  { opacity: 0.9; transform: scale(1.08); }
	100% { opacity: 0;   transform: scale(1); }
}
@keyframes rdResultIn { to { opacity: 1; transform: translateX(0); } }

/* ---- ATTACHMENTS ANIMATION (Express Tab 4) ----
   Sequenz: (1) Anhang-Toolbar oben mit allen 6 Typen fadet ein.
            (2) Drei Vorgangsbalken faden links rein (Resources-Layout).
            (3) Sechs Icons fliegen sequenziell aus der Toolbar auf die
                drei Vorgangsbalken (2 pro Vorgang). Pulse-Feedback pro
                Drop, danach erscheint Icon + Label rechts neben dem Bar.
*/

/* Initial-States */
.mp-illu.at .at-toolbar-bg { opacity: 0; transform-box: fill-box; transform-origin: center; transform: translateY(-6px); }
.mp-illu.at .at-tool       { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(0.7); }
.mp-illu.at .at-task       { opacity: 0; transform-box: fill-box; transform: translateX(-12px); }
.mp-illu.at .at-pulse      { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(1); }
.mp-illu.at .at-mark       { opacity: 0; transform-box: fill-box; transform: translateX(6px); }
.mp-illu.at .at-fly-1      { opacity: 0; transform: translate(88px,  29px) scale(0.95); }
.mp-illu.at .at-fly-2      { opacity: 0; transform: translate(148px, 29px) scale(0.95); }
.mp-illu.at .at-fly-3      { opacity: 0; transform: translate(208px, 29px) scale(0.95); }
.mp-illu.at .at-fly-4      { opacity: 0; transform: translate(268px, 29px) scale(0.95); }
.mp-illu.at .at-fly-5      { opacity: 0; transform: translate(328px, 29px) scale(0.95); }
.mp-illu.at .at-fly-6      { opacity: 0; transform: translate(388px, 29px) scale(0.95); }

/* Theme-Farben (Light) */
.mp-illu.at .at-toolbar-bg { fill: #fff; stroke: #e5e5ea; stroke-width: 1.2; }
.mp-illu.at .at-fly-bg     { fill: #fff; stroke: var(--pw-link); stroke-width: 1.2; }

/* SF-Symbol-Icons sind im PHP-Helper bereits VORGEFAERBT (Light + Dark
   Varianten pro Icon). CSS toggelt nur noch zwischen den beiden via
   display. KEIN CSS-filter — der wirkt auf SVG <image> mit data-URI in
   diesem Setup nicht zuverlaessig. */
.mp-illu.at .at-icon-d { display: none; }

/* Intro: Toolbar + Tools + Tasks */
.mp-illu.at.play .at-toolbar-bg { animation: atToolbarIn 320ms    0ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-1     { animation: atToolPop   280ms  120ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-2     { animation: atToolPop   280ms  170ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-3     { animation: atToolPop   280ms  220ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-4     { animation: atToolPop   280ms  270ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-5     { animation: atToolPop   280ms  320ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-tool-6     { animation: atToolPop   280ms  370ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-task-1     { animation: atTaskIn 320ms  600ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-task-2     { animation: atTaskIn 320ms  720ms forwards cubic-bezier(0.2,0.8,0.2,1); }
.mp-illu.at.play .at-task-3     { animation: atTaskIn 320ms  840ms forwards cubic-bezier(0.2,0.8,0.2,1); }

/* Sechs Drops: Fly (500ms slide + 100ms fade-out) + Pulse + Marker.
   Drop alle 600ms, Slide-Ende deckt sich mit Pulse-Peak (cubic-bezier-
   ease-out -> Pill ist optisch frueh am Ziel). */
.mp-illu.at.play .at-fly-1   { animation: atFly1  600ms 1100ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-1 { animation: atPulse 300ms 1500ms forwards ease-out; }
.mp-illu.at.play .at-mark-1  { animation: atMarkIn 300ms 1600ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-fly-2   { animation: atFly2  600ms 1700ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-2 { animation: atPulse 300ms 2100ms forwards ease-out; }
.mp-illu.at.play .at-mark-2  { animation: atMarkIn 300ms 2200ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-fly-3   { animation: atFly3  600ms 2300ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-3 { animation: atPulse 300ms 2700ms forwards ease-out; }
.mp-illu.at.play .at-mark-3  { animation: atMarkIn 300ms 2800ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-fly-4   { animation: atFly4  600ms 2900ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-4 { animation: atPulse 300ms 3300ms forwards ease-out; }
.mp-illu.at.play .at-mark-4  { animation: atMarkIn 300ms 3400ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-fly-5   { animation: atFly5  600ms 3500ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-5 { animation: atPulse 300ms 3900ms forwards ease-out; }
.mp-illu.at.play .at-mark-5  { animation: atMarkIn 300ms 4000ms forwards cubic-bezier(0.2,0.8,0.2,1); }

.mp-illu.at.play .at-fly-6   { animation: atFly6  600ms 4100ms forwards cubic-bezier(0.22, 0.61, 0.36, 1); }
.mp-illu.at.play .at-pulse-6 { animation: atPulse 300ms 4500ms forwards ease-out; }
.mp-illu.at.play .at-mark-6  { animation: atMarkIn 300ms 4600ms forwards cubic-bezier(0.2,0.8,0.2,1); }

@keyframes atToolbarIn { to { opacity: 1; transform: translateY(0); } }
@keyframes atToolPop   { to { opacity: 1; transform: scale(1); } }
@keyframes atTaskIn    { to { opacity: 1; transform: translateX(0); } }
@keyframes atMarkIn    { to { opacity: 1; transform: translateX(0); } }

/* Fly-Keyframes: Lift (Scale up am Start), Slide zum Ziel, Fade-out am Ende
   damit der Marker rechts uebernimmt. */
@keyframes atFly1 {
	0%   { opacity: 0; transform: translate(88px,  29px) scale(0.95); }
	10%  { opacity: 1; transform: translate(88px,  29px) scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 79px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 79px) scale(1);    }
}
@keyframes atFly2 {
	0%   { opacity: 0; transform: translate(148px, 29px) scale(0.95); }
	10%  { opacity: 1; transform: translate(148px, 29px) scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 79px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 79px) scale(1);    }
}
@keyframes atFly3 {
	0%   { opacity: 0; transform: translate(208px, 29px)  scale(0.95); }
	10%  { opacity: 1; transform: translate(208px, 29px)  scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 133px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 133px) scale(1);    }
}
@keyframes atFly4 {
	0%   { opacity: 0; transform: translate(268px, 29px)  scale(0.95); }
	10%  { opacity: 1; transform: translate(268px, 29px)  scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 133px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 133px) scale(1);    }
}
@keyframes atFly5 {
	0%   { opacity: 0; transform: translate(328px, 29px)  scale(0.95); }
	10%  { opacity: 1; transform: translate(328px, 29px)  scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 187px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 187px) scale(1);    }
}
@keyframes atFly6 {
	0%   { opacity: 0; transform: translate(388px, 29px)  scale(0.95); }
	10%  { opacity: 1; transform: translate(388px, 29px)  scale(1.1);  }
	80%  { opacity: 1; transform: translate(148px, 187px) scale(1);    }
	100% { opacity: 0; transform: translate(148px, 187px) scale(1);    }
}
@keyframes atPulse {
	0%   { opacity: 0;   transform: scale(1);    }
	40%  { opacity: 0.9; transform: scale(1.08); }
	100% { opacity: 0;   transform: scale(1);    }
}

@media (prefers-color-scheme: dark) {
	.mp-illu.at .at-toolbar-bg { fill: #1c1c1e; stroke: #3a3a3c; }
	.mp-illu.at .at-fly-bg     { fill: #1c1c1e; stroke: #53b5f3; }
	.mp-illu.at .at-mark text  { fill: var(--pw-text-secondary); }
	/* Im Dark Mode: Light-Variant verstecken, Dark-Variant zeigen. */
	.mp-illu.at .at-icon-l { display: none; }
	.mp-illu.at .at-icon-d { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
	.mp-illu.mm .mm-center,
	.mp-illu.mm .mm-card,
	.mp-illu.mm .mm-sub-node-1,
	.mp-illu.mm .mm-sub-node-2,
	.mp-illu.mm .mm-sub-node-3,
	.mp-illu.mm .mm-card-2,
	.mp-illu.gt .gt-arrow,
	.mp-illu.kb .kb-headers,
	.mp-illu.kb .kb-card,
	.mp-illu.kb .kb-card-3 .kb-check,
	.mp-illu.rs .rs-bar,
	.mp-illu.ex .ex-doc,
	.mp-illu.ex .ex-badge,
	.mp-illu.xr .rd-task,
	.mp-illu.xr .rd-result,
	.mp-illu.at .at-toolbar-bg,
	.mp-illu.at .at-tool,
	.mp-illu.at .at-task,
	.mp-illu.at .at-mark { opacity: 1; transform: none; }
	.mp-illu.xr .rd-card { opacity: 0; transform: none; }
	.mp-illu.xr .rd-pulse { opacity: 0; transform: none; }
	.mp-illu.at .at-pulse { opacity: 0; }
	.mp-illu.at .at-fly-1,
	.mp-illu.at .at-fly-2,
	.mp-illu.at .at-fly-3,
	.mp-illu.at .at-fly-4,
	.mp-illu.at .at-fly-5,
	.mp-illu.at .at-fly-6 { opacity: 0; }
	.mp-illu.mm .mm-branch,
	.mp-illu.mm .mm-branch-2,
	.mp-illu.mm .mm-sub-branch-1,
	.mp-illu.mm .mm-sub-branch-2,
	.mp-illu.mm .mm-sub-branch-3,
	.mp-illu.gt .gt-dep-1,
	.mp-illu.gt .gt-dep-2,
	.mp-illu.ex .ex-line { stroke-dashoffset: 0; }
	.mp-illu.kb .kb-card-3 { transform: translate(0, 0); }
	.mp-illu.gt .gt-task-2 { transform: translateX(120px); }
	.mp-illu.gt .gt-milestone { transform: translate(320px, 216px); }
	.mp-illu.play *, .mp-illu * { animation: none !important; }
}
@media (prefers-color-scheme: dark) {
	.mp-panel__text h3 { color: var(--pw-fg); }
	.mp-panel__text p { color: var(--pw-text-secondary); }
	.mp-illu { filter: brightness(0.95); }

	/* SVG-Illustrationen: Elemente, die DIREKT auf dem dunklen Canvas liegen
	   (Connector-Linien, Pfeile, freistehender Text) sind in Light fast schwarz
	   und auf Dark unsichtbar/zu dunkel. Hier auf helle Toene flippen.
	   Die hellen UI-Fragmente (weisse Cards, blaue Bars, farbige Badges)
	   bleiben ABSICHTLICH hell, da sie echte App-UI nachbilden. */

	/* Gantt: Abhaengigkeitslinien + Pfeilspitzen (Light: #1d1d1f) */
	.mp-illu.gt .gt-dep   { stroke: #c7c7cc; }
	.mp-illu.gt .gt-arrow { fill: #c7c7cc; }

	/* Mindmap: Sub-Branch-Connector (Light: #6b7280) + Blatt-Labels (Light: #1d1d1f) */
	.mp-illu.mm .mm-sub-branch-1,
	.mp-illu.mm .mm-sub-branch-2,
	.mp-illu.mm .mm-sub-branch-3 { stroke: #80858f; }
	.mp-illu.mm .mm-sub-node-1 text,
	.mp-illu.mm .mm-sub-node-2 text,
	.mp-illu.mm .mm-sub-node-3 text { fill: var(--pw-text-secondary); }

	/* Express-Resources: Kosten-Labels + Personen-Glyphen am Balken (Light: #8e8e93) */
	.mp-illu.xr .rd-result text,
	.mp-illu.xr .rd-result use { fill: var(--pw-text-secondary); }

	/* Grid-/Trennlinien auf dem Canvas: in Light dezent (#e5e5ea), auf Dark
	   sonst zu grell. Auf gedaempfte Border-Helligkeit ziehen. */
	.mp-illu.rs line,
	.mp-illu.kb .kb-headers line { stroke: rgba(255,255,255,0.2); }
}

/* ---- CUSTOMER REVIEWS — Bento Grid (App Store + Capterra + Testimonials) ---- */
.mp-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--pw-space-md); }
.mp-bento__card { background: var(--pw-bg-alt); border: 1px solid var(--pw-border); border-radius: var(--pw-radius-md); padding: 28px; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; color: inherit; cursor: pointer; }
.mp-bento__card:hover { transform: translateY(-2px); box-shadow: var(--pw-shadow-md); }
.mp-bento__card--wide { grid-column: span 2; }
.mp-bento__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.mp-bento__source { display: inline-block; padding: 3px 10px; border-radius: var(--pw-radius-pill); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.mp-bento__source--appstore  { background: #eaf3fa; color: var(--pw-link); }
.mp-bento__source--capterra  { background: #fff4e6; color: var(--pw-brand); }
.mp-bento__source--reference { background: #e6f6ea; color: #2c8a3f; }
.mp-bento__stars { color: #ffb400; font-size: 14px; letter-spacing: 2px; }
.mp-bento__stars-filled { color: #ffb400; }
.mp-bento__stars-empty  { color: #e5e5ea; }
@media (prefers-color-scheme: dark) {
	.mp-bento__stars-empty { color: rgba(0,0,0,0.18); }
}
.mp-bento__title { font-size: 16px; font-weight: 700; color: var(--pw-text); margin: 0 0 var(--pw-space-sm); line-height: 1.3; }
.mp-bento__body { font-size: 14px; line-height: 1.6; color: #555; margin: 0 0 auto; padding-bottom: var(--pw-space-md); }
.mp-bento__author { font-size: 13px; color: #999; margin-top: auto; }
.mp-bento__meta { display: block; font-size: 12px; color: var(--pw-text-muted); margin-top: var(--pw-space-xs); }
.mp-bento__card--cta { align-items: center; justify-content: center; text-align: center; opacity: 0.65; border-style: dashed; background: transparent; text-decoration: none !important; }
.mp-bento__card--cta, .mp-bento__card--cta:hover, .mp-bento__card--cta * { text-decoration: none !important; }
.mp-bento__card--cta:hover { opacity: 1; border-style: solid; background: var(--pw-bg-alt); }
.mp-bento__card--cta .mp-bento__title { margin-top: 12px; }
.mp-bento__card--cta .mp-bento__body { text-align: center; padding-bottom: 0; margin: 0; }
.mp-bento__cta-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--pw-brand); color: #fff; font-size: 28px; font-weight: 300; display: flex; align-items: center; justify-content: center; line-height: 1; }
@media (prefers-color-scheme: dark) {
	.mp-bento__card { background: var(--pw-dark-2); border-color: var(--pw-dark-3); }
	.mp-bento__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
	.mp-bento__title { color: var(--pw-fg); }
	.mp-bento__body { color: #aaa; }
	.mp-bento__author { color: #666; }
	.mp-bento__meta { color: var(--pw-text-secondary); }
	.mp-bento__source--appstore  { background: rgba(42,127,191,0.15); color: #53b5f3; }
	.mp-bento__source--capterra  { background: rgba(249,157,27,0.15); color: var(--pw-brand-hover); }
	.mp-bento__source--reference { background: rgba(52,199,89,0.15); color: #4ade80; }
	.mp-bento__card--cta { background: transparent; }
	.mp-bento__card--cta:hover { background: var(--pw-dark-2); }
}
@media (max-width: 768px) {
	.mp-bento { grid-template-columns: 1fr; }
	.mp-bento__card--wide { grid-column: span 1; }
}

/* ---- REVIEW MODAL ---- */
.mp-modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: var(--pw-z-modal); align-items: center; justify-content: center; }
.mp-modal.active { display: flex; }
.mp-modal__backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
.mp-modal__content { position: relative; background: #fff; border-radius: 20px; padding: 40px; max-width: 560px; width: 90%; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.mp-modal__close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; }
.mp-modal__close:hover { color: #333; }
.mp-modal__stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.mp-modal__stars-filled { color: #ffb400; }
.mp-modal__stars-empty  { color: #e5e5ea; }
@media (prefers-color-scheme: dark) {
	.mp-modal__stars-empty { color: rgba(255,255,255,0.18); }
}
.mp-modal__source { display: inline-block; padding: 3px 10px; border-radius: var(--pw-radius-pill); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--pw-space-md); background: #eaf3fa; color: var(--pw-link); }
.mp-modal__source--appstore  { background: #eaf3fa; color: var(--pw-link); }
.mp-modal__source--capterra  { background: #fff4e6; color: var(--pw-brand); }
.mp-modal__source--reference { background: #e6f6ea; color: #2c8a3f; }
.mp-modal__title { font-size: 20px; font-weight: 700; color: var(--pw-text); margin: 0 0 var(--pw-space-md); }
.mp-modal__body { font-size: 15px; line-height: 1.7; color: #555; margin: 0 0 20px; white-space: pre-line; }
.mp-modal__author { display: block; font-size: 14px; color: #999; margin-bottom: var(--pw-space-xs); }
.mp-modal__date { display: block; font-size: 12px; color: #999; margin-bottom: var(--pw-space-lg); font-variant-numeric: tabular-nums; }
.mp-modal__translated { display: block; font-size: 13px; color: #999; font-style: italic; margin-bottom: 20px; }
.mp-modal__link { display: inline-block; font-size: 15px; font-weight: 600; color: var(--pw-link); }
.mp-modal__link:hover { text-decoration: underline; }
@media (prefers-color-scheme: dark) {
	.mp-modal__content { background: #1c1c1e; }
	.mp-modal__close { color: #666; }
	.mp-modal__close:hover { color: #ccc; }
	.mp-modal__title { color: var(--pw-fg); }
	.mp-modal__body { color: #aaa; }
	.mp-modal__author { color: #666; }
	.mp-modal__link { color: #53b5f3; }
	.mp-modal__source--appstore  { background: rgba(42,127,191,0.15); color: #53b5f3; }
	.mp-modal__source--capterra  { background: rgba(249,157,27,0.15); color: var(--pw-brand-hover); }
	.mp-modal__source--reference { background: rgba(52,199,89,0.15); color: #4ade80; }
}

/* ---- INDUSTRIES SLIDER ---- */
.mp-industries-section { position: relative; padding: 0; overflow: hidden; height: 70vh; max-height: 480px; background: var(--pw-bg-alt); }
.mp-industries-slider { position: relative; width: 100%; height: 100%; }
.mp-industries-slides { display: flex; height: 100%; transition: transform 0.6s ease; will-change: transform; contain: layout style; }
.mp-ind-slide { min-width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; color: inherit; }
.mp-ind-slide:hover { color: inherit; }
.mp-ind-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.18; transition: transform 0.6s ease, opacity 0.3s ease; }
.mp-ind-slide:hover .mp-ind-bg { transform: scale(1.02); opacity: 0.25; }
.mp-ind-content { position: relative; z-index: 2; text-align: center; max-width: 700px; padding: 40px; }
.mp-ind-label { display: inline-block; background: #fff; color: #000; border: 1px solid rgba(49,141,211,0.95); padding: 7px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
#content.mp-landing .mp-ind-content h2 { color: var(--pw-text); font-size: 2.5rem; margin: 0 0 20px; line-height: 1.2; letter-spacing: -0.025em; }
.mp-ind-content p { color: #4a4a4f; font-size: 1.1rem; line-height: 1.7; margin: 0; }
.mp-ind-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.1); color: var(--pw-text-secondary); width: 50px; height: 50px; border-radius: 50%; box-sizing: border-box; padding-bottom: 5px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; backdrop-filter: blur(5px); font-size: 28px; line-height: 1; }
.mp-ind-arrow:hover { background: rgba(49,141,211,0.95); border-color: rgba(49,141,211,0.95); color: #fff; }
.mp-ind-arrow--left { left: 30px; }
.mp-ind-arrow--right { right: 30px; }
.mp-ind-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 12px; }
.mp-ind-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.mp-ind-dot:hover { background: rgba(0,0,0,0.4); }
.mp-ind-dot.active { background: var(--pw-link); transform: scale(1.3); }
@media (prefers-color-scheme: dark) {
	.mp-ind-bg { opacity: 0.22; }
	#content.mp-landing .mp-ind-content h2 { color: var(--pw-fg); }
	.mp-ind-content p { color: var(--pw-text-secondary); }
	.mp-ind-arrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
	.mp-ind-dot { background: rgba(255,255,255,0.25); }
	.mp-ind-dot:hover { background: rgba(255,255,255,0.5); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
	.mp-rating { padding: 0 var(--pw-space-xl); }
	.mp-rating__score { font-size: 44px; }
}
@media (max-width: 768px) {
	.mp-hero { padding: 60px 0 var(--pw-space-xl); }
	#content.mp-landing .mp-hero__title { font-size: 30px; }
	.mp-hero__video { margin-bottom: var(--pw-space-xl); }
	.mp-section { padding: var(--pw-section-compact); }
	.mp-panel { grid-template-columns: 1fr; gap: var(--pw-space-xl); padding: var(--pw-space-sm) 0; }
	.mp-social-proof__grid { gap: var(--pw-space-lg); }
	.mp-industries-section { height: 50vh; max-height: 380px; }
	#content.mp-landing .mp-ind-content h2 { font-size: 1.8rem; }
	.mp-ind-arrow { width: 40px; height: 40px; font-size: 22px; }
	.mp-ind-arrow--left { left: 15px; }
	.mp-ind-arrow--right { right: 15px; }
}

/* ============================================================
   MP Features-Sammelseite + Detail-Pages
   ============================================================ */

.mp-features-page,
.mp-detail-page {
	padding: 0 0 var(--pw-space-3xl);
}

@media (max-width: 768px) {
	.mp-features-page,
	.mp-detail-page { padding: 0 0 60px; }
}

/* --- Card-Grid auf der Sammelseite --- */
.mp-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin: 0 0 40px;
}

/* --- Devices-Sektion auf der Features-Seite --- */
.mp-devices-section {
	margin: var(--pw-space-lg) 0 0;
	padding: var(--pw-space-2xl) 0 0;
	border-top: 1px solid var(--pw-border);
}

.mp-devices-section__header {
	margin: 0 0 28px;
	max-width: 760px;
}

.mp-devices-section__title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 var(--pw-space-sm);
	color: var(--pw-text);
}

.mp-devices-section__sub {
	font-size: 16px;
	line-height: 1.55;
	color: var(--pw-text-secondary);
	margin: 0;
}

.mp-features-grid--devices {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	margin: 0;
}

.mp-features-grid--devices .mp-feature-card {
	min-height: 220px;
}

@media (max-width: 768px) {
	.mp-devices-section { padding: 36px 0 0; }
	.mp-devices-section__title { font-size: 24px; }
}

.mp-feature-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 26px 26px var(--pw-space-lg);
	background: var(--pw-bg);
	border: 1px solid var(--pw-border);
	border-radius: var(--pw-radius-md);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	position: relative;
	height: 100%;
	min-height: 280px;
}

.mp-feature-card:hover {
	border-color: var(--pw-border-light);
	transform: translateY(-2px);
	box-shadow: var(--pw-shadow-md);
	color: inherit;
}

.mp-feature-card:focus-visible {
	outline: 2px solid var(--pw-brand);
	outline-offset: 2px;
}

/* Icon-Badge oben links — SVG via mask-image, einfärbbar in dunklem Orange */
.mp-feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(249,157,27, 0.1);
	flex-shrink: 0;
}

.mp-feature-card__icon::before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	background-color: var(--pw-brand);
	-webkit-mask-image: var(--icon-url);
	mask-image: var(--icon-url);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.mp-feature-card__body {
	flex: 1;
	min-height: 0;
}

.mp-feature-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--pw-text);
	margin: 0 0 var(--pw-space-sm);
	line-height: 1.3;
	letter-spacing: -0.005em;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mp-feature-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--pw-text-secondary);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mp-feature-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pw-text-muted);
	transition: color 0.2s, transform 0.2s;
	margin-top: auto;
}

.mp-feature-card__chevron {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}

.mp-feature-card:hover .mp-feature-card__cta {
	color: var(--pw-brand);
}

.mp-feature-card:hover .mp-feature-card__chevron {
	transform: translateX(2px);
}

@media (prefers-color-scheme: dark) {
	.mp-feature-card__icon {
		background: rgba(255, 149, 48, 0.16);
	}
}

/* --- Detail-Page Body --- */
.mp-detail__body {
	max-width: 760px;
	margin: 0 0 56px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--pw-text);
}

.mp-detail__body p { margin: 0 0 1em; }
.mp-detail__body h2 {
	font-size: 24px;
	font-weight: 700;
	margin: 40px 0 12px;
	color: var(--pw-text);
}
.mp-detail__body h3 {
	font-size: 20px;
	font-weight: 700;
	margin: var(--pw-space-xl) 0 var(--pw-space-sm);
	color: var(--pw-text);
}
.mp-detail__body img,
.mp-detail__body picture { border-radius: var(--pw-radius-sm); margin: var(--pw-space-md) 0; }
.mp-detail__body a { color: var(--pw-link); }
.mp-detail__body a:hover { text-decoration: underline; }

.mp-detail__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pw-space-md);
	align-items: center;
	padding: 28px 0 0;
	border-top: 1px solid var(--pw-border);
	max-width: 760px;
}

/* --- Optional Apps-Block (z.B. /merlin-project/collaboration) --- */
.mp-detail__apps {
	margin: 0 0 56px;
}

.mp-detail__apps-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--pw-text);
	margin: var(--pw-space-xl) 0 20px;
	letter-spacing: -0.01em;
}

.mp-detail__apps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--pw-space-md);
}

.mp-app-card {
	padding: 20px 22px;
	background: var(--pw-bg);
	border: 1px solid var(--pw-border);
	border-radius: var(--pw-radius-md);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.mp-app-card:hover {
	border-color: var(--pw-border-light);
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.mp-app-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 12px;
}

.mp-app-card__icon {
	width: 32px;
	height: 32px;
	display: block;
	flex-shrink: 0;
}

.mp-app-card__name {
	font-size: 16px;
	font-weight: 700;
	color: var(--pw-text);
	margin: 0;
	line-height: 1.3;
}

.mp-app-card__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--pw-text-secondary);
}

.mp-app-card__desc p { margin: 0 0 var(--pw-space-sm); }
.mp-app-card__desc p:last-child { margin: 0; }
.mp-app-card__desc a { color: var(--pw-link); }
.mp-app-card__desc a:hover { text-decoration: underline; }

/* --- Panel-CTA: Discover-Link unter jedem Panel-Text ---
   Sitzt im Text-Block des aktiven Panels (.mp-panel__text), direkt unter dem
   Beschreibungs-<p>. Dezenter Text-Link mit Pfeil-Animation auf Hover. */
.mp-panel__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--pw-brand);
	text-decoration: none;
	transition: color 0.2s;
	align-self: flex-start;
}
.mp-panel__cta:hover { color: var(--pw-brand-hover); }
.mp-panel__cta:hover svg { transform: translateX(2px); }
.mp-panel__cta svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}

@media (max-width: 600px) {
	.mp-features-grid { grid-template-columns: 1fr; gap: 14px; }
	.mp-feature-card__body { padding: 18px 20px 20px; }
	.mp-detail__body { font-size: 16px; }
}

/* ==========================================================================
   MP Comparison — Sammelseite + Detail-Page
   ========================================================================== */

.mp-comparison-page,
.mp-comparison-detail-page { padding: 0 0 var(--pw-space-3xl); }

/* --- Sammelseite Hero --- */
.mp-comparison-hero {
	margin: 0 auto 56px;
	max-width: 880px;
	text-align: center;
}
.mp-comparison-hero__lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--pw-text-secondary);
	margin: 0 0 var(--pw-space-xl);
}
.mp-comparison-hero__lead p { margin: 0 0 12px; }
.mp-comparison-hero__lead p:last-child { margin-bottom: 0; }
.mp-comparison-hero__figure { margin: 0; }
.mp-comparison-hero__figure img {
	max-width: 100%;
	height: auto;
	border-radius: var(--pw-radius-md);
}

/* --- Sammelseite Card-Grid --- */
.mp-comparison-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.mp-comparison-card {
	display: flex;
	flex-direction: column;
	background: var(--pw-bg);
	border: 1px solid var(--pw-border);
	border-radius: var(--pw-radius-md);
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
	min-height: 320px;
}
.mp-comparison-card:hover {
	border-color: var(--pw-border-light);
	transform: translateY(-2px);
	box-shadow: var(--pw-shadow-md);
	color: inherit;
}
.mp-comparison-card:focus-visible {
	outline: 2px solid var(--pw-brand);
	outline-offset: 2px;
}

.mp-comparison-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--pw-bg-alt);
	border-bottom: 1px solid var(--pw-border);
}
.mp-comparison-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.3s ease;
}
.mp-comparison-card:hover .mp-comparison-card__media img { transform: scale(1.03); }

.mp-comparison-card__body {
	flex: 1;
	padding: 22px var(--pw-space-lg) 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.mp-comparison-card__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pw-brand);
	margin: 0;
}
.mp-comparison-card__title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--pw-text);
	margin: 0;
}
.mp-comparison-card__desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--pw-text-secondary);
	margin: 0;
}

.mp-comparison-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 var(--pw-space-lg) 22px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pw-text-muted);
	transition: color 0.2s;
}
.mp-comparison-card__chevron {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}
.mp-comparison-card:hover .mp-comparison-card__cta { color: var(--pw-brand); }
.mp-comparison-card:hover .mp-comparison-card__chevron { transform: translateX(2px); }

/* --- Detail Versus-Hero --- */
.mp-comparison-versus {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: var(--pw-space-xl);
	align-items: center;
	margin: 0 auto 56px;
	max-width: 1100px;
}
.mp-comparison-versus__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--pw-space-md);
}
.mp-comparison-versus__media {
	width: 100%;
	max-width: 460px;
	border-radius: var(--pw-radius-md);
	overflow: hidden;
	background: var(--pw-bg-alt);
	border: 1px solid var(--pw-border);
}
.mp-comparison-versus__media img {
	display: block;
	width: 100%;
	height: auto;
}
.mp-comparison-versus__name {
	font-size: 26px;
	font-weight: 700;
	color: var(--pw-text);
	letter-spacing: -0.01em;
	margin: 0;
}
.mp-comparison-versus__tagline {
	font-size: 15px;
	color: var(--pw-text-secondary);
	margin: 0;
	max-width: 320px;
}
.mp-comparison-versus__vs {
	font-size: 28px;
	font-weight: 700;
	color: var(--pw-text-muted);
	font-style: italic;
	padding: 0 var(--pw-space-sm);
	user-select: none;
}

/* --- Detail Quick Comparison Chart --- */
.mp-comparison-chart {
	margin: 0 auto 64px;
	max-width: 1000px;
}
.mp-comparison-chart__header {
	text-align: center;
	margin: 0 0 28px;
}
.mp-comparison-chart__title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--pw-text);
	margin: 0 0 var(--pw-space-sm);
}
.mp-comparison-chart__intro {
	font-size: 16px;
	line-height: 1.5;
	color: var(--pw-text-secondary);
	margin: 0;
}
.mp-comparison-chart__table {
	overflow-x: auto;
}
.mp-comparison-chart__table table {
	width: 100%;
	font-size: 15px;
}
.mp-comparison-chart__table th:first-child,
.mp-comparison-chart__table td:first-child {
	font-weight: 600;
	color: var(--pw-text);
}

/* --- Detail Feature-Sections --- */
.mp-comparison-sections {
	margin: 0 auto;
	max-width: 1100px;
	padding-top: var(--pw-space-lg);
	border-top: 1px solid var(--pw-border);
}
.mp-comparison-sections__header { margin: 0 0 36px; }
.mp-comparison-sections__title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--pw-text);
	margin: 0;
	text-align: center;
}

.mp-comparison-section {
	padding: var(--pw-section-compact);
	border-top: 1px solid var(--pw-border);
	scroll-margin-top: 110px;
}
.mp-comparison-section:first-child { border-top: 0; padding-top: 0; }

.mp-comparison-section__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 28px;
	color: var(--pw-text);
	letter-spacing: -0.005em;
	text-align: center;
}

.mp-comparison-section__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
	align-items: start;
}
.mp-comparison-section--image-right .mp-comparison-section__grid {
	grid-template-columns: 1.2fr 1fr;
}
.mp-comparison-section--image-right .mp-comparison-section__media {
	order: 2;
}
.mp-comparison-section--image-right .mp-comparison-section__body {
	order: 1;
}

.mp-comparison-section__media {
	margin: 0;
	border-radius: var(--pw-radius-md);
	overflow: hidden;
	background: var(--pw-bg-alt);
	border: 1px solid var(--pw-border);
}
.mp-comparison-section__media img {
	display: block;
	width: 100%;
	height: auto;
}
.mp-comparison-section__caption {
	padding: 10px 14px;
	font-size: 13px;
	color: var(--pw-text-muted);
	text-align: center;
	background: var(--pw-bg-alt);
}

.mp-comparison-section__body {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.mp-comparison-section__col-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--pw-text);
}
.mp-comparison-section__col--merlin .mp-comparison-section__col-title {
	color: var(--pw-brand);
}
.mp-comparison-section__col-text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--pw-text-secondary);
}
.mp-comparison-section__col-text p { margin: 0 0 12px; }
.mp-comparison-section__col-text p:last-child { margin-bottom: 0; }

/* --- Detail Closing-CTA --- */
.mp-comparison-cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--pw-space-md);
	align-items: center;
	padding: var(--pw-space-xl) 0 0;
	margin: var(--pw-space-2xl) auto 0;
	border-top: 1px solid var(--pw-border);
	max-width: 1100px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.mp-comparison-versus {
		grid-template-columns: 1fr;
		gap: var(--pw-space-lg);
	}
	.mp-comparison-versus__vs { order: -1; }
	.mp-comparison-section__grid {
		grid-template-columns: 1fr;
		gap: var(--pw-space-lg);
	}
	.mp-comparison-section--image-right .mp-comparison-section__media,
	.mp-comparison-section--image-right .mp-comparison-section__body {
		order: initial;
	}
}
@media (max-width: 600px) {
	.mp-comparison-page,
	.mp-comparison-detail-page { padding: 0 0 60px; }
	.mp-comparison-grid { grid-template-columns: 1fr; gap: 14px; }
	.mp-comparison-card { min-height: 0; }
	.mp-comparison-card__title { font-size: 20px; }
	.mp-comparison-versus__name { font-size: 22px; }
	.mp-comparison-chart__title,
	.mp-comparison-sections__title { font-size: 24px; }
	.mp-comparison-section__title { font-size: 20px; }
}
