/* ============================================================
   DELTA WEB SOLUTION — Frontend
   Color-System:
     Blau (Haupt)   #00375B   — großflächig mit Parallax
     Blau (dunkel)  #002340
     Blau (hell)    #0080C0
     Schwarz        #000000   — Tiefe oben (~28%) und unten
     Gelb (Akzent)  #EFF631   — NUR Highlights · Italic-Wörter · kleine CTAs
     Weiß           #FFFFFF   — Wechsel-BG für helle Sektionen
   Schriften: Plus Jakarta Sans + Inter + Instrument Serif (Italic) + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800;900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bk:        #000000;
    --bl:        #00375B;
    --bl-d:      #002340;
    --bl-l:      #0080C0;
    --y:         #EFF631;
    --y-d:       #C5CC1E;
    --w:         #FFFFFF;
    --ink:       #0A1620;
    --m:         rgba(255, 255, 255, .62);
    --m2:        rgba(255, 255, 255, .82);
    --b-d:       rgba(255, 255, 255, .12);
    --b-l:       rgba(0, 0, 0, .08);
    --glass-d:   rgba(255, 255, 255, .06);
    --glass-l:   rgba(255, 255, 255, .85);
    /* Hero-Verlauf: radial-Ellipse oben (Mockup-Style) */
    --grad-hero: radial-gradient(ellipse at top, #006194 0%, #003B5C 50%, #000 100%);
    --grad-y:    linear-gradient(135deg, #EFF631 0%, #FFD700 100%);
}
html, body { background: var(--bk); color: var(--w); font-family: 'Inter', -apple-system, sans-serif; line-height: 1.55; overflow-x: hidden; scroll-behavior: smooth; }
body.da-no-scroll { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Italic-Akzent: gleiche Größe & Weight, NUR Farbe ändert sich */
em.iy { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: var(--y); }
em.ib { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: var(--bl-l); }
em.iw { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: rgba(255, 255, 255, .7); }

/* Dunkle Sektion vs Helle Sektion — mit Mouse-Follow-Gradient */
section.s-dark, section.s-blue { --gx: 50%; --gy: 30%; position: relative; overflow: hidden; color: var(--w); }
section.s-dark {
    background:
        radial-gradient(circle at var(--gx) var(--gy), rgba(0, 128, 192, .4) 0%, transparent 45%),
        var(--grad-hero);
    transition: background .5s ease;
}
section.s-blue {
    background:
        radial-gradient(circle at var(--gx) var(--gy), rgba(239, 246, 49, .12) 0%, transparent 40%),
        linear-gradient(180deg, var(--bl), var(--bl-d));
    transition: background .5s ease;
}
section.s-light { background: var(--w); color: var(--ink); position: relative; }

.da-skip { position: absolute; left: -9999px; }
.da-skip:focus { left: 50%; top: 8px; transform: translateX(-50%); padding: 8px 16px; background: var(--y); color: var(--bk); border-radius: 99px; z-index: 9999; }

.dw-container, .da-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .dw-container, .da-container { padding: 0 18px; } }

/* ───── HEADER (Glass-Pill · Overlay über Hero · weißer Hairline-Border) ───── */
/* Body bekommt KEINEN top-padding — der Header schwebt absolut über der ersten Section.
   Jede erste Section (.s-dark.dw-page-hero / .dw-hero) liefert genug Top-Padding, damit
   der Inhalt nicht hinter dem Header verschwindet. */
.da-header {
    position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
    z-index: 100;
    max-width: 1280px; width: calc(100% - 48px);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    transition: background .3s, border-color .3s, box-shadow .3s, transform .25s;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
    --gx: 50%; --gy: 50%;
}
.da-header::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--gx) var(--gy), rgba(255, 255, 255, .08) 0%, transparent 55%);
    border-radius: inherit; pointer-events: none;
    transition: background .35s ease;
}
.da-header.is-scrolled {
    background: rgba(0, 0, 0, .65);
    border-color: rgba(255, 255, 255, .14);
}
/* Inner-Padding: 3px extra oben/unten am Standard, schmilzt fließend zu 0 wenn Header sticky/scrolled wird */
.da-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 8px 12px 18px; /* +1px oben/unten gegenüber sticky-Zustand (11→12) */
    gap: 18px; position: relative;
    transition: padding .35s cubic-bezier(.4, 0, .2, 1);
}
.da-header.is-scrolled .da-header-inner { padding: 8px 8px 8px 18px; }

/* ─── Logo (Stacked Text — Mockup) ─── */
.da-logo { display: inline-flex; align-items: center; line-height: 1; color: #fff; transition: transform .25s; text-decoration: none; }
.da-logo:hover { transform: translateY(-1px); }
.da-logo-stack { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.da-logo-stack b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 17px; letter-spacing: -.5px; color: #fff; transition: color .2s; }
.da-logo-stack i { display: block; width: 46px; height: 1.5px; background: var(--y); margin: 4px 0; border-radius: 2px; font-style: normal; transition: background .2s, width .2s; }
.da-logo-stack span { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(255, 255, 255, .55); letter-spacing: 4px; font-weight: 500; transition: color .2s; }
.da-logo:hover .da-logo-stack b { color: var(--y); }
.da-logo:hover .da-logo-stack i { background: #fff; width: 56px; }
.da-logo:hover .da-logo-stack span { color: rgba(255, 255, 255, .9); }
.da-logo-svg { display: inline-flex; align-items: center; }
.da-logo-svg svg { display: block; height: 100%; width: auto; }
.da-logo-svg.da-logo-sm svg { height: 34px; }   /* +5 % */
.da-logo-svg.da-logo-md svg { height: 46px; }   /* +5 % */
.da-logo-svg.da-logo-lg svg { height: 67px; }   /* +5 % */
.da-logo-img { display: block; max-height: 46px; width: auto; }

/* ─── Nav (Mockup: gelber Hover-BG, kein Pill) ─── */
.da-nav-list { display: flex; gap: 28px; list-style: none; align-items: center; position: relative; }
@media (max-width: 1100px) { .da-nav-list { gap: 14px; } }
.da-nav-list > li { position: relative; }
.da-nav-list a {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 7px 12px; border-radius: 10px;
    font-size: 13px; color: rgba(255, 255, 255, .78); font-weight: 500;
    transition: color .25s, background .25s, transform .25s;
    position: relative;
    --hx: 0px; --hy: 0px;
    transform: translate3d(var(--hx), var(--hy), 0);
}
.da-nav-list a .da-nav-txt {
    display: inline-block; transition: font-family .15s, font-style .15s, letter-spacing .25s;
}
.da-nav-list a:hover { color: var(--bk); background: var(--y); }
.da-nav-list a:hover .da-nav-txt {
    font-family: 'Instrument Serif', 'Plus Jakarta Sans', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.01em;
}
.da-nav-list > li.current > a { color: var(--bk); background: var(--y); font-weight: 700; }
/* Admin-Only-Menü-Items: kleiner Schloss-Indikator (nur Admin sieht das) */
.da-nav-list li.da-nav-admin-only a::before {
    content: '🔒';
    margin-right: 4px;
    font-size: 10px;
    opacity: .7;
    vertical-align: middle;
}
.da-nav-list > li.current > a .da-nav-txt {
    font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 600; font-size: 16px;
}
/* HARD-RESET — Submenü-Items dürfen NIE gelb werden, egal wie der Eltern-Reiter klassifiziert ist */
.da-nav-sub li > a,
.da-nav-sub li.is-active > a,
.da-nav-sub li > a:hover,
.da-nav-list .current .da-nav-sub li > a,
.da-nav-list .current .da-nav-sub li.is-active > a,
.da-nav-list .current .da-nav-sub li > a:hover {
    background: transparent !important;
    color: #fff !important;
}
.da-nav-sub li > a .da-nav-txt,
.da-nav-list .current .da-nav-sub li > a .da-nav-txt {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: inherit !important;
    font-size: inherit !important;
}
.da-nav-list li { position: relative; }
.da-nav-list .has-sub > a .caret { font-size: 9px; opacity: .6; margin-left: 2px; transition: transform .2s; }
.da-nav-list .has-sub:hover > a .caret { transform: rotate(180deg); opacity: 1; }
.da-nav-sub {
    position: absolute; top: 100%; left: 0; min-width: 280px;
    /* Blau-Gradient BG (statt einfarbigem dunkelblau) */
    background: linear-gradient(160deg,
        #00375B 0%,
        #002340 55%,
        #001828 100%);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(239, 246, 49, .25);
    border-radius: 14px; padding: 8px; list-style: none;
    margin-top: 14px;
    opacity: 0; pointer-events: none; transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .35s;
    visibility: hidden;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .55),
        0 0 0 1px rgba(0, 128, 192, .15) inset;
    z-index: 50;
}
/* Unsichtbare Brücke zwischen Reiter und Submenü, damit der Maus-Cursor nicht durch die Lücke „abfällt" */
.da-nav-sub::before {
    content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 18px;
}
.da-nav-list .has-sub:hover > .da-nav-sub,
.da-nav-list .has-sub:focus-within > .da-nav-sub,
.da-nav-sub:hover {
    opacity: 1; pointer-events: auto; transform: translateY(0);
    visibility: visible;
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.da-nav-sub a { display: block; padding: 10px 14px; border-radius: 10px; }
.da-nav-sub strong { display: block; color: #fff; font-size: 13px; font-weight: 700; }
.da-nav-sub span { display: block; color: rgba(255, 255, 255, .55); font-size: 11px; margin-top: 2px; }
/* Submenu-Items — KEIN Background-Wechsel auf Hover/Active.
   Default = transparent (Panel-Gradient blau→schwarz scheint durch).
   Hover  = Pfeil rechts erscheint.
   Active = Pulse-Dot rechts. */
.da-nav-sub { display: flex; flex-direction: column; gap: 6px; }
.da-nav-sub li > a {
    position: relative;
    padding: 12px 36px 12px 16px;
    border-radius: 8px;
    background: transparent;
    transition: color .2s, padding .25s cubic-bezier(.2, .7, .2, 1);
}

/* Pfeil rechts (nur bei Hover sichtbar) */
.da-nav-sub li > a::after {
    content: '→';
    position: absolute;
    right: 14px; top: 50%;
    transform: translate(8px, -50%);
    color: var(--y);
    font-size: 14px; font-weight: 700;
    opacity: 0;
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), opacity .25s;
    pointer-events: none;
}
.da-nav-sub a:hover {
    background: transparent;
    padding-left: 22px;
}
.da-nav-sub a:hover::after  { opacity: 1; transform: translate(0, -50%); }
.da-nav-sub a:hover strong  { color: var(--y) !important; font-weight: 800; transition: color .2s; }
.da-nav-sub a:hover span    { color: rgba(255, 255, 255, .8) !important; }

/* AKTIV · nur Pulse-Dot rechts. Kein BG. */
.da-nav-sub li.is-active > a {
    padding-right: 38px;
    background: transparent;
    box-shadow: none;
}
.da-nav-sub li.is-active > a strong {
    color: #fff !important;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(239, 246, 49, .3);
}
.da-nav-sub li.is-active > a span {
    color: rgba(255, 255, 255, .7) !important;
}
/* aktiv + hover: Pulse-Dot bleibt, Pfeil bleibt aus (Pulse übernimmt rechte Seite) */
.da-nav-sub li.is-active > a:hover {
    background: transparent;
    padding-left: 16px;
}
.da-nav-sub li.is-active > a::after { display: none; }
.da-nav-sub-pulse {
    position: absolute;
    right: 12px; top: 50%;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--y);
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(239, 246, 49, .55);
    animation: subPulse 2s cubic-bezier(.66, 0, 0, 1) infinite;
}
.da-nav-sub-pulse::before {
    content: ''; position: absolute; inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(239, 246, 49, .5);
    animation: subRing 2s cubic-bezier(.4, 0, 0, 1) infinite;
}
@keyframes subPulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 246, 49, .65); }
    70%  { box-shadow: 0 0 0 10px rgba(239, 246, 49, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 246, 49, 0); }
}
@keyframes subRing {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Header-CTA: gelber Box-Button wie im Mockup */
.da-header-cta {
    display: inline-flex !important; align-items: center; gap: 8px;
    padding: 11px 20px !important;
    background: var(--y) !important; color: var(--bk) !important;
    border-radius: 14px !important;
    font-weight: 700 !important; font-size: 13px !important;
    box-shadow: 0 8px 22px rgba(239, 246, 49, .25) !important;
    border: none !important;
    transition: transform .2s, box-shadow .25s !important;
}
.da-header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(239, 246, 49, .4) !important; }
.da-header-cta::after { content: '→'; font-size: 15px; font-weight: 700; }

.da-burger { display: none; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); cursor: pointer; padding: 10px; flex-direction: column; gap: 4px; border-radius: 50%; width: 38px; height: 38px; align-items: center; justify-content: center; }
.da-burger span { display: block; width: 16px; height: 1.5px; background: #fff; border-radius: 2px; }

@media (max-width: 900px) {
    .da-nav { position: fixed; inset: 64px 0 0; background: rgba(0, 0, 0, .98); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform .3s; padding: 40px 32px; overflow-y: auto; z-index: 999; }
    .da-nav.is-open { transform: translateX(0); }
    .da-nav-list { flex-direction: column; gap: 24px; font-size: 22px; align-items: stretch; }
    .da-nav-list > li { width: 100%; }
    .da-nav-list a { width: 100%; }
    .da-burger { display: flex; }
    .da-header-cta { display: none; }

    /* ── Mobile Submenü: gleiche Regeln wie das Untermenü Desktop, aber als Akkordeon ── */
    .da-nav-sub {
        position: static; transform: none; opacity: 1; visibility: visible;
        background: transparent; border: 0; box-shadow: none; padding: 0;
        max-height: 0; overflow: hidden; transition: max-height .35s ease, margin .35s ease;
        margin: 0;
    }
    .da-nav-sub::before { display: none; }
    .da-nav-list > li.has-sub.is-sub-open > .da-nav-sub { max-height: 600px; margin-top: 14px; }
    .da-nav-list > li.has-sub > a .caret { transition: transform .25s; }
    .da-nav-list > li.has-sub.is-sub-open > a .caret { transform: rotate(180deg); }

    /* Burger-Animation X */
    .da-burger.is-active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .da-burger.is-active span:nth-child(2) { opacity: 0; }
    .da-burger.is-active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
    .da-burger span { transition: transform .25s, opacity .2s; transform-origin: center; }

    body.da-no-scroll { overflow: hidden; }
}

/* ───── BUTTONS ───── */
.da-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 14px;
    font-weight: 700; font-size: 13px; cursor: pointer; font-family: inherit;
    border: 1px solid transparent;
    transition: transform .2s, box-shadow .2s, background .25s;
    text-decoration: none;
}
.da-btn-primary { background: var(--y); color: var(--bk); box-shadow: 0 8px 22px rgba(239, 246, 49, .25); }
.da-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(239, 246, 49, .4); }
.da-btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .15); }
.da-btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--y); color: var(--y); }
.da-btn-bl { background: var(--bl); color: #fff; box-shadow: 0 8px 22px rgba(0, 55, 91, .35); }
.da-btn-bl:hover { background: var(--bl-d); transform: translateY(-2px); }
.da-btn-w { background: #fff; color: var(--ink); border-color: rgba(0, 0, 0, .08); }
.da-btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, .12); }
.da-btn-d { background: var(--bk); color: #fff; }
.da-btn-d:hover { transform: translateY(-2px); }

.da-btn-pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 6px 12px 22px; background: var(--y); color: var(--bk); border-radius: 99px; font-weight: 700; font-size: 14px; border: none; cursor: pointer; box-shadow: 0 12px 32px rgba(239, 246, 49, .3); transition: transform .25s; }
.da-btn-pill:hover { transform: translateY(-2px); }
.da-btn-pill .ic { width: 32px; height: 32px; background: var(--bk); color: var(--y); border-radius: 50%; display: grid; place-items: center; font-size: 13px; }

.da-btn-lg { padding: 15px 26px; font-size: 14px; }
.da-btn-sm { padding: 9px 16px; font-size: 12px; }

/* ───── PILL (Status-Badge) ───── */
.dw-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 10px;
    background: rgba(239, 246, 49, .1); border: 1px solid rgba(239, 246, 49, .3);
    font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--y);
    text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}
.dw-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--y); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.dw-pill-l { background: rgba(0, 55, 91, .08); border-color: rgba(0, 55, 91, .2); color: var(--bl); }
.dw-pill-l::before { background: var(--bl); }

/* ───── PARALLAX-Klassen (stärker im Blau, sanfter im Schwarz) ───── */
/* Maus-Parallax: --mx, --my werden vom JS gesetzt; Scroll-Parallax: --py.
   Beide addieren sich automatisch im Transform. */
.dw-parallax { will-change: transform; transition: transform .35s cubic-bezier(.2, .7, .2, 1); }

.dw-blob {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: .4; pointer-events: none;
    --mx: 0px; --my: 0px; --py: 0px;
    transform: translate3d(var(--mx), calc(var(--py) + var(--my)), 0);
    transition: transform .25s cubic-bezier(.2, .7, .2, 1);
}

/* ───── HERO (Konzept 01 · Hero-Hybrid · Mockup) ───── */
.dw-hero { position: relative; padding: 160px 0 80px; overflow: hidden; }
.dw-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.dw-hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
    font-size: clamp(35px, 4.8vw, 79px); line-height: 1.02; letter-spacing: -.035em; color: #fff;
}
.dw-hero-h1 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: var(--y); }
.dw-hero-text { color: rgba(255, 255, 255, .85); font-size: 18px; line-height: 1.65; border-left: 1px solid rgba(255, 255, 255, .12); padding-left: 24px; }
.dw-hero-text strong { color: var(--y); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.dw-hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
@media (max-width: 900px) { .dw-hero-text { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 18px; } }

.dw-hero-blob-1 { width: 600px; height: 600px; background: var(--bl); top: 30%; left: -200px; opacity: .6; }
.dw-hero-blob-2 { width: 500px; height: 500px; background: var(--bl-l); bottom: -150px; right: -100px; opacity: .4; }
@media (max-width: 900px) { .dw-hero-grid { grid-template-columns: 1fr; } }

/* ───── STATS-Strip ───── */
.dw-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    padding: 32px;
    background: rgba(0, 0, 0, .45); backdrop-filter: blur(20px);
    border: 1px solid var(--b-d);
    border-radius: 22px;
    margin-top: 80px;
}
.dw-stats .s { text-align: center; }
.dw-stats .s b { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: clamp(36px, 4vw, 56px); letter-spacing: -.025em; color: var(--y); display: block; line-height: 1; }
.dw-stats .s b em { color: #fff; font-family: inherit; font-weight: inherit; font-size: inherit; font-style: normal; }
.dw-stats .s span { display: block; font-size: 11px; color: rgba(255, 255, 255, .6); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
@media (max-width: 700px) { .dw-stats { grid-template-columns: 1fr 1fr; } }

/* ───── HERO LAPTOP-Mockup ───── */
.dw-laptop-frame { aspect-ratio: 16/9; border-radius: 28px; background: linear-gradient(135deg, var(--bl), var(--bl-d)); border: 1px solid var(--b-d); position: relative; overflow: hidden; box-shadow: 0 40px 100px rgba(0, 0, 0, .5); margin-top: 60px; }
.dw-laptop-frame::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(239, 246, 49, .15), transparent 60%); }
.dw-laptop-tablet { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 75%; background: #1A1A1A; border-radius: 14px; padding: 14px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.dw-laptop-bar { display: flex; gap: 5px; margin-bottom: 10px; }
.dw-laptop-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.dw-laptop-bar span:nth-child(1) { background: #FF5F56; }
.dw-laptop-bar span:nth-child(2) { background: #FFBD2E; }
.dw-laptop-bar span:nth-child(3) { background: #27C93F; }
.dw-laptop-content { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; aspect-ratio: 16/8; }
.dw-laptop-img { border-radius: 8px; background: linear-gradient(135deg, var(--y), #FFD700); position: relative; overflow: hidden; }
.dw-laptop-img:nth-child(2) { background: linear-gradient(135deg, var(--bl-l), var(--bl)); }
.dw-laptop-img-tag { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); font-family: 'JetBrains Mono', monospace; font-size: 9px; color: rgba(255, 255, 255, .85); background: rgba(0, 0, 0, .35); padding: 3px 8px; border-radius: 99px; letter-spacing: .08em; }

/* ───── SECTIONS GENERAL ───── */
.dw-sec { padding: 100px 0; position: relative; }
.dw-eyebrow { font-family: 'JetBrains Mono', monospace; color: var(--y); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.s-light .dw-eyebrow { color: var(--bl); }
.dw-h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 56px); letter-spacing: -.025em; line-height: 1.05; }
.dw-h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: var(--y); }
.s-light .dw-h2 em { color: var(--bl); }
.dw-lead { color: var(--m2); font-size: 17px; max-width: 640px; margin-top: 18px; line-height: 1.65; }
.s-light .dw-lead { color: rgba(10, 22, 32, .65); }

.da-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); }
.da-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ───── TECH MARQUEE (heller BG) ───── */
.dw-tech { padding-bottom: 60px; }
.dw-tech .dw-container { text-align: center; margin-bottom: 50px; }
.dw-tech .dw-lead { margin: 18px auto 0; }
.dw-mq-row { overflow: hidden; mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); margin-bottom: 16px; }
.dw-mq-track { display: flex; gap: 14px; width: max-content; animation: mq 30s linear infinite; }
.dw-mq-rev .dw-mq-track { animation-direction: reverse; animation-duration: 36s; }
@keyframes mq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.dw-mq-tag { padding: 14px 24px; background: rgba(0, 55, 91, .04); border: 1px solid var(--b-l); border-radius: 99px; font-weight: 600; font-size: 14px; white-space: nowrap; display: inline-flex; gap: 8px; align-items: center; color: var(--ink); }
.dw-mq-tag i { font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--bl); }

/* ───── TIMELINE / WORKFLOW (alle Nodes exakt mittig auf Center-Line) ─────
   Node ist absolut auf der Linie positioniert (left: 50%, translate -50% / -50%).
   Karten alternieren links/rechts via Grid-Spalte. */
.dw-tl { position: relative; max-width: 980px; margin: 50px auto 0; padding: 30px 0; }
.dw-tl::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, transparent, var(--y) 10%, var(--bl-l) 50%, var(--y) 90%, transparent);
    transform: translateX(-50%); border-radius: 2px; opacity: .5;
}
.dw-tl-row {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 100px;
    align-items: center; min-height: 180px; position: relative;
}
.dw-tl-row + .dw-tl-row { margin-top: 14px; }

/* Node — IMMER absolut auf der Mittellinie zentriert */
.dw-tl-node {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: var(--bl-d); border: 2px solid var(--y);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--y); font-size: 14px;
    z-index: 3;
    box-shadow: 0 0 0 6px var(--bl-d), 0 0 24px rgba(239, 246, 49, .25);
    transition: background .25s, color .25s, box-shadow .25s;
    cursor: pointer;
}
.dw-tl-row:hover .dw-tl-node {
    background: var(--y); color: var(--bl-d);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 0 6px var(--bl-d), 0 0 36px rgba(239, 246, 49, .65);
}

/* Cards — alternierende Spalte */
.dw-tl-card {
    background: rgba(0, 0, 0, .3); backdrop-filter: blur(20px);
    border: 1px solid var(--b-d); border-radius: 18px;
    padding: 26px 28px; transition: all .4s; cursor: pointer; position: relative;
}
.dw-tl-card::after { content: ''; position: absolute; top: 50%; width: 22px; height: 2px; background: var(--b-d); transform: translateY(-50%); }
.dw-tl-card-l { grid-column: 1; text-align: right; }
.dw-tl-card-l::after { right: -22px; }
.dw-tl-card-r { grid-column: 2; }
.dw-tl-card-r::after { left: -22px; }
.dw-tl-row:hover .dw-tl-card { border-color: rgba(239, 246, 49, .35); transform: translateY(-3px); background: rgba(0, 0, 0, .5); }
.dw-tl-row.is-left  .dw-tl-card-r { visibility: hidden; }
.dw-tl-row.is-right .dw-tl-card-l { visibility: hidden; }

/* Timeline auf hellem BG (s-light) — Cards weiß mit blauem Akzent */
.s-light .dw-tl::before { opacity: .35; background: linear-gradient(180deg, transparent, var(--bl) 10%, var(--bl-l) 50%, var(--bl) 90%, transparent); }
.s-light .dw-tl-card { background: #fff; border-color: rgba(0, 55, 91, .15); box-shadow: 0 4px 14px rgba(0, 55, 91, .06); }
.s-light .dw-tl-card::after { background: rgba(0, 55, 91, .15); }
.s-light .dw-tl-row:hover .dw-tl-card { background: #fff; border-color: var(--bl); box-shadow: 0 12px 32px rgba(0, 55, 91, .12); }
.s-light .dw-tl-tag { color: var(--bl); }
.s-light .dw-tl-h { color: var(--ink); }
.s-light .dw-tl-h em { color: var(--bl); }
.s-light .dw-tl-p { color: rgba(10, 22, 32, .65); }
.s-light .dw-tl-node { background: #fff; color: var(--bl); border-color: var(--bl); box-shadow: 0 0 0 6px #fff, 0 0 18px rgba(0, 55, 91, .18); }
.s-light .dw-tl-row:hover .dw-tl-node { background: var(--bl); color: #fff; border-color: var(--bl); box-shadow: 0 0 0 6px #fff, 0 0 28px rgba(0, 55, 91, .35); }
.dw-tl-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--y); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; font-weight: 600; }
.dw-tl-h { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 6px; line-height: 1.2; }
.dw-tl-h em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--y); font-weight: inherit; font-size: inherit; }
.dw-tl-p { color: var(--m2); font-size: 14px; line-height: 1.55; }

@media (max-width: 800px) {
    .dw-tl::before { left: 28px; }
    .dw-tl-row { grid-template-columns: 56px 1fr; column-gap: 20px; }
    .dw-tl-card-l, .dw-tl-card-r { grid-column: 2 !important; text-align: left !important; visibility: visible !important; }
    .dw-tl-row.is-left .dw-tl-card-r,
    .dw-tl-row.is-right .dw-tl-card-l { display: none; }
    .dw-tl-card-l::after, .dw-tl-card-r::after { left: -22px; right: auto; }
    .dw-tl-node { left: 28px; transform: translate(-50%, -50%); }
    .dw-tl-row:hover .dw-tl-node { transform: translate(-50%, -50%) scale(1.12); }
}

/* ───── 13 · CASE-STUDY (Blau Parallax) ───── */
.dw-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.dw-bullets { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.dw-bullets li { display: flex; gap: 12px; align-items: start; color: var(--m2); }
.dw-bullets li span { width: 22px; height: 22px; border-radius: 50%; background: var(--y); color: var(--bk); display: grid; place-items: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.dw-case-mock { background: rgba(0, 0, 0, .35); backdrop-filter: blur(20px); border: 1px solid var(--b-d); border-radius: 24px; padding: 30px; color: #fff; position: relative; min-height: 480px; overflow: hidden; }
.dw-case-mock::after { content: ''; position: absolute; top: 60%; left: 50%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--y), var(--bl-l), var(--bl)); filter: blur(20px); opacity: .5; transform: translate(-50%, -30%); }
.dw-case-mock-h { position: relative; z-index: 1; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 24px; }
.dw-case-mock-card { position: relative; z-index: 1; background: rgba(255, 255, 255, .08); backdrop-filter: blur(20px); border: 1px solid var(--b-d); border-radius: 14px; padding: 18px; margin-bottom: 12px; }
.dw-case-mock-l { font-size: 11px; color: var(--m); }
.dw-case-mock-n { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 22px; margin-top: 6px; color: var(--y); }
.dw-case-mock-bar { height: 6px; background: rgba(255, 255, 255, .1); border-radius: 99px; overflow: hidden; margin-top: 14px; }
.dw-case-mock-bar span { display: block; height: 100%; background: var(--y); }

/* ───── 19 · FAQ (heller BG) ───── */
.dw-faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 80px; align-items: start; }
.dw-faq-list { display: flex; flex-direction: column; gap: 12px; }
.dw-faq-item { background: #fff; border: 1px solid var(--b-l); border-radius: 18px; transition: border-color .3s, background .3s, box-shadow .3s; overflow: hidden; }
.dw-faq-item:hover { border-color: var(--bl); box-shadow: 0 8px 22px rgba(0, 55, 91, .1); }
.dw-faq-item.is-open { background: linear-gradient(180deg, rgba(239, 246, 49, .04), rgba(0, 55, 91, .03)); border-color: var(--bl); }
.dw-faq-q { width: 100%; padding: 24px 26px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--ink); font-size: 17px; font-weight: 600; text-align: left; }
.dw-faq-q i { width: 28px; height: 28px; flex-shrink: 0; position: relative; display: block; }
.dw-faq-q i::before, .dw-faq-q i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: var(--bl); transform: translate(-50%, -50%); transition: transform .3s; }
.dw-faq-q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.dw-faq-item.is-open .dw-faq-q i::after { transform: translate(-50%, -50%) rotate(0); }
.dw-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.dw-faq-item.is-open .dw-faq-a { max-height: 360px; }
.dw-faq-a p { padding: 0 26px 24px; color: rgba(10, 22, 32, .7); line-height: 1.7; }

/* ───── 20 · PRICING (Blau-Parallax) ───── */
.dw-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dw-tier { position: relative; padding: 36px 32px; background: rgba(0, 0, 0, .35); border: 1px solid var(--b-d); border-radius: 24px; display: flex; flex-direction: column; transition: transform .3s, border-color .3s; backdrop-filter: blur(20px); }
.dw-tier:hover { transform: translateY(-6px); }
.dw-tier-feat { background: linear-gradient(180deg, rgba(239, 246, 49, .08), rgba(0, 55, 91, .25)); border-color: var(--y); }
.dw-tier-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--y); color: var(--bk); font-family: 'JetBrains Mono', monospace; font-size: 10px; padding: 6px 14px; border-radius: 99px; letter-spacing: .15em; font-weight: 700; }
.dw-tier-n { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--y); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.dw-tier-p { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 56px; letter-spacing: -.03em; margin-top: 14px; }
.dw-tier-p sup { font-size: 18px; color: var(--m); font-weight: 600; }
.dw-tier-p sub { font-size: 16px; color: var(--m); font-weight: 500; margin-left: 6px; }
.dw-tier-d { color: var(--m2); margin: 14px 0 26px; font-size: 14px; line-height: 1.6; }
.dw-tier-h { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -.02em; line-height: 1.1; color: #fff; margin: 8px 0 4px; }
.dw-tier-h em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 500; color: var(--y); font-size: inherit; }

/* Pakete-Tier-Buttons: gelber Hintergrund mit blauer Schrift (alle drei einheitlich) */
.dw-tier > .da-btn {
    background: var(--y) !important;
    color: var(--bl) !important;
    border: 1px solid var(--y) !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 22px rgba(239, 246, 49, .3) !important;
    transition: transform .25s, box-shadow .3s, background .25s, color .25s !important;
}
.dw-tier > .da-btn:hover {
    background: #fff !important;
    color: var(--bl-d) !important;
    border-color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 34px rgba(239, 246, 49, .45) !important;
}

/* ───── MOSAIC · LIGHT-BG-Variante (echtes Weiß, alternierend Blau/Schwarz/Weiß) ───── */
.dw-mosaic-sec-light { background: #fff !important; color: var(--ink); }
.dw-mosaic-sec-light .dw-mh .dw-pill { background: rgba(0, 55, 91, .08); border-color: rgba(0, 55, 91, .25); color: var(--bl); }
.dw-mosaic-sec-light .dw-mh .dw-pill::before { background: var(--bl); }
.dw-mosaic-sec-light .dw-mh .dw-h2 { color: var(--ink); }
.dw-mosaic-sec-light .dw-mh .dw-h2 em { color: var(--bl); }
.dw-mosaic-sec-light .dw-ms {
    background: #fff;
    border: 1px solid rgba(0, 55, 91, .12);
    box-shadow: 0 8px 24px rgba(0, 55, 91, .06);
}
.dw-mosaic-sec-light .dw-ms:hover { background: #fff; border-color: var(--bl); box-shadow: 0 14px 36px rgba(0, 55, 91, .12); }
.dw-mosaic-sec-light .dw-ms.is-active { background: rgba(239, 246, 49, .12); border-color: var(--y); }
.dw-mosaic-sec-light .dw-ms-l { color: var(--bl); }
.dw-mosaic-sec-light .dw-ms h3 { color: var(--ink); }
.dw-mosaic-sec-light .dw-ms h3 em { color: var(--bl); }
.dw-mosaic-sec-light .dw-ms p { color: rgba(10, 22, 32, .65); }

/* ───── KONTAKT · BLAU-Variante ───── */
.dw-contact-blue .dw-info-it b { color: rgba(255, 255, 255, .65); }
.dw-contact-blue .dw-info-it span,
.dw-contact-blue .dw-info-it span a { color: #fff; }
.dw-contact-blue .dw-info-it span a:hover { color: var(--y); }
.dw-contact-blue .dw-info-i { background: #fff; color: var(--bl); border-color: #fff; }
.dw-contact-blue .dw-info-it:hover .dw-info-i { background: var(--y); color: var(--bl-d); border-color: var(--y); }
.dw-tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; flex: 1; }
.dw-tier li { display: flex; gap: 10px; align-items: start; font-size: 14px; color: var(--m2); }
.dw-tier li::before { content: '✓'; color: var(--y); font-weight: 800; flex-shrink: 0; }

/* ───── 27 · CONTACT (heller BG) ───── */
.dw-contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: start; }
.dw-info { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.dw-info-it { display: flex; gap: 14px; align-items: start; }
.dw-info-i {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    background: #fff;
    color: var(--bl);
    border: 1.5px solid var(--bl);
    display: grid; place-items: center; font-size: 18px;
    transition: background .25s, color .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 14px rgba(0, 55, 91, .08);
}
.dw-info-it:hover .dw-info-i { background: var(--bl); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 55, 91, .25); }
.dw-info-it b { display: block; font-size: 11px; color: rgba(10, 22, 32, .55); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-family: 'JetBrains Mono', monospace; }
.dw-info-it span { display: block; font-weight: 600; margin-top: 3px; color: var(--ink); }
.dw-info-it span a { color: var(--ink); }
.dw-info-it span a:hover { color: var(--bl); }
.dw-form-card { background: #fff; border: 1px solid var(--b-l); border-radius: 24px; padding: 40px; box-shadow: 0 12px 32px rgba(0, 0, 0, .04); }
.dw-form-card .da-form-input { background: #F5F7FB !important; color: var(--ink) !important; border-color: var(--b-l) !important; }
.dw-form-card .da-form-input:focus { border-color: var(--bl) !important; background: #fff !important; }
.dw-form-card .da-form-label { color: rgba(10, 22, 32, .55) !important; }

/* ───── NEWSLETTER (Blau-Gradient mit Gelb-Akzent) ───── */
.dw-newsletter { background: linear-gradient(135deg, #000 0%, #002340 30%, #00375B 70%, #002340 100%); position: relative; overflow: hidden; padding: 100px 0; color: var(--w); }
.dw-newsletter::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .06) 1.5px, transparent 1.5px); background-size: 32px 32px; }
.dw-news-inner { position: relative; z-index: 1; text-align: center; }
.dw-news-h { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: clamp(40px, 6vw, 80px); letter-spacing: -.03em; line-height: 1; color: var(--w); }
.dw-news-h em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; color: var(--y); }
.dw-news-p { color: rgba(255, 255, 255, .8); max-width: 600px; margin: 24px auto 36px; line-height: 1.6; font-size: 17px; }
.dw-news-form { max-width: 520px; margin: 0 auto; }
.dw-news-form .da-form { gap: 10px; }
.dw-news-form .da-form-input { background: rgba(255, 255, 255, .08) !important; color: #fff !important; border-color: rgba(255, 255, 255, .15) !important; padding: 16px 22px; border-radius: 14px; }
.dw-news-form .da-form-input:focus { border-color: var(--y) !important; background: rgba(255, 255, 255, .12) !important; }
.dw-news-form .da-form-label { color: rgba(255, 255, 255, .65) !important; }
.dw-news-form button[type="submit"] { background: var(--y) !important; color: var(--bk) !important; box-shadow: 0 8px 24px rgba(239, 246, 49, .3); width: 100%; justify-content: center; }
.dw-news-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 30px; font-size: 13px; color: rgba(255, 255, 255, .75); position: relative; z-index: 1; font-weight: 500; }
.dw-news-trust span:first-letter { color: var(--y); font-weight: 700; }

/* ───── LIVE-MOSAIC (Pflicht-Block · Blau-Parallax) ───── */
.dw-mosaic-sec { padding: 100px 0; }
.dw-mosaic { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.dw-mh { grid-column: span 2; text-align: center; margin-bottom: 14px; }
.dw-m1 { background: linear-gradient(135deg, var(--bl), var(--bl-d) 60%, #001828); color: var(--w); border-radius: 28px; padding: 42px; min-height: 360px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--b-d); position: relative; overflow: hidden; transition: transform .35s; cursor: pointer; }
.dw-m1:hover { transform: translateY(-3px); }
.dw-m1::before { content: ''; position: absolute; top: -50%; right: -30%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(239, 246, 49, .12), transparent 70%); pointer-events: none; z-index: 1; }
.dw-m1-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.dw-m1 > .dw-m1-view { position: relative; z-index: 2; }
.dw-m1-view { display: none; flex-direction: column; justify-content: center; }
.dw-m1-view.is-active { display: flex; animation: viewFade .5s ease-out; }
@keyframes viewFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.dw-m1-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--y); display: block; margin-bottom: 10px; }
.dw-m1 h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 36px; line-height: 1.05; margin-bottom: 12px; letter-spacing: -.02em; position: relative; }
.dw-m1 h3 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--y); font-weight: inherit; font-size: inherit; }
.dw-m1 p { font-size: 14px; opacity: .85; line-height: 1.5; position: relative; }
.dw-m1 .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; position: relative; }
.dw-m1 .stat { padding: 16px; background: rgba(0, 0, 0, .35); backdrop-filter: blur(12px); border: 1px solid var(--b-d); border-radius: 14px; }
.dw-m1 .stat b { display: block; font-size: 26px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; letter-spacing: -.02em; color: var(--y); }
.dw-m1 .stat span { display: block; font-size: 11px; color: rgba(255, 255, 255, .6); margin-top: 2px; }
.dw-mside { display: flex; flex-direction: column; gap: 12px; }
.dw-ms { background: rgba(255, 255, 255, .08); backdrop-filter: blur(18px); border: 1px solid var(--b-d); border-radius: 22px; padding: 22px; flex: 1; cursor: pointer; transition: transform .3s, background .3s, border-color .3s; position: relative; }
.dw-ms:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); border-color: rgba(239, 246, 49, .25); }
.dw-ms.is-active { background: rgba(239, 246, 49, .08); border-color: var(--y); transform: translateX(-6px); }
.dw-ms.is-active::before { content: ''; position: absolute; left: -8px; top: 50%; transform: translateY(-50%); width: 4px; height: 60%; background: var(--y); border-radius: 2px; }
.dw-ms-l { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--y); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.dw-ms h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -.01em; margin-bottom: 4px; }
.dw-ms h3 em { color: var(--y); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; }
.dw-ms p { font-size: 12px; color: var(--m); line-height: 1.4; }
.dw-lm { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; background: rgba(31, 186, 123, .15); color: #1FBA7B; border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; margin-top: 10px; }
.dw-lm::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #1FBA7B; animation: pulse 1.5s infinite; }

/* ───── SERVICE-STRIP (heller BG) ───── */
.dw-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.dw-svc { padding: 28px; background: #fff; border: 1px solid var(--b-l); border-radius: 22px; transition: all .35s; }
.dw-svc:hover { transform: translateY(-4px); border-color: var(--bl); box-shadow: 0 16px 40px rgba(0, 55, 91, .1); }
/* Services auf blauem BG — Karten dunkel-glas */
.s-blue .dw-svc { background: rgba(0, 0, 0, .25); backdrop-filter: blur(20px); border-color: var(--b-d); color: #fff; }
.s-blue .dw-svc:hover { background: rgba(0, 0, 0, .4); border-color: rgba(239, 246, 49, .4); }
.s-blue .dw-svc h3 { color: #fff; }
.s-blue .dw-svc h3 em { color: var(--y); }
.s-blue .dw-svc p { color: rgba(255, 255, 255, .7); }
.s-blue .dw-svc-i { background: var(--y); color: var(--bl-d); }
.dw-svc-i { width: 46px; height: 46px; border-radius: 12px; background: var(--bl); display: grid; place-items: center; font-size: 22px; color: #fff; margin-bottom: 14px; }
.dw-svc h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.01em; margin-bottom: 6px; color: var(--ink); }
.dw-svc h3 em { color: var(--bl); font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; }
.dw-svc p { color: rgba(10, 22, 32, .65); font-size: 14px; line-height: 1.55; }

/* ───── UNIFIED PAGE-HERO (für Unterseiten) ───── */
/* Top-Padding so groß, dass der Header (~58px Höhe + 14px top) komplett auf der Hero-Sektion liegt
   und der Farbverlauf hinter dem Glass-Header durchscheint. */
.dw-page-hero { padding: 190px 0 90px; position: relative; overflow: hidden; }
.dw-page-hero .dw-container { position: relative; z-index: 1; }
.dw-page-h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: clamp(48px, 7vw, 96px); line-height: .95; letter-spacing: -.04em; margin-top: 18px; }
.dw-page-h1 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: inherit; font-size: inherit; color: var(--y); }
.dw-page-lead { color: var(--m2); font-size: 17px; line-height: 1.65; max-width: 640px; margin-top: 24px; }

/* ───── CONTENT-CARDS für Unterseiten ───── */
.dw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .dw-grid-3, .dw-grid-2 { grid-template-columns: 1fr; } }

.dw-card { background: rgba(0, 0, 0, .25); backdrop-filter: blur(20px); border: 1px solid var(--b-d); border-radius: 22px; padding: 30px; transition: all .35s; }
.dw-card:hover { transform: translateY(-4px); border-color: rgba(239, 246, 49, .35); }
.dw-card.dw-card-light { background: #fff; border: 1px solid var(--b-l); color: var(--ink); }
.dw-card.dw-card-light:hover { border-color: var(--bl); box-shadow: 0 16px 40px rgba(0, 55, 91, .1); }

/* ───── BLOG-CARD ───── */
.dw-blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--b-l); border-radius: 22px; overflow: hidden; transition: all .35s; }
.dw-blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 55, 91, .08); border-color: var(--bl); }
.dw-blog-cover { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--bl), var(--bl-d)); }
.dw-blog-body { padding: 24px 26px; }
.dw-blog-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--bl); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.dw-blog-h { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; margin: 8px 0; color: var(--ink); }
.dw-blog-h em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--bl); font-weight: inherit; font-size: inherit; }
.dw-blog-card p { color: rgba(10, 22, 32, .65); font-size: 14px; line-height: 1.55; }

/* ───── PROJECT-CARD ───── */
.dw-proj-card { display: flex; flex-direction: column; background: rgba(0, 0, 0, .35); backdrop-filter: blur(20px); border: 1px solid var(--b-d); border-radius: 22px; overflow: hidden; transition: all .35s; }
.dw-proj-card:hover { transform: translateY(-4px); border-color: var(--y); }
.dw-proj-cover { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--bl-l), var(--bl-d)); }
.dw-proj-body { padding: 24px 26px; }

/* ───── ARTICLE / DETAIL-PAGE ───── */
.dw-article { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.dw-article p { font-size: 17px; line-height: 1.75; color: var(--m2); margin-bottom: 18px; }
.dw-article h2, .dw-article h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; margin: 36px 0 14px; }
.dw-article h2 { font-size: 32px; }
.dw-article h3 { font-size: 22px; }
.dw-article ul, .dw-article ol { margin: 18px 0 18px 28px; color: var(--m2); }
.dw-article li { margin-bottom: 8px; line-height: 1.65; }
.dw-article a { color: var(--y); text-decoration: underline; }
.dw-article strong { color: var(--w); }
.s-light .dw-article p { color: var(--ink); }
.s-light .dw-article ul, .s-light .dw-article ol { color: var(--ink); }
.s-light .dw-article a { color: var(--bl); }
.s-light .dw-article strong { color: var(--ink); }

/* ───── 404 ───── */
.dw-404 { min-height: 70vh; padding: 80px 20px; }
.dw-404-num {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
    font-size: clamp(120px, 20vw, 240px); line-height: 1; letter-spacing: -.06em;
    background: linear-gradient(135deg, var(--y), #fff 50%, var(--bl-l) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 18px 50px rgba(239, 246, 49, .2);
    animation: dw404Pan 8s ease-in-out infinite alternate;
}
.dw-404-num em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--y), var(--y));
    -webkit-background-clip: text; background-clip: text;
}
@keyframes dw404Pan { 0% { background-position: 0 50%; } 100% { background-position: 100% 50%; } }

/* Schnell-Links Grid auf der 404 */
.dw-404-quicklinks { margin-top: 56px; padding-top: 36px; border-top: 1px dashed rgba(255, 255, 255, .14); }
.dw-404-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px; max-width: 880px; margin: 0 auto;
}
.dw-404-card {
    display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
    padding: 18px 20px; text-align: left;
    background: rgba(0, 0, 0, .3); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px;
    text-decoration: none; color: inherit;
    transition: transform .25s, border-color .25s, background .25s;
}
.dw-404-card:hover { transform: translateY(-3px); background: rgba(0, 0, 0, .5); border-color: var(--y); }
.dw-404-card-i { font-size: 26px; line-height: 1; margin-bottom: 6px; }
.dw-404-card strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 16px; color: #fff; }
.dw-404-card em { font-style: normal; font-size: 12px; color: rgba(255, 255, 255, .65); }
.dw-404-card:hover strong { color: var(--y); }

/* ───── FOOTER ───── */
.da-footer { background: var(--bk); padding: 60px 0 24px; border-top: 1px solid var(--b-d); position: relative; }
.da-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--b-d); }
.da-footer-grid > div h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--y); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-weight: 700; }
.da-footer-about { color: var(--m); font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 18px; }
.da-footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--m); }
.da-footer-list a { transition: color .2s; }
.da-footer-list a:hover { color: var(--y); }
.da-footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.da-footer-socials a { padding: 6px 12px; border: 1px solid var(--b-d); border-radius: 99px; font-size: 12px; color: var(--m); }
.da-footer-socials a:hover { border-color: var(--y); color: var(--y); }
.da-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 32px 0; font-size: 12px; color: var(--m); font-family: 'JetBrains Mono', monospace; max-width: 1280px; margin: 0 auto; }
.da-aurora { display: none; }

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
    .dw-case-grid, .dw-faq-grid, .dw-contact-grid, .dw-hero-grid, .dw-mosaic { grid-template-columns: 1fr; }
    .dw-mh { grid-column: 1; }
    .dw-tiers, .dw-svc-grid { grid-template-columns: 1fr; }
    .dw-form-card { padding: 26px; }
    .dw-sec { padding: 70px 0; }
    .dw-hero { padding: 100px 0 40px; }
    .da-footer-grid { grid-template-columns: 1fr 1fr; }
    .da-footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 600px) { .da-footer-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .1ms !important; }
    .dw-parallax { transform: none !important; }
}

/* ───── PLUGINS-GRID (anklickbare Content-Boxen, beliebig viele) ───── */
.dw-plug-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 22px;
}
.dw-plug-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--b-l);
    border-radius: 24px;
    padding: 30px 28px 22px;
    text-decoration: none;
    color: var(--ink);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .25s, box-shadow .35s;
    overflow: hidden;
}
.dw-plug-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(239, 246, 49, .08), transparent 55%);
    pointer-events: none; opacity: 0; transition: opacity .35s;
    z-index: 0;
}
.dw-plug-card:hover {
    transform: translateY(-6px);
    border-color: var(--bl);
    box-shadow: 0 22px 50px rgba(0, 55, 91, .14);
}
.dw-plug-card:hover::after { opacity: 1; }
.dw-plug-card > * { position: relative; z-index: 1; }

.dw-plug-badge {
    position: absolute; top: 18px; right: 18px;
    background: var(--y); color: var(--bk);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 700;
    padding: 5px 10px; border-radius: 99px;
    letter-spacing: .12em; text-transform: uppercase;
    z-index: 2;
}

.dw-plug-top { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.dw-plug-logo {
    width: 64px; height: 64px; flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bl), var(--bl-d));
    display: grid; place-items: center;
    color: var(--y); font-size: 30px;
    box-shadow: 0 8px 22px rgba(0, 55, 91, .25);
}
.dw-plug-logo img { width: 60%; height: 60%; object-fit: contain; }
.dw-plug-emoji { line-height: 1; }
.dw-plug-meta-mini { display: flex; flex-direction: column; gap: 3px; }
.dw-plug-meta-mini span {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: rgba(10, 22, 32, .55); letter-spacing: .05em; font-weight: 500;
}
.dw-plug-meta-mini span:first-child { color: var(--bl); font-weight: 700; }

.dw-plug-name {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 26px; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 6px;
    color: var(--ink);
}
.dw-plug-tagline {
    color: var(--bl); font-weight: 600; font-size: 14px; line-height: 1.5; margin-bottom: 14px;
    font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 500; font-size: 17px;
}
.dw-plug-desc { color: rgba(10, 22, 32, .65); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }

.dw-plug-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.dw-plug-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: rgba(10, 22, 32, .65);
    background: rgba(0, 55, 91, .06); border: 1px solid rgba(0, 55, 91, .12);
    padding: 4px 9px; border-radius: 6px; font-weight: 500; letter-spacing: .04em;
    transition: background .2s, color .2s, border-color .2s;
}
.dw-plug-card:hover .dw-plug-tag { background: rgba(0, 55, 91, .12); border-color: rgba(0, 55, 91, .25); color: var(--bl); }

.dw-plug-foot {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    margin-top: auto; padding-top: 16px; border-top: 1px solid var(--b-l);
}
.dw-plug-cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--bl); font-weight: 700; font-size: 13px;
    transition: gap .25s, color .25s;
}
.dw-plug-card:hover .dw-plug-cta { color: var(--bl-d); gap: 12px; }
.dw-plug-arrow {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bl); color: var(--y);
    font-size: 13px; font-weight: 700;
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), background .2s;
}
.dw-plug-card:hover .dw-plug-arrow { transform: translate(2px, -2px) rotate(15deg); background: var(--y); color: var(--bl-d); }

/* ───── Free-Download-CTA (gelber Rand · Hover wechselt auf Blau) ───── */
.dw-plug-cta-free {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 8px 0 22px;
    height: 56px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--y);
    border-radius: 99px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700; font-size: 14px;
    transition: background .25s ease, border-color .25s ease, color .2s ease, transform .2s, box-shadow .3s;
    cursor: pointer;
    line-height: 1;
}
.dw-plug-cta-free:hover {
    background: var(--bl);
    border-color: var(--bl);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 55, 91, .45);
}
.dw-plug-cta-free-ico {
    font-size: 18px; line-height: 1;
    transition: transform .3s;
}
.dw-plug-cta-free:hover .dw-plug-cta-free-ico { transform: translateY(2px) scale(1.15) }
.dw-plug-cta-free-txt { white-space: nowrap }
.dw-plug-cta-free-arr {
    display: inline-grid; place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--y); color: var(--bk);
    font-size: 18px; font-weight: 900;
    transition: background .25s, color .25s, transform .3s;
    margin-left: 6px;
}
.dw-plug-cta-free:hover .dw-plug-cta-free-arr {
    background: var(--y); color: var(--bl-d);
    transform: translateY(2px);
}

/* ───── Stats-Box (3 USPs kompakt — vorher 4 zu eng) ───── */
.dw-plug-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 50px;
    padding: 24px 28px;
    background: rgba(0, 0, 0, .4);
    border: 1px solid var(--b-d);
    border-radius: 18px;
}
@media (max-width: 760px) {
    .dw-plug-stats { grid-template-columns: 1fr; gap: 10px }
}
.dw-plug-stat {
    min-width: 0;
}
.dw-plug-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--y);
    line-height: 1.1;
    letter-spacing: -.01em;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dw-plug-stat-lbl {
    font-size: 11px;
    color: var(--m);
    margin-top: 6px;
    line-height: 1.35;
}

/* Backwards-Compat: alte Free-Btn-Klasse weiterhin nutzbar — leitet auf neue um */
.dw-plug-free-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0 8px 0 22px; height: 56px;
    background: transparent; color: #fff;
    border: 2px solid var(--y); border-radius: 99px;
    text-decoration: none; font-weight: 700;
    transition: all .25s; cursor: pointer;
}
.dw-plug-free-btn:hover { background: var(--bl); border-color: var(--bl); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 55, 91, .45) }
.dw-plug-free-ico { font-size: 18px }
.dw-plug-free-txt { color: inherit }
.dw-plug-free-txt strong { color: var(--y); font-weight: 800 }
.dw-plug-free-arr { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--y); color: var(--bk); font-size: 18px; font-weight: 900; margin-left: 6px }

/* ───── „Auch kostenlos verfügbar"-Hinweis auf Plugin-Karten ───── */
.dw-plug-free-hint {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    padding: 5px 10px;
    background: linear-gradient(135deg, rgba(239, 246, 49, .15), rgba(239, 246, 49, .05));
    border: 1px solid rgba(239, 246, 49, .55);
    border-radius: 99px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: .08em;
    color: var(--bl);
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
}
.dw-plug-free-hint::before { content: '📦'; font-size: 11px }

.dw-plug-extra {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: rgba(10, 22, 32, .55); cursor: pointer;
    padding: 4px 8px; border-radius: 6px; transition: background .2s, color .2s;
}
.dw-plug-extra:hover { background: rgba(0, 55, 91, .08); color: var(--bl); }

/* Coming-Soon Hint unter dem Grid */
.dw-plug-soon {
    margin-top: 60px; padding: 36px;
    background: linear-gradient(135deg, rgba(0, 55, 91, .04), rgba(239, 246, 49, .04));
    border: 1px dashed rgba(0, 55, 91, .25);
    border-radius: 22px;
    text-align: center;
}
.dw-plug-soon h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 26px; color: var(--ink);
    margin: 8px 0;
}
.dw-plug-soon h3 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--bl); font-weight: 500; }
.dw-plug-soon p { color: rgba(10, 22, 32, .65); font-size: 15px; max-width: 540px; margin: 0 auto; }

/* ───── BOOKING — Minimaler Kalender im Brand-Design ───── */
.dw-booking-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .dw-booking-grid { grid-template-columns: 1fr; } }

.dw-booking-info .dw-detail-aside-card {
    background: #fff; border: 1px solid var(--b-l); border-radius: 18px;
    padding: 22px 24px; margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 55, 91, .04);
}
.dw-booking-info h4 {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--bl); text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
    margin-bottom: 10px;
}
.dw-booking-info ul li span:first-child { color: var(--bl) !important; font-size: 18px; line-height: 1; }
.dw-booking-info ul li { color: var(--ink) !important; }
.dw-booking-info p { color: rgba(10, 22, 32, .65) !important; }

.dw-booking-card {
    background: #fff; border: 1px solid var(--b-l); border-radius: 22px;
    padding: 30px; box-shadow: 0 12px 32px rgba(0, 55, 91, .06);
}

/* Kalender-Header */
.dw-bk-cal-h {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 4px 22px; border-bottom: 1px solid var(--b-l); margin-bottom: 18px;
}
.dw-bk-month {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
    font-size: 17px; color: var(--ink); letter-spacing: -.01em;
}
.dw-bk-arr {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(0, 55, 91, .06); color: var(--bl);
    border: 1px solid rgba(0, 55, 91, .12); cursor: pointer;
    font-size: 18px; font-weight: 700; line-height: 1;
    display: grid; place-items: center;
    transition: background .2s, border-color .2s, transform .15s;
}
.dw-bk-arr:hover { background: var(--bl); color: #fff; border-color: var(--bl); }
.dw-bk-arr:active { transform: scale(.95); }

/* Kalender-Grid */
.dw-bk-cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.dw-bk-d-h {
    text-align: center;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: rgba(10, 22, 32, .45); font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 8px 0 4px;
}
.dw-bk-d-pad { aspect-ratio: 1; }
.dw-bk-d {
    aspect-ratio: 1;
    background: transparent; border: 1px solid transparent;
    border-radius: 10px; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--ink);
    display: grid; place-items: center;
    transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.dw-bk-d-av:hover { background: rgba(0, 55, 91, .08); border-color: var(--bl); }
.dw-bk-d-dis { color: rgba(10, 22, 32, .25); cursor: not-allowed; }
.dw-bk-d-today { box-shadow: inset 0 0 0 1px var(--y); }
.dw-bk-d-sel { background: var(--bl) !important; color: #fff !important; border-color: var(--bl) !important; }
.dw-bk-d-sel::after { display: none; }

/* Slot-Bereich */
.dw-bk-slots { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--b-l); }
.dw-bk-slots-h {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--bl); text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
    margin-bottom: 12px;
}
.dw-bk-slots-h span { color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 500; font-family: 'Inter', sans-serif; }
.dw-bk-slots-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px;
}
.dw-bk-slot {
    padding: 11px 12px;
    background: #fff; color: var(--bl);
    border: 1px solid rgba(0, 55, 91, .15);
    border-radius: 10px; cursor: pointer;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.dw-bk-slot:hover {
    background: var(--bl); color: #fff;
    border-color: var(--bl);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 55, 91, .25);
}

/* Schritt 2: Daten-Eingabe */
.dw-bk-summary {
    background: linear-gradient(135deg, rgba(0, 55, 91, .06), rgba(239, 246, 49, .08));
    border: 1px solid rgba(0, 55, 91, .15);
    border-radius: 14px;
    padding: 16px 20px; margin-bottom: 20px;
}
.dw-bk-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: var(--bl); text-transform: uppercase; letter-spacing: .15em; font-weight: 700;
}
.dw-bk-when {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
    font-size: 16px; color: var(--ink); margin-top: 4px; letter-spacing: -.01em;
}

/* Schritt 3: Success */
.dw-bk-success { text-align: center; padding: 30px 20px; }
.dw-bk-success-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--bl); color: var(--y);
    display: grid; place-items: center; font-size: 30px; font-weight: 700;
    box-shadow: 0 12px 28px rgba(0, 55, 91, .25);
}
.dw-bk-success h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 24px; color: var(--ink); margin-bottom: 8px;
}
.dw-bk-success p { color: rgba(10, 22, 32, .65); font-size: 15px; line-height: 1.6; }
.dw-bk-success #dw-bk-success-when { color: var(--bl) !important; font-weight: 700; }

/* Booking-Form-Felder erben aus normalem Form-System aber mit hellerem BG */
.dw-booking-card .da-form { --df-bg: #F5F7FB; --df-border: #E1E5EB; --df-focus: var(--bl); --df-text: var(--ink); --df-label: rgba(10, 22, 32, .55); }

/* ───── BOOKING-Section auf Homepage (Text links + Inline-Kalender rechts) ───── */
.dw-bk-home { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .dw-bk-home { grid-template-columns: 1fr; gap: 32px; } }

.dw-bk-home-text h2 { font-size: clamp(32px, 4vw, 50px); }
.dw-bk-home-points {
    list-style: none; margin-top: 30px;
    display: flex; flex-direction: column; gap: 14px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(0, 55, 91, .04), rgba(239, 246, 49, .05));
    border: 1px solid rgba(0, 55, 91, .12);
    border-radius: 16px;
}
.dw-bk-home-points li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--ink); font-weight: 500;
}
.dw-bk-home-points li span:first-child {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 8px;
    background: var(--bl); color: var(--y);
    display: grid; place-items: center; font-size: 15px;
}

/* ───── SERVICES · Akkordeon-Variante (Inline-Aufklappen statt Link) ───── */
.dw-svc-acc { padding: 0; overflow: hidden; transition: border-color .25s, box-shadow .35s; }
.dw-svc-toggle {
    display: block; width: 100%; text-align: left;
    background: transparent; border: 0; cursor: pointer;
    padding: 28px; font-family: inherit; color: inherit;
    position: relative; transition: background .25s;
}
.dw-svc-toggle:hover { background: rgba(0, 55, 91, .03); }
.dw-svc-acc.is-open { border-color: var(--bl); box-shadow: 0 18px 40px rgba(0, 55, 91, .12); }
.dw-svc-acc.is-open .dw-svc-toggle { background: linear-gradient(180deg, rgba(0, 55, 91, .04), transparent); }

.dw-svc-toggle .dw-svc-i { margin-bottom: 14px; }
.dw-svc-toggle h3,
.dw-svc-toggle p { pointer-events: none; }

.dw-svc-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--bl); font-weight: 700; letter-spacing: .1em;
    transition: gap .25s;
}
.dw-svc-more-icon {
    display: inline-block; transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.dw-svc-acc.is-open .dw-svc-more .dw-svc-more-txt::before { content: 'WENIGER · '; }
.dw-svc-acc.is-open .dw-svc-more .dw-svc-more-txt { font-size: 0; line-height: 0; }
.dw-svc-acc.is-open .dw-svc-more .dw-svc-more-txt::before { font-size: 11px; line-height: 1.4; }
.dw-svc-acc.is-open .dw-svc-more-icon { transform: rotate(90deg); }

.dw-svc-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s cubic-bezier(.2, .7, .2, 1);
    border-top: 1px solid var(--b-l);
}
.dw-svc-acc.is-open .dw-svc-content { max-height: 1200px; }
.dw-svc-content-inner {
    padding: 22px 28px 28px;
    font-size: 14.5px; line-height: 1.7; color: rgba(10, 22, 32, .75);
}
.dw-svc-content-inner p { margin-bottom: 12px; }
.dw-svc-content-inner p:last-of-type { margin-bottom: 18px; }
.dw-svc-html { font-size: 14px; line-height: 1.7; }
.dw-svc-html h2, .dw-svc-html h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin: 18px 0 8px; color: var(--ink); }
.dw-svc-html h3 { font-size: 16px; }
.dw-svc-html ul, .dw-svc-html ol { margin: 10px 0 14px 22px; }
.dw-svc-html li { margin-bottom: 6px; }

/* ───── BOOKING · Empty-State (keine Slots verfügbar) ───── */
.dw-bk-empty {
    text-align: center; padding: 40px 30px;
}
.dw-bk-empty-icon {
    font-size: 48px; line-height: 1;
    margin-bottom: 16px;
    opacity: .8;
}
.dw-bk-empty h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 22px; color: var(--ink); margin-bottom: 12px;
    letter-spacing: -.01em;
}
.dw-bk-empty p {
    color: rgba(10, 22, 32, .65); font-size: 14.5px;
    line-height: 1.6; max-width: 360px; margin: 0 auto;
}
.dw-bk-empty-alt {
    margin-top: 20px !important; font-size: 13px !important;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(10, 22, 32, .55) !important;
}
.dw-bk-empty-alt a { color: var(--bl); font-weight: 700; text-decoration: none; }
.dw-bk-empty-alt a:hover { color: var(--bl-d); text-decoration: underline; }

/* ───── PLUGINS · Preis-Pill + Buy-CTA ───── */
.dw-plug-price {
    display: inline-flex; flex-direction: column; align-items: flex-start;
    line-height: 1.15;
}
.dw-plug-price strong {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 18px; color: var(--ink); letter-spacing: -.01em;
}
.dw-plug-price em {
    font-family: 'JetBrains Mono', monospace; font-style: normal;
    font-size: 10px; color: rgba(10, 22, 32, .55); letter-spacing: .04em;
}
.dw-plug-cta-buy {
    color: #fff !important;
    background: linear-gradient(135deg, var(--bl), var(--bl-l));
    padding: 8px 14px; border-radius: 99px;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    box-shadow: 0 6px 18px rgba(0, 55, 91, .3);
    transition: transform .2s, box-shadow .25s;
}
.dw-plug-cta-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 55, 91, .45); }
.dw-plug-cta-buy .dw-plug-arrow { background: var(--y); color: var(--bl-d); }

/* ───── CHECKOUT-SUCCESS Receipt-Card ───── */
.dw-checkout-receipt {
    background: #fff; border: 1px solid var(--b-l); border-radius: 22px;
    overflow: hidden; box-shadow: 0 18px 48px rgba(0, 55, 91, .08);
}
.dw-checkout-receipt-h {
    text-align: center; padding: 36px 30px 26px;
    background: linear-gradient(180deg, rgba(0, 55, 91, .04), transparent);
    border-bottom: 1px solid var(--b-l);
}
.dw-checkout-receipt-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    border-radius: 50%; background: var(--bl); color: var(--y);
    display: grid; place-items: center; font-size: 30px; font-weight: 700;
    box-shadow: 0 10px 28px rgba(0, 55, 91, .3);
}
.dw-checkout-receipt-h h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 26px; color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em; }
.dw-checkout-receipt-h p { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--bl); letter-spacing: .04em; font-weight: 600; }
.dw-checkout-license {
    padding: 26px 30px;
    text-align: center;
}
.dw-checkout-license-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--bl); letter-spacing: .12em; font-weight: 700;
    margin-bottom: 14px;
}
.dw-checkout-license code {
    display: block; padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0, 55, 91, .06), rgba(239, 246, 49, .08));
    border: 1.5px dashed rgba(0, 55, 91, .25); border-radius: 12px;
    font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700;
    color: var(--bl); word-break: break-all;
    margin-bottom: 14px;
}

/* ───── HERO „Projekt starten" — Schrift in BLAU statt Schwarz ───── */
.da-btn.da-btn-hero-blue,
.da-btn.da-btn-primary.da-btn-hero-blue {
    color: var(--bl) !important;
    font-weight: 800 !important;
}
.da-btn.da-btn-hero-blue:hover {
    color: var(--bl-d) !important;
}

/* ───── USP-Strip (Icon + Title + Kurztext, statt Zahlen-Stats) ───── */
.dw-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 32px;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(20px);
    border: 1px solid var(--b-d);
    border-radius: 22px;
    margin-top: 80px;
}
@media (max-width: 900px) { .dw-usps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dw-usps { grid-template-columns: 1fr; padding: 22px; } }

.dw-usp {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 4px;
    transition: transform .25s;
}
.dw-usp:hover { transform: translateY(-2px); }
.dw-usp-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--y), #FFD700);
    color: var(--bl-d);
    display: grid; place-items: center;
    font-size: 22px; line-height: 1;
    box-shadow: 0 6px 16px rgba(239, 246, 49, .3);
}
.dw-usp-body strong {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 15px; color: #fff; letter-spacing: -.005em;
    margin-bottom: 4px;
}
.dw-usp-body span {
    display: block;
    font-size: 12.5px; color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}

/* ───── ULTIMATE-FORM PRICING-SECTION ───── */
#pricing { scroll-margin-top: 100px; }

.uf-sale-banner {
    margin: 30px auto 0;
    max-width: 720px;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(239, 246, 49, .18), rgba(255, 215, 0, .12) 50%, rgba(0, 55, 91, .08));
    border: 2px solid var(--y);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px;
    position: relative; overflow: hidden;
    box-shadow: 0 8px 28px rgba(239, 246, 49, .18);
}
.uf-sale-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 246, 49, .12), transparent);
    animation: salePan 3s linear infinite;
}
@keyframes salePan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.uf-sale-badge {
    background: var(--bl); color: var(--y);
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 800;
    padding: 6px 14px; border-radius: 99px; letter-spacing: .12em; text-transform: uppercase;
    position: relative; z-index: 1;
}
.uf-sale-msg { color: var(--bl); font-weight: 600; font-size: 14px; position: relative; z-index: 1; }
.uf-sale-deadline {
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700;
    color: var(--bl-d); padding: 4px 10px; background: rgba(255, 255, 255, .6); border-radius: 6px;
    position: relative; z-index: 1;
}

.uf-pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 880px; margin: 50px auto 0;
}
@media (max-width: 800px) { .uf-pricing-grid { grid-template-columns: 1fr; } }

.uf-tier {
    position: relative;
    padding: 32px 28px 28px;
    background: #fff;
    border: 1.5px solid var(--b-l);
    border-radius: 22px;
    display: flex; flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .35s;
}
.uf-tier:hover { transform: translateY(-4px); border-color: var(--bl); box-shadow: 0 18px 40px rgba(0, 55, 91, .12); }

.uf-tier-feat {
    background: linear-gradient(180deg, rgba(0, 55, 91, .04), #fff);
    border-color: var(--bl);
    border-width: 2px;
    box-shadow: 0 12px 32px rgba(0, 55, 91, .15);
}
.uf-tier-feat:hover { box-shadow: 0 22px 48px rgba(0, 55, 91, .22); }
.uf-tier-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--y), #FFD700);
    color: var(--bl-d);
    font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800;
    padding: 6px 14px; border-radius: 99px; letter-spacing: .12em; text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(239, 246, 49, .35);
}

.uf-tier-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--bl); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 10px;
}
.uf-tier-name {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
    font-size: 28px; color: var(--ink); letter-spacing: -.02em;
    margin-bottom: 14px;
}

.uf-tier-price {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--b-l);
}
.uf-tier-price strong {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
    font-size: 56px; line-height: 1;
    color: var(--ink); letter-spacing: -.03em;
    display: inline-block; margin-right: 8px;
}
.uf-tier-feat .uf-tier-price strong { color: var(--bl); }
.uf-tier.is-sale .uf-tier-price strong { color: #DC2626; }
.uf-tier-feat.is-sale .uf-tier-price strong {
    background: linear-gradient(135deg, #DC2626, var(--bl));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.uf-tier-old {
    font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
    font-size: 22px; color: rgba(10, 22, 32, .35);
    text-decoration: line-through; text-decoration-thickness: 2px;
    margin-right: 8px; vertical-align: middle;
}
.uf-tier-price em {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-size: 13px; color: rgba(10, 22, 32, .55);
    font-family: 'JetBrains Mono', monospace; letter-spacing: .04em;
}

.uf-tier-ul {
    list-style: none; flex: 1;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 24px;
}
.uf-tier-ul li {
    font-size: 14px; color: rgba(10, 22, 32, .75); line-height: 1.5;
    padding-left: 0;
}
.uf-tier-ul li strong { color: var(--ink); font-weight: 700; }

.uf-tier-cta {
    width: 100%; justify-content: center;
    font-size: 14px; font-weight: 800;
    letter-spacing: -.005em;
    /* Beide CTAs (Standard + Lifetime) als Blau-Gradient — perfekt lesbar, keine Ghost-Variante */
    background: linear-gradient(135deg, var(--bl) 0%, var(--bl-d) 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(0, 55, 91, .28) !important;
    transition: transform .25s, box-shadow .3s, background .3s !important;
}
.uf-tier-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--bl-l, #0080C0) 0%, var(--bl) 100%) !important;
    box-shadow: 0 14px 34px rgba(0, 55, 91, .42) !important;
    color: #fff !important;
}

/* ───── PLUGIN-CARD: Ovales Preis-Badge oben rechts + Sale-Tag oben links ───── */
.dw-plug-price-pill {
    position: absolute; top: 18px; right: 18px;
    z-index: 3;
    background: linear-gradient(135deg, var(--bl), var(--bl-d));
    color: #fff;
    padding: 8px 16px;
    border-radius: 99px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 55, 91, .35);
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: -.005em;
    transition: transform .25s, box-shadow .25s;
}
.dw-plug-card:hover .dw-plug-price-pill { transform: scale(1.05); box-shadow: 0 10px 24px rgba(0, 55, 91, .5); }

.dw-plug-price-pill.is-sale {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    box-shadow: 0 6px 18px rgba(220, 38, 38, .4);
    animation: pricePulse 2.4s ease-in-out infinite;
}
@keyframes pricePulse {
    0%,100% { box-shadow: 0 6px 18px rgba(220, 38, 38, .4); }
    50%     { box-shadow: 0 6px 24px rgba(220, 38, 38, .65); }
}

.dw-plug-price-old {
    font-size: 12px; font-weight: 700; opacity: .65;
    text-decoration: line-through; text-decoration-thickness: 1.5px;
}
.dw-plug-price-discount {
    font-style: normal;
    background: var(--y); color: var(--bl-d);
    padding: 2px 7px; border-radius: 99px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    letter-spacing: .03em;
}

/* Sale-Banner-Tag oben links — diagonal geneigt */
.dw-plug-sale-tag {
    position: absolute; top: 14px; left: -2px;
    z-index: 3;
    background: linear-gradient(90deg, #DC2626, #EFF631);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 800;
    padding: 5px 12px 5px 14px;
    border-radius: 0 6px 6px 0;
    letter-spacing: .1em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(220, 38, 38, .35);
}
.dw-plug-sale-tag::before {
    content: ''; position: absolute; top: 100%; left: 0;
    border: 4px solid transparent;
    border-top-color: #991B1B; border-right-color: #991B1B;
}

/* Card mit Sale: subtile Rot-Glow am Rand */
.dw-plug-card.is-sale {
    border-color: rgba(220, 38, 38, .35);
    box-shadow: 0 4px 14px rgba(220, 38, 38, .08);
}
.dw-plug-card.is-sale:hover {
    border-color: #DC2626;
    box-shadow: 0 18px 40px rgba(220, 38, 38, .2);
}
