/* direct-clip Theme -- alle Stile. Hausfarbe #727cf5, Systemschrift, keine externen Ressourcen. */

:root {
	--dc-primary: #727cf5;
	--dc-primary-hover: #5f6ae0;
	--dc-primary-strong: #4c56cc;
	--dc-primary-weak: #eef0fe;
	--dc-primary-weak-brd: #d5d9fc;
	--dc-text: #1f2937;
	--dc-text-muted: #6b7280;
	--dc-text-subtle: #9ca3af;
	--dc-bg: #ffffff;
	--dc-tint: #f6f7fc;
	--dc-surface: #ffffff;
	--dc-border: #e5e7eb;
	--dc-border-subtle: #eef0f3;
	--dc-success: #16a34a;
	--dc-warning: #d97706;
	--dc-danger: #dc2626;
	--dc-radius-sm: 8px;
	--dc-radius-md: 12px;
	--dc-radius-lg: 20px;
	--dc-shadow-1: 0 1px 2px rgba(17, 24, 39, .06), 0 1px 3px rgba(17, 24, 39, .04);
	--dc-shadow-2: 0 8px 24px rgba(17, 24, 39, .08);
	--dc-shadow-3: 0 24px 60px rgba(76, 86, 204, .18);
	--dc-font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--dc-wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--dc-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--dc-text);
	background: var(--dc-bg);
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: var(--dc-primary); text-decoration: none; }
a:hover { color: var(--dc-primary-hover); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--dc-primary-weak-brd); outline-offset: 2px; }

.dc-wrap { width: min(100% - 40px, var(--dc-wrap)); margin-inline: auto; }
.dc-narrow { max-width: 820px; }
.dc-center { text-align: center; }
.dc-muted { color: var(--dc-text-muted); }
.dc-skip { position: absolute; left: -999px; top: 8px; background: var(--dc-primary); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.dc-skip:focus { left: 8px; }
.dc-kicker {
	display: inline-block; margin: 0 0 12px; padding: 4px 12px;
	font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: var(--dc-primary-strong); background: var(--dc-primary-weak); border-radius: 999px;
}
.dc-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.dc-icon { flex: none; }

/* --- Knoepfe ----------------------------------------------------------- */
.dc-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 42px; padding: 0 18px; border-radius: 10px; border: 1px solid transparent;
	font-weight: 600; font-size: 15px; white-space: nowrap; cursor: pointer;
	transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.dc-btn--primary { background: var(--dc-primary); color: #fff; box-shadow: 0 4px 14px rgba(114, 124, 245, .35); }
.dc-btn--primary:hover { background: var(--dc-primary-hover); color: #fff; transform: translateY(-1px); }
.dc-btn--ghost { background: transparent; color: var(--dc-text); border-color: var(--dc-border); }
.dc-btn--ghost:hover { border-color: var(--dc-primary); color: var(--dc-primary); }
.dc-btn--light { background: #fff; color: var(--dc-primary-strong); }
.dc-btn--light:hover { background: var(--dc-primary-weak); color: var(--dc-primary-strong); }
.dc-btn--outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.dc-btn--outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.dc-btn--lg, .dc-btn.lg { height: 50px; padding: 0 24px; font-size: 16px; border-radius: 12px; }
.dc-btn--primary.lg { height: 50px; padding: 0 24px; font-size: 16px; border-radius: 12px; }

/* --- Kopfzeile --------------------------------------------------------- */
.dc-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--dc-border-subtle);
}
.dc-header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.dc-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--dc-text); }
.dc-logo__mark { display: inline-flex; }
.dc-logo__svg { display: block; height: 34px; width: 34px; }
.dc-logo__word { font-size: 23px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--dc-text); }
.custom-logo { max-height: 48px; width: auto; }
.dc-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.dc-nav__list { display: flex; gap: 4px; list-style: none; }
.dc-nav__list a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--dc-text); font-weight: 500; }
.dc-nav__list a:hover, .dc-nav__list .current-menu-item:not(.menu-item-type-custom) > a { background: var(--dc-tint); color: var(--dc-primary-strong); }
.dc-nav__actions { display: flex; align-items: center; gap: 10px; }
.dc-lang { display: inline-flex; border: 1px solid var(--dc-border); border-radius: 8px; overflow: hidden; }
.dc-lang__item { padding: 6px 10px; font-size: 13px; font-weight: 600; color: var(--dc-text-muted); }
.dc-lang__item.is-on { background: var(--dc-primary-weak); color: var(--dc-primary-strong); }
.dc-burger { display: none; flex: none; width: 42px; height: 42px; border: 1px solid var(--dc-border); background: #fff; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.dc-burger span { display: block; width: 18px; height: 2px; background: var(--dc-text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.dc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero -------------------------------------------------------------- */
.dc-hero { padding: 72px 0 40px; background: radial-gradient(1200px 500px at 85% -10%, var(--dc-primary-weak) 0%, transparent 60%); overflow: hidden; }
.dc-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.dc-hero__grid > *, .dc-grid > *, .dc-steps > * { min-width: 0; }
body { overflow-x: hidden; }
.dc-hero__title { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.08; margin-bottom: 18px; }
.dc-hero__lead { font-size: 19px; color: var(--dc-text-muted); max-width: 560px; margin-bottom: 26px; }
.dc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.dc-hero__note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--dc-text-muted); }
.dc-hero__note .dc-icon { color: var(--dc-success); }

/* Gezeichnete Geraete-Vorschau */
.dc-mock { position: relative; padding: 24px 0 40px 30px; }
.dc-mock__screen { background: #fff; border: 1px solid var(--dc-border); border-radius: 14px; box-shadow: var(--dc-shadow-3); overflow: hidden; }
.dc-mock__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--dc-border-subtle); background: #fafbff; }
.dc-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: #e2e5ef; }
.dc-mock__title { margin-left: 10px; font-size: 12px; font-weight: 600; color: var(--dc-text-muted); }
.dc-mock__body { display: grid; grid-template-columns: 44px 1fr; min-height: 250px; }
.dc-mock__side { background: #f3f4fb; padding: 12px 10px; display: flex; flex-direction: column; gap: 10px; }
.dc-mock__nav { display: block; height: 22px; border-radius: 6px; background: #e0e3f3; }
.dc-mock__nav.is-on { background: var(--dc-primary); }
.dc-mock__main { padding: 14px; }
.dc-mock__kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.dc-mock__kpi { padding: 8px 10px; border: 1px solid var(--dc-border); border-radius: 10px; }
.dc-mock__kpi b { display: block; font-size: 16px; line-height: 1.1; }
.dc-mock__kpi span { font-size: 10px; color: var(--dc-text-muted); }
.dc-mock__kpi--ok b { color: var(--dc-success); }
.dc-mock__kpi--warn b { color: var(--dc-warning); }
.dc-mock__chart { height: 70px; margin-bottom: 12px; border: 1px solid var(--dc-border); border-radius: 10px; overflow: hidden; }
.dc-mock__chart svg { width: 100%; height: 100%; display: block; }
.dc-mock__rows { display: flex; flex-direction: column; gap: 8px; }
.dc-mock__row { display: grid; grid-template-columns: 10px 1fr 60px; align-items: center; gap: 10px; }
.dc-mock__row i { width: 10px; height: 10px; border-radius: 50%; background: var(--dc-success); }
.dc-mock__row i.warn { background: var(--dc-warning); }
.dc-mock__row span { height: 8px; border-radius: 4px; background: #e6e8f2; }
.dc-mock__row em { height: 8px; border-radius: 4px; background: #eef0fe; }
.dc-mock__tv { position: absolute; right: -8px; bottom: 0; width: 46%; }
.dc-mock__tv-screen { aspect-ratio: 16 / 9; background: #111827; border-radius: 8px; padding: 6%; border: 3px solid #0b1020; box-shadow: var(--dc-shadow-2); display: flex; flex-direction: column; justify-content: space-between; }
.dc-mock__tv-hero { flex: 1; border-radius: 4px; background: linear-gradient(135deg, var(--dc-primary), #a78bfa); position: relative; }
.dc-mock__tv-hero span { position: absolute; left: 8%; height: 8%; border-radius: 3px; background: rgba(255, 255, 255, .85); }
.dc-mock__tv-hero span:first-child { top: 12%; width: 55%; }
.dc-mock__tv-hero span:last-child { top: 30%; width: 35%; opacity: .7; }
.dc-mock__tv-ticker { height: 14%; margin-top: 6%; border-radius: 3px; background: #1f2937; overflow: hidden; }
.dc-mock__tv-ticker i { display: block; height: 100%; width: 60%; background: linear-gradient(90deg, transparent, rgba(114, 124, 245, .8), transparent); animation: dc-ticker 4s linear infinite; }
@keyframes dc-ticker { from { transform: translateX(-100%); } to { transform: translateX(180%); } }
.dc-mock__tv-foot { width: 30%; height: 6px; margin: 4px auto 0; background: #0b1020; border-radius: 0 0 4px 4px; }
.dc-mock__phone { position: absolute; left: 0; bottom: 8px; width: 78px; padding: 6px; background: #0b1020; border-radius: 14px; box-shadow: var(--dc-shadow-2); }
.dc-mock__phone-screen { aspect-ratio: 9 / 17; background: #fff; border-radius: 9px; padding: 10px 8px; display: flex; flex-direction: column; gap: 6px; }
.dc-mock__phone-line { height: 6px; border-radius: 3px; background: #e6e8f2; }
.dc-mock__phone-line.short { width: 60%; }
.dc-mock__phone-pill { margin-top: auto; height: 12px; border-radius: 6px; background: var(--dc-primary); }

/* --- Vertrauen --------------------------------------------------------- */
.dc-trust { padding: 22px 0; border-top: 1px solid var(--dc-border-subtle); border-bottom: 1px solid var(--dc-border-subtle); background: var(--dc-tint); }
.dc-trust__text { margin: 0 0 12px; text-align: center; font-weight: 600; color: var(--dc-text); }
.dc-trust__facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; list-style: none; }
.dc-trust__facts li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--dc-text-muted); }
.dc-trust__facts .dc-icon { color: var(--dc-primary); }

/* --- Abschnitte -------------------------------------------------------- */
.dc-section { padding: 84px 0; }
.dc-section--tint { background: var(--dc-tint); }
.dc-section--page { padding: 56px 0 80px; }
.dc-section__head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.dc-section__title { font-size: clamp(28px, 3.4vw, 40px); }
.dc-section__text { font-size: 18px; color: var(--dc-text-muted); }
.dc-section__note { margin: 28px 0 0; text-align: center; font-size: 14px; color: var(--dc-text-muted); }
.dc-grid { display: grid; gap: 22px; }
.dc-grid--3 { grid-template-columns: repeat(3, 1fr); }

.dc-feature { padding: 26px; border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); background: var(--dc-surface); transition: box-shadow .2s, transform .2s, border-color .2s; }
.dc-feature:hover { box-shadow: var(--dc-shadow-2); transform: translateY(-2px); border-color: var(--dc-primary-weak-brd); }
.dc-feature__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; background: var(--dc-primary-weak); color: var(--dc-primary-strong); margin-bottom: 16px; }
.dc-feature__title { font-size: 18px; }
.dc-feature p { margin: 0; color: var(--dc-text-muted); }

.dc-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; counter-reset: step; }
.dc-step { position: relative; padding: 28px 26px 26px; background: var(--dc-surface); border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); }
.dc-step__num { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: var(--dc-primary); color: #fff; font-weight: 700; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(114, 124, 245, .35); }
.dc-step__title { font-size: 19px; }
.dc-step p { margin: 0; color: var(--dc-text-muted); }

.dc-usecase { display: flex; gap: 16px; padding: 22px; border-radius: var(--dc-radius-md); border: 1px solid var(--dc-border-subtle); background: var(--dc-surface); }
.dc-usecase__icon { flex: none; display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; background: var(--dc-tint); color: var(--dc-primary); }
.dc-usecase__title { font-size: 17px; margin-bottom: 4px; }
.dc-usecase p { margin: 0; color: var(--dc-text-muted); font-size: 15px; }

/* Preise (Ausgabe des Plugins; Klassen hier gestaltet, damit Theme und Plugin zusammenpassen) */
.dcc-packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; align-items: stretch; }
.dcc-package { position: relative; display: flex; flex-direction: column; padding: 28px 26px; background: var(--dc-surface); border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); }
.dcc-package--featured { border-color: var(--dc-primary); box-shadow: var(--dc-shadow-3); }
.dcc-package__badge { position: absolute; top: -12px; left: 24px; padding: 3px 10px; font-size: 12px; font-weight: 700; color: #fff; background: var(--dc-primary); border-radius: 999px; }
.dcc-package__name { font-size: 20px; margin-bottom: 6px; }
.dcc-package__price { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1; margin: 10px 0 4px; }
.dcc-package__price small { font-size: 14px; font-weight: 500; color: var(--dc-text-muted); letter-spacing: 0; }
.dcc-package__note { font-size: 14px; color: var(--dc-text-muted); min-height: 22px; margin-bottom: 14px; }
.dcc-package__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0 0 22px; }
.dcc-package__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.dcc-package__list .dc-icon, .dcc-package__list svg { color: var(--dc-success); flex: none; margin-top: 3px; }
.dcc-package .dc-btn { margin-top: auto; width: 100%; }
.dc-price-fallback, .dcc-fallback { max-width: 620px; margin: 0 auto; padding: 32px; text-align: center; background: var(--dc-surface); border: 1px dashed var(--dc-border); border-radius: var(--dc-radius-lg); }

/* FAQ */
.dc-faq { display: flex; flex-direction: column; gap: 10px; }
.dc-faq__item { border: 1px solid var(--dc-border); border-radius: var(--dc-radius-md); background: var(--dc-surface); padding: 0 20px; }
.dc-faq__q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0; font-weight: 600; cursor: pointer; list-style: none; }
.dc-faq__q::-webkit-details-marker { display: none; }
.dc-faq__q .dc-icon { color: var(--dc-primary); transition: transform .2s; }
.dc-faq__item[open] .dc-faq__q .dc-icon { transform: rotate(45deg); }
.dc-faq__a { margin: 0; padding: 0 0 18px; color: var(--dc-text-muted); }

/* Abschluss */
.dc-cta { padding: 84px 0; background: linear-gradient(135deg, var(--dc-primary) 0%, var(--dc-primary-strong) 100%); color: #fff; }
.dc-cta__inner { text-align: center; max-width: 720px; }
.dc-cta__title { font-size: clamp(28px, 3.4vw, 40px); color: #fff; }
.dc-cta__text { font-size: 18px; opacity: .92; margin-bottom: 28px; }
.dc-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* --- Seiten / Beitraege ----------------------------------------------- */
.dc-page-head { margin-bottom: 28px; }
.dc-page-title { font-size: clamp(30px, 3.6vw, 42px); }
.dc-prose { font-size: 17px; }
.dc-prose h2 { font-size: 26px; margin-top: 1.6em; }
.dc-prose h3 { font-size: 20px; margin-top: 1.4em; }
.dc-prose ul, .dc-prose ol { padding-left: 1.3em; margin-bottom: 1em; }
.dc-prose li { margin-bottom: .3em; }
.dc-prose img { border-radius: var(--dc-radius-md); }
.dc-prose blockquote { margin: 1.4em 0; padding: 12px 20px; border-left: 4px solid var(--dc-primary); background: var(--dc-tint); border-radius: 0 10px 10px 0; }
.dc-prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.dc-prose th, .dc-prose td { padding: 10px 12px; border: 1px solid var(--dc-border); text-align: left; }
.dc-prose .wp-block-button__link { border-radius: 10px; background: var(--dc-primary); }
.dc-posts { display: grid; gap: 22px; }
.dc-post-card { display: grid; grid-template-columns: 240px 1fr; gap: 20px; border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); overflow: hidden; background: var(--dc-surface); }
.dc-post-card__img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.dc-post-card__body { padding: 20px 22px 20px 0; }
.dc-post-card:not(:has(.dc-post-card__img)) .dc-post-card__body { padding-left: 22px; }
.dc-post-card__title { font-size: 21px; margin: 4px 0 8px; }
.dc-post-card__title a { color: var(--dc-text); }
.dc-post-hero { margin-bottom: 28px; }
.dc-post-hero img { width: 100%; border-radius: var(--dc-radius-lg); }
.dc-pagination { margin-top: 28px; text-align: center; }
.dc-pagination .page-numbers { display: inline-block; padding: 6px 12px; border: 1px solid var(--dc-border); border-radius: 8px; margin: 0 2px; }
.dc-pagination .current { background: var(--dc-primary); border-color: var(--dc-primary); color: #fff; }

/* --- Fusszeile --------------------------------------------------------- */
.dc-footer { padding: 56px 0 24px; background: #0f172a; color: #cbd5e1; }
.dc-footer a { color: #e2e8f0; }
.dc-footer a:hover { color: #fff; }
.dc-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.dc-footer__brand .dc-logo__svg text { fill: #fff; }
.dc-footer__brand p { margin: 14px 0 0; max-width: 360px; }
.dc-footer__made { font-size: 14px; color: #94a3b8; }
.dc-footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: #94a3b8; margin-bottom: 14px; }
.dc-footer__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.dc-footer__list a, .dc-footer__list span { display: inline-flex; align-items: center; gap: 8px; }
.dc-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; font-size: 14px; color: #94a3b8; }

/* --- Formular (Registrierung, Plugin) ---------------------------------- */
.dcc-form { max-width: 760px; margin: 0 auto; padding: 32px; background: var(--dc-surface); border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); box-shadow: var(--dc-shadow-1); }
.dcc-form__section { margin: 0 0 22px; }
.dcc-form__section > h3 { font-size: 16px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--dc-border-subtle); color: var(--dc-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.dcc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dcc-row--3 { grid-template-columns: 120px 1fr 1fr; }
.dcc-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.dcc-field label { font-size: 14px; font-weight: 600; }
.dcc-field input, .dcc-field select {
	height: 44px; padding: 0 12px; border: 1px solid var(--dc-border); border-radius: 10px; font: inherit; color: var(--dc-text); background: #fff; width: 100%;
}
.dcc-field input:focus, .dcc-field select:focus { border-color: var(--dc-primary); outline: 3px solid var(--dc-primary-weak); }
.dcc-field .dcc-error { display: none; font-size: 13px; color: var(--dc-danger); }
.dcc-field.is-error input, .dcc-field.is-error select { border-color: var(--dc-danger); }
.dcc-field.is-error .dcc-error { display: block; }
.dcc-hint { font-size: 13px; color: var(--dc-text-muted); }
.dcc-choice { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.dcc-choice label { position: relative; display: block; padding: 12px 14px; border: 1px solid var(--dc-border); border-radius: 12px; cursor: pointer; }
.dcc-choice input { position: absolute; opacity: 0; }
.dcc-choice input:checked + span { color: var(--dc-primary-strong); }
.dcc-choice label:has(input:checked) { border-color: var(--dc-primary); background: var(--dc-primary-weak); }
.dcc-choice b { display: block; }
.dcc-choice small { color: var(--dc-text-muted); }
.dcc-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 18px; }
.dcc-consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.dcc-hp { position: absolute; left: -9999px; }
.dcc-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dcc-msg { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; }
.dcc-msg--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.dcc-msg--ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.dcc-success { text-align: center; padding: 20px 0; }
.dcc-success__icon { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; background: #dcfce7; color: var(--dc-success); margin-bottom: 14px; }
.dcc-success h2 { font-size: 26px; }
.dcc-success .dc-btn { margin-top: 10px; }
.dcc-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255, 255, 255, .5); border-top-color: #fff; border-radius: 50%; animation: dcc-spin .8s linear infinite; }
.dcc-form.is-busy .dcc-spinner { display: inline-block; }
.dcc-form.is-busy button[type="submit"] { opacity: .8; pointer-events: none; }
@keyframes dcc-spin { to { transform: rotate(360deg); } }

/* --- Responsiv --------------------------------------------------------- */
@media (max-width: 1024px) {
	.dc-grid--3, .dc-steps { grid-template-columns: repeat(2, 1fr); }
	.dc-hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.dc-hero__visual { max-width: 640px; margin: 0 auto; width: 100%; }
	.dc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
	.dc-header__inner { height: 64px; gap: 12px; }
	.dc-burger { display: inline-flex; }
	.dc-nav {
		display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; align-items: stretch; gap: 8px;
		padding: 14px 20px 20px; background: #fff; border-bottom: 1px solid var(--dc-border); box-shadow: var(--dc-shadow-2);
	}
	.dc-nav.is-open { display: flex; }
	.dc-nav__list { flex-direction: column; }
	.dc-nav__actions { flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--dc-border-subtle); }
	.dc-nav__actions .dc-btn { flex: 1 1 160px; }
	.dc-hero { padding: 40px 0 24px; }
	.dc-hero__lead { font-size: 17px; }
	.dc-section { padding: 56px 0; }
	.dc-grid--3, .dc-steps { grid-template-columns: 1fr; }
	.dc-mock { padding: 12px 0 30px 0; }
	.dc-mock__phone { display: none; }
	.dc-mock__tv { width: 52%; right: 0; }
	.dc-post-card { grid-template-columns: 1fr; }
	.dc-post-card__body { padding: 18px 20px; }
	.dc-footer__grid { grid-template-columns: 1fr; gap: 24px; }
	.dc-footer__bottom { flex-direction: column; gap: 8px; }
	.dcc-form { padding: 20px; }
	.dcc-row, .dcc-row--3 { grid-template-columns: 1fr; }
	.dc-cta__actions .dc-btn { width: 100%; }
}

/* --- Kopfzeile: Anmelden immer sichtbar (auch am Handy) ----------------- */
.dc-header__cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.dc-header__cta .dc-btn--ghost .dc-btn__label { display: inline; }
.dc-nav { margin-left: 0; }

/* --- Branchen: Karten mit Bildschirm-Vorschau ---------------------------- */
.dc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.dc-ind { display: flex; flex-direction: column; border: 1px solid var(--dc-border); border-radius: var(--dc-radius-lg); background: var(--dc-surface); overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s; }
.dc-ind:hover { box-shadow: var(--dc-shadow-2); transform: translateY(-3px); border-color: var(--dc-primary-weak-brd); }
.dc-ind__screen { container-type: inline-size; padding: 14px 14px 0; background: linear-gradient(180deg, var(--dc-tint), #fff); }
.dc-ind__body { padding: 16px 18px 20px; }
.dc-ind__title { display: flex; align-items: center; gap: 8px; font-size: 17px; margin-bottom: 4px; }
.dc-ind__title .dc-icon { color: var(--dc-primary); }
.dc-ind p { margin: 0; color: var(--dc-text-muted); font-size: 14.5px; }

/* Bildschirm-Szene: 16:9, dunkler Rahmen, Inhalt je Branche */
.dc-scene { --a: var(--dc-primary); --b: #a78bfa; position: relative; aspect-ratio: 16 / 9; border-radius: 8px; border: 3px solid #0b1020; background: linear-gradient(135deg, var(--a), var(--b)); color: #fff; overflow: hidden; box-shadow: 0 10px 24px rgba(11, 16, 32, .25); font-size: 13px; font-size: 4.2cqw; line-height: 1.3; }
.dc-scene__in { position: absolute; inset: 0; padding: 6% 7%; display: flex; flex-direction: column; gap: .5em; }
.dc-scene__head { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; font-size: 1.25em; letter-spacing: -.01em; }
.dc-scene__head small { font-weight: 500; opacity: .8; font-size: .7em; }
.dc-scene__rows { display: flex; flex-direction: column; gap: .35em; margin-top: auto; }
.dc-scene__row { display: flex; justify-content: space-between; gap: 1em; padding: .35em .6em; background: rgba(255, 255, 255, .14); border-radius: .4em; white-space: nowrap; }
.dc-scene__row b { font-weight: 700; }
.dc-scene__big { font-size: 2.6em; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.dc-scene__sub { font-size: .95em; opacity: .9; }
.dc-scene__badge { align-self: flex-start; padding: .25em .7em; border-radius: 999px; background: rgba(255, 255, 255, .22); font-weight: 700; font-size: .85em; }
.dc-scene__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .5em; margin-top: auto; }
.dc-scene__tile { padding: .5em .6em; background: rgba(255, 255, 255, .16); border-radius: .5em; }
.dc-scene__tile b { display: block; font-size: 1.4em; line-height: 1.1; }
.dc-scene__tile span { font-size: .8em; opacity: .9; }
.dc-scene__ticker { margin-top: auto; height: 1.6em; border-radius: .3em; background: rgba(11, 16, 32, .55); overflow: hidden; display: flex; align-items: center; }
.dc-scene__ticker span { white-space: nowrap; padding-left: 100%; font-size: .85em; animation: dc-scene-ticker 14s linear infinite; }
@keyframes dc-scene-ticker { to { transform: translateX(-100%); } }
.dc-scene__queue { display: flex; align-items: center; gap: 4%; margin-top: auto; }
.dc-scene__queue b { font-size: 2.8em; font-weight: 800; line-height: 1; }
.dc-scene__queue span { font-size: .9em; opacity: .9; }
.dc-scene__dots { position: absolute; right: 5%; bottom: 4%; display: flex; gap: .35em; }
.dc-scene__dots i { width: .45em; height: .45em; border-radius: 50%; background: rgba(255, 255, 255, .5); }
.dc-scene__dots i:first-child { background: #fff; }
/* Farbwelten je Branche */
.dc-scene--gastro   { --a: #f97316; --b: #dc2626; }
.dc-scene--fitness  { --a: #06b6d4; --b: #16a34a; }
.dc-scene--fuel     { --a: #1f2937; --b: #dc2626; }
.dc-scene--retail   { --a: #db2777; --b: #7c3aed; }
.dc-scene--market   { --a: #eab308; --b: #16a34a; }
.dc-scene--medical  { --a: #0ea5e9; --b: #6366f1; }
.dc-scene--hotel    { --a: #b45309; --b: #1e293b; }
.dc-scene--auto     { --a: #334155; --b: #0ea5e9; }
.dc-scene--beauty   { --a: #f43f5e; --b: #a855f7; }
.dc-scene--office   { --a: #4f46e5; --b: #0ea5e9; }
.dc-scene--school   { --a: #0d9488; --b: #2563eb; }
.dc-scene--window   { --a: #727cf5; --b: #ec4899; }
.dc-ind__foot { width: 28%; height: 5px; margin: 0 auto; background: #0b1020; border-radius: 0 0 4px 4px; }

/* --- Hardware: Testgeraet ------------------------------------------------ */
.dc-hw { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.dc-hw__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.dc-hw__list li { display: flex; gap: 12px; align-items: flex-start; }
.dc-hw__list .dc-icon { color: var(--dc-success); flex: none; margin-top: 3px; }
.dc-hw__list b { display: block; }
.dc-hw__list span { color: var(--dc-text-muted); font-size: 15px; }
.dc-hw__visual { position: relative; padding: 30px 20px 60px; container-type: inline-size; }
.dc-hw__tv { position: relative; border-radius: 10px; border: 4px solid #0b1020; background: #0b1020; box-shadow: var(--dc-shadow-3); }
.dc-hw__tv .dc-scene { border: 0; border-radius: 6px; box-shadow: none; font-size: 3.4cqw; }
.dc-hw__stand { width: 34%; height: 8px; margin: 0 auto; background: #0b1020; border-radius: 0 0 6px 6px; }
.dc-hw__box { position: absolute; right: 8px; bottom: 0; width: 44%; padding: 14px 16px; background: #fff; border: 1px solid var(--dc-border); border-radius: 14px; box-shadow: var(--dc-shadow-2); }
.dc-hw__box b { display: block; font-size: 14px; }
.dc-hw__box span { font-size: 12.5px; color: var(--dc-text-muted); }
.dc-hw__player { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dc-hw__player i { width: 46px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, #1f2937, #0b1020); position: relative; flex: none; }
.dc-hw__player i::after { content: ""; position: absolute; right: 6px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--dc-success); box-shadow: 0 0 8px var(--dc-success); }

/* --- Zahlen-Band --------------------------------------------------------- */
.dc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dc-stat { padding: 22px; text-align: center; border: 1px solid var(--dc-border-subtle); border-radius: var(--dc-radius-md); background: var(--dc-surface); }
.dc-stat b { display: block; font-size: 32px; font-weight: 800; letter-spacing: -.02em; color: var(--dc-primary-strong); line-height: 1.1; }
.dc-stat span { font-size: 14px; color: var(--dc-text-muted); }

/* --- Formular: Testgeraet (Plugin) --------------------------------------- */
.dcc-field textarea { min-height: 110px; padding: 10px 12px; border: 1px solid var(--dc-border); border-radius: 10px; font: inherit; color: var(--dc-text); background: #fff; width: 100%; resize: vertical; }
.dcc-field textarea:focus { border-color: var(--dc-primary); outline: 3px solid var(--dc-primary-weak); }
.dcc-side { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.dcc-side .dcc-form { max-width: none; margin: 0; }
.dcc-side__box { padding: 24px; border-radius: var(--dc-radius-lg); background: var(--dc-tint); border: 1px solid var(--dc-border-subtle); }
.dcc-side__box h3 { font-size: 17px; margin-bottom: 12px; }
.dcc-side__box ol { padding-left: 1.2em; color: var(--dc-text-muted); font-size: 15px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.dcc-side__box p { font-size: 14px; color: var(--dc-text-muted); margin: 0 0 8px; }
.dcc-side__box a { font-weight: 600; }

@media (max-width: 1024px) {
	.dc-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.dc-stats { grid-template-columns: repeat(2, 1fr); }
	.dc-hw { grid-template-columns: 1fr; gap: 32px; }
	.dc-hw__visual { max-width: 560px; margin: 0 auto; width: 100%; }
	.dcc-side { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
	.dc-header__cta .dc-btn--primary { display: none; }
	.dc-header__cta .dc-btn--ghost { padding: 0 12px; }
	.dc-header__cta .dc-btn--ghost .dc-btn__label { display: none; }
	.dc-grid--4 { grid-template-columns: 1fr; }
	.dc-hw__visual { padding-bottom: 20px; }
	.dc-hw__box { position: static; width: auto; margin-top: 16px; }
}
@media (max-width: 420px) {
	.dc-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
	.dc-stat b { font-size: 26px; }
	.dc-hero__actions .dc-btn { width: 100%; }
}


/* ======================================================================
   1.2: Fotos und Videos (assets/media, Quellen: QUELLEN.txt), grosse
   Schlagzeilen, schraege Farbflaechen. Ueberschreibt Teile von oben.
   ====================================================================== */
:root { --dc-navy: #0b1020; --dc-navy-2: #141a33; --dc-skew: 56px; }
.dc-h-big { font-size: clamp(34px, 5.2vw, 66px); line-height: .98; font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.dc-h-mid { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.02; font-weight: 800; letter-spacing: -.025em; text-transform: uppercase; }
.dc-section__title { text-transform: uppercase; letter-spacing: -.02em; font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.04; }
.dc-kicker--light { background: rgba(255, 255, 255, .14); color: #fff; }
.dc-on-dark { color: #fff; }
.dc-on-dark .dc-section__text, .dc-on-dark p { color: rgba(255, 255, 255, .78); }
.dc-skew-b { clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--dc-skew)), 0 100%); padding-bottom: calc(84px + var(--dc-skew)); }
.dc-skew-t { clip-path: polygon(0 var(--dc-skew), 100% 0, 100% 100%, 0 100%); padding-top: calc(84px + var(--dc-skew)); margin-top: calc(-1 * var(--dc-skew)); }
.dc-skew-tb { clip-path: polygon(0 var(--dc-skew), 100% 0, 100% calc(100% - var(--dc-skew)), 0 100%); padding-top: calc(84px + var(--dc-skew)); padding-bottom: calc(84px + var(--dc-skew)); margin-top: calc(-1 * var(--dc-skew)); }

/* --- Hero mit Video ------------------------------------------------------ */
.dc-vhero { position: relative; min-height: min(88vh, 860px); display: flex; align-items: center; color: #fff; background: var(--dc-navy); overflow: hidden; padding: 96px 0 120px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--dc-skew)), 0 100%); }
.dc-vhero__media { position: absolute; inset: 0; background: url(../media/hero-poster-800.webp) center / cover no-repeat; }
.dc-vhero__media video, .dc-vhero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-vhero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 16, 32, .92) 0%, rgba(11, 16, 32, .72) 45%, rgba(11, 16, 32, .35) 100%), linear-gradient(0deg, rgba(11, 16, 32, .85) 0%, transparent 40%); }
.dc-vhero__inner { position: relative; max-width: 760px; }
.dc-vhero__title { color: #fff; margin-bottom: 20px; }
.dc-vhero__title em { font-style: normal; color: var(--dc-primary); }
.dc-vhero__lead { font-size: 19px; color: rgba(255, 255, 255, .82); max-width: 600px; margin-bottom: 28px; }
.dc-vhero .dc-hero__note { color: rgba(255, 255, 255, .75); }
.dc-vhero .dc-btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.dc-vhero .dc-btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.dc-vhero__scroll { position: absolute; left: 50%; bottom: calc(var(--dc-skew) + 14px); transform: translateX(-50%); color: rgba(255, 255, 255, .6); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

/* --- Zahlenband auf Lila ------------------------------------------------- */
.dc-band { background: linear-gradient(120deg, var(--dc-primary-strong), var(--dc-primary)); color: #fff; padding: 36px 0 calc(36px + var(--dc-skew)); margin-top: calc(-1 * var(--dc-skew)); clip-path: polygon(0 var(--dc-skew), 100% 0, 100% calc(100% - var(--dc-skew)), 0 100%); padding-top: calc(36px + var(--dc-skew)); }
.dc-band .dc-stats { gap: 12px; }
.dc-band .dc-stat { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); }
.dc-band .dc-stat b { color: #fff; }
.dc-band .dc-stat span { color: rgba(255, 255, 255, .8); }

/* --- Branchen: Fotokacheln ----------------------------------------------- */
.dc-tiles { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.dc-tile { position: relative; overflow: hidden; border-radius: 16px; background: var(--dc-navy); color: #fff; container-type: inline-size; isolation: isolate; }
.dc-tile--big { grid-column: span 2; grid-row: span 2; }
.dc-tile--wide { grid-column: span 2; }
.dc-tile--wide .dc-tile__screen { width: 30%; }
.dc-tile--wide .dc-tile__screen .dc-scene { font-size: 1.3cqw; }
.dc-tile picture { position: absolute; inset: 0; }
.dc-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dc-tile:hover img { transform: scale(1.06); }
.dc-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11, 16, 32, .9) 0%, rgba(11, 16, 32, .3) 50%, rgba(11, 16, 32, 0) 100%); }
.dc-tile__text { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; }
.dc-tile__title { display: block; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.05; margin-bottom: 4px; color: #fff; }
.dc-tile__sub { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .8); line-height: 1.35; max-width: 34ch; }
.dc-tile--big .dc-tile__title { font-size: 30px; }
.dc-tile--big .dc-tile__sub { font-size: 15px; max-width: 46ch; }
.dc-tile__screen { position: absolute; top: 12px; right: 12px; width: 46%; z-index: 2; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .45)); }
.dc-tile__screen .dc-scene { font-size: 1.95cqw; border-width: 2px; }
.dc-tile--big .dc-tile__screen { width: 34%; }
.dc-tile--big .dc-tile__screen .dc-scene { font-size: 1.45cqw; }
.dc-tile__screen .dc-ind__foot { height: 3px; width: 26%; }

/* --- Vergleich: Kreide vs. direct-clip ---------------------------------- */
.dc-vs { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--dc-shadow-3); }
.dc-vs__side { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; background: var(--dc-navy); }
.dc-vs__side video, .dc-vs__side > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dc-vs__side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11, 16, 32, .9) 0%, rgba(11, 16, 32, .15) 60%); }
.dc-vs__side > * { position: relative; z-index: 1; }
.dc-vs__tag { display: inline-block; align-self: flex-start; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; background: rgba(255, 255, 255, .18); }
.dc-vs__side--new .dc-vs__tag { background: var(--dc-primary); }
.dc-vs__side--new { background: linear-gradient(160deg, #1b2247, var(--dc-navy)); justify-content: center; align-items: center; padding: 40px 28px 28px; }
.dc-vs__side--new::after { display: none; }
.dc-vs__tv { width: min(100%, 440px); container-type: inline-size; }
.dc-vs__tv .dc-scene { font-size: 4.2cqw; box-shadow: 0 30px 60px rgba(0, 0, 0, .5); }
.dc-vs__side--new .dc-vs__caption { margin-top: 22px; text-align: center; }
.dc-vs h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 6px; }
.dc-vs p { margin: 0; color: rgba(255, 255, 255, .8); font-size: 15px; }

/* --- Dunkler Funktionsblock ---------------------------------------------- */
.dc-section--dark { background: var(--dc-navy); color: #fff; }
.dc-section--dark .dc-feature { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); }
.dc-section--dark .dc-feature:hover { border-color: var(--dc-primary); box-shadow: 0 12px 40px rgba(114, 124, 245, .25); }
.dc-section--dark .dc-feature__icon { background: rgba(114, 124, 245, .18); color: #a5acff; }
.dc-section--dark .dc-feature__title { color: #fff; }
.dc-section--dark .dc-feature p { color: rgba(255, 255, 255, .72); }
.dc-section--dark .dc-kicker { background: rgba(114, 124, 245, .2); color: #c7cbff; }
.dc-section--dark .dc-section__text { color: rgba(255, 255, 255, .75); }
.dc-console { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; align-items: center; margin-bottom: 56px; }
.dc-console__photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--dc-shadow-3); aspect-ratio: 4 / 3; }
.dc-console__photo picture, .dc-console__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-console__mock { position: absolute; left: 6%; right: 6%; bottom: 8%; }
.dc-console__mock .dc-mock { padding: 0; color: var(--dc-text); }
.dc-console__mock .dc-mock__kpi b { color: var(--dc-text); }
.dc-console__mock .dc-mock__kpi--ok b { color: var(--dc-success); }
.dc-console__mock .dc-mock__kpi--warn b { color: var(--dc-warning); }
.dc-console__mock .dc-mock__tv, .dc-console__mock .dc-mock__phone { display: none; }

/* --- Testgeraet auf Foto ------------------------------------------------- */
.dc-photo-sec { position: relative; color: #fff; background: var(--dc-navy); overflow: hidden; }
.dc-photo-sec__bg { position: absolute; inset: 0; }
.dc-photo-sec__bg picture { display: block; height: 100%; }
.dc-photo-sec__bg img, .dc-photo-sec__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.dc-photo-sec__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 16, 32, .94) 0%, rgba(11, 16, 32, .8) 50%, rgba(11, 16, 32, .45) 100%); }
.dc-photo-sec--center .dc-photo-sec__bg::after { background: linear-gradient(0deg, rgba(11, 16, 32, .85), rgba(11, 16, 32, .65)); }
.dc-photo-sec .dc-wrap { position: relative; }
.dc-photo-sec .dc-hw__list span { color: rgba(255, 255, 255, .75); }
.dc-photo-sec .dc-hw__list .dc-icon { color: #8ef0b0; }
.dc-photo-sec .dc-section__text { color: rgba(255, 255, 255, .8); }
.dc-photo-sec .dc-kicker { background: rgba(255, 255, 255, .14); color: #fff; }
.dc-photo-sec__inner { max-width: 620px; }

/* --- Abschluss mit Video ------------------------------------------------- */
.dc-cta--video { position: relative; overflow: hidden; background: var(--dc-navy); padding: 110px 0; }
.dc-cta--video .dc-cta__inner { position: relative; max-width: 820px; }
.dc-cta--video .dc-cta__title { text-transform: uppercase; font-weight: 800; letter-spacing: -.02em; font-size: clamp(30px, 4.4vw, 56px); line-height: 1; }

@media (max-width: 1024px) {
	.dc-tiles { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
	.dc-tile--big { grid-column: span 2; grid-row: span 2; }
	.dc-tile--big .dc-tile__screen, .dc-tile--wide .dc-tile__screen { width: 34%; }
	.dc-tile--big .dc-tile__screen .dc-scene, .dc-tile--wide .dc-tile__screen .dc-scene { font-size: 1.45cqw; }
	.dc-vs { grid-template-columns: 1fr; }
	.dc-console { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
	:root { --dc-skew: 28px; }
	.dc-vhero { min-height: 0; padding: 64px 0 90px; }
	.dc-vhero__media video { display: none; }
	.dc-vhero__scroll { display: none; }
	.dc-tiles { grid-template-columns: 1fr; grid-auto-rows: 230px; }
	.dc-tile--big, .dc-tile--wide { grid-column: span 1; grid-row: span 1; }
	.dc-tile__screen, .dc-tile--wide .dc-tile__screen { width: 44%; }
	.dc-tile__screen .dc-scene, .dc-tile--big .dc-tile__screen .dc-scene, .dc-tile--wide .dc-tile__screen .dc-scene { font-size: 1.85cqw; }
	.dc-tile--big .dc-tile__title { font-size: 22px; }
	.dc-tile--big .dc-tile__sub { font-size: 13.5px; }
	.dc-vs__side { min-height: 300px; }
	.dc-cta--video { padding: 72px 0; }
}


/* --- Branchen: Fotokarten (KI-Bilder 16:9 unbeschnitten, Text darunter) --- */
.dc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dc-card { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; background: var(--dc-surface); border: 1px solid var(--dc-border); transition: box-shadow .25s, transform .25s, border-color .25s; }
.dc-card:hover { box-shadow: var(--dc-shadow-2); transform: translateY(-3px); border-color: var(--dc-primary-weak-brd); }
.dc-card__photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--dc-navy); }
.dc-card__photo picture, .dc-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dc-card:hover .dc-card__photo img { transform: scale(1.05); }
.dc-card__body { padding: 16px 18px 20px; }
.dc-card__title { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; line-height: 1.1; margin-bottom: 6px; }
.dc-card__text { margin: 0; font-size: 14.5px; color: var(--dc-text-muted); }
.dc-hw__photo { position: relative; }
.dc-hw__photo picture, .dc-hw__photo img { display: block; width: 100%; border-radius: 20px; box-shadow: var(--dc-shadow-3); }
.dc-hw__photo .dc-hw__box { position: absolute; left: 18px; top: 18px; bottom: auto; width: min(52%, 300px); right: auto; }
@media (max-width: 1024px) { .dc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .dc-cards { grid-template-columns: 1fr; gap: 14px; } .dc-hw__photo .dc-hw__box { position: static; width: auto; margin-top: 14px; } }


/* ======================================================================
   1.4: helle Seite -- Foto-Hero, Vorher/Nachher-Fotos, Abschluss mit Foto.
   ====================================================================== */
.dc-lhero { padding: 64px 0 56px; background: radial-gradient(900px 520px at 90% 0%, var(--dc-primary-weak) 0%, transparent 60%), linear-gradient(180deg, #fff 0%, var(--dc-tint) 100%); }
.dc-lhero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.dc-lhero__title { margin-bottom: 18px; }
.dc-lhero__title em { font-style: normal; color: var(--dc-primary); }
.dc-lhero__lead { font-size: 19px; color: var(--dc-text-muted); max-width: 520px; margin-bottom: 26px; }
.dc-lhero__photo picture, .dc-lhero__photo img { display: block; width: 100%; border-radius: 24px; box-shadow: var(--dc-shadow-3); }
.dc-band--flat { clip-path: none; margin-top: 0; padding: 36px 0; }
.dc-band__title { margin: 0 0 18px; text-align: center; font-weight: 700; font-size: 17px; color: #fff; }
.dc-trust__facts--left { justify-content: flex-start; margin-top: 18px; }
.dc-ba { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; }
.dc-ba__item { margin: 0; background: var(--dc-surface); border: 1px solid var(--dc-border); border-radius: 20px; overflow: hidden; }
.dc-ba__item--new { border-color: var(--dc-primary); box-shadow: var(--dc-shadow-3); }
.dc-ba__photo { position: relative; aspect-ratio: 16 / 9; }
.dc-ba__photo picture, .dc-ba__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.dc-ba__tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 999px; background: rgba(11, 16, 32, .75); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.dc-ba__tag--new { background: var(--dc-primary); }
.dc-ba figcaption { padding: 18px 22px 22px; }
.dc-ba figcaption h3 { font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 4px; }
.dc-ba figcaption p { margin: 0; color: var(--dc-text-muted); font-size: 15px; }
.dc-console { margin-bottom: 0; }
.dc-console__photo { aspect-ratio: auto; }
.dc-feature--row { display: flex; gap: 14px; align-items: flex-start; padding: 20px; }
.dc-feature--row .dc-feature__icon { margin: 0; width: 42px; height: 42px; flex: none; }
.dc-feature--row .dc-feature__title { font-size: 16px; margin-bottom: 2px; }
.dc-feature--row p { font-size: 14px; }
.dc-lcta { background: linear-gradient(135deg, var(--dc-primary) 0%, var(--dc-primary-strong) 100%); color: #fff; padding: 72px 0; }
.dc-lcta__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.dc-lcta__title { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; line-height: 1.02; margin-bottom: 14px; }
.dc-lcta__lead { font-size: 18px; color: rgba(255, 255, 255, .9); margin-bottom: 26px; }
.dc-lcta__photo picture, .dc-lcta__photo img { display: block; width: 100%; border-radius: 24px; box-shadow: 0 24px 60px rgba(11, 16, 32, .35); }
.dc-cta__actions--left { justify-content: flex-start; }
@media (max-width: 1024px) {
	.dc-lhero__grid, .dc-lcta__grid { grid-template-columns: 1fr; gap: 32px; }
	.dc-lhero__photo, .dc-lcta__photo { max-width: 640px; }
	.dc-ba { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
	.dc-lhero { padding: 36px 0 40px; }
	.dc-lhero__lead { font-size: 17px; }
	.dc-lcta { padding: 56px 0; }
	.dc-cta__actions--left .dc-btn { width: 100%; }
	.dc-hw { display: flex; flex-direction: column-reverse; }
}

/* Fusszeile hell (17.09.) */
.dc-footer { background: var(--dc-tint); color: var(--dc-text-muted); border-top: 1px solid var(--dc-border); }
.dc-footer a { color: var(--dc-text); }
.dc-footer a:hover { color: var(--dc-primary); }
.dc-footer__grid { border-bottom-color: var(--dc-border); }
.dc-footer__brand { display: block; }
.dc-footer__brand > .dc-logo__mark, .dc-footer__brand > .dc-logo__word { vertical-align: middle; }
.dc-footer__brand > .dc-logo__mark { margin-right: 9px; }
.dc-footer h4, .dc-footer__made, .dc-footer__bottom { color: var(--dc-text-subtle); }


/* Heller Video-Hero + heller Video-Abschluss (17.09.) */
.dc-vhero--light { clip-path: none; color: var(--dc-text); background: var(--dc-tint); min-height: min(80vh, 760px); padding: 80px 0; }
.dc-vhero--light .dc-vhero__media::after { background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 38%, rgba(255, 255, 255, .55) 62%, rgba(255, 255, 255, .15) 100%); }
.dc-vhero--light .dc-vhero__title { color: var(--dc-text); }
.dc-vhero--light .dc-vhero__lead { color: var(--dc-text-muted); }
.dc-vhero--light .dc-hero__note { color: var(--dc-text-muted); }
.dc-vhero--light .dc-btn--ghost { color: var(--dc-text); border-color: var(--dc-border); background: rgba(255, 255, 255, .8); }
.dc-vhero--light .dc-btn--ghost:hover { border-color: var(--dc-primary); color: var(--dc-primary); background: #fff; }
.dc-vhero--light .dc-vhero__inner { max-width: 640px; }
.dc-vcta { position: relative; overflow: hidden; padding: 100px 0; background: var(--dc-tint); color: var(--dc-text); }
.dc-vcta .dc-vhero__media::after { background: rgba(255, 255, 255, .82); }
.dc-vcta__inner { position: relative; text-align: center; max-width: 760px; }
.dc-vcta__title { font-size: clamp(30px, 4.4vw, 54px); font-weight: 800; text-transform: uppercase; letter-spacing: -.02em; line-height: 1.02; margin-bottom: 12px; }
.dc-vcta__lead { font-size: 18px; color: var(--dc-text-muted); margin-bottom: 26px; }
@media (max-width: 767px) {
	.dc-vhero--light { min-height: 0; padding: 40px 0 44px; }
	.dc-vhero--light .dc-vhero__media::after { background: rgba(255, 255, 255, .88); }
	.dc-vcta { padding: 64px 0; }
	.dc-vcta .dc-cta__actions .dc-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.dc-mock__tv-ticker i, .dc-scene__ticker span { animation: none; }
	.dc-tile img, .dc-card__photo img { transition: none; }
	.dc-feature, .dc-btn { transition: none; }
}
