/**
 * DESI Enterprise Portal — Design & Kreativität Landing Page
 * DESIGNSTUUV Corporate Design: Primary #233645, Rosé #e5b7ba, Accent #FFEF00
 * Osmium-Standard: Premium-Designagentur-Niveau mit GSAP-Animationen
 *
 * @version 2.0.0
 * @since 2026-04-21
 */

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   NL-14 (2026-04-27): Vars an :root, damit Quick-Modal (ausserhalb
   .dk-landing in der View) ebenfalls Zugriff hat.
   ═══════════════════════════════════════════════════════════════ */
:root {
    --dk-primary: #233645;
  --dk-heading: var(--dk-primary);
    --dk-primary-light: #2e4a5e;
    --dk-primary-dark: #1a2835;
    --dk-secondary: #e5b7ba;
    --dk-secondary-light: #f2d8da;
    --dk-secondary-strong: #c98991;
    --dk-secondary-pale: rgba(229, 183, 186, 0.12);
    --dk-accent: #FFEF00;
    --dk-accent-soft: rgba(255, 239, 0, 0.15);
    --dk-bg: #f9fafb;
    --dk-bg-alt: #f0f4f8;
    --dk-white: #ffffff;
    --dk-text: #374151;
    --dk-text-light: #6b7280;
    --dk-border: #e5e7eb;
    --dk-border-light: #f3f4f6;
    --dk-success: #10b981;
    --dk-success-bg: #ecfdf5;
    --dk-danger: #ef4444;
    --dk-shadow-sm: 0 1px 3px rgba(35, 54, 69, 0.06);
    --dk-shadow-md: 0 4px 16px rgba(35, 54, 69, 0.08);
    --dk-shadow-lg: 0 12px 40px rgba(35, 54, 69, 0.12);
    --dk-shadow-glow: 0 8px 32px rgba(229, 183, 186, 0.25);
    --dk-radius: 12px;
    --dk-radius-sm: 8px;
    --dk-radius-lg: 16px;
    --dk-radius-xl: 24px;
    --dk-font-head: 'Cabrito Didone', Georgia, serif;
    --dk-font-body: 'Ingra', 'Inter', system-ui, -apple-system, sans-serif;
    --dk-container: 1140px;
    --dk-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-PROGRESS-BAR
   ═══════════════════════════════════════════════════════════════ */
.dk-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--dk-secondary) 0%, var(--dk-accent) 50%, var(--dk-secondary) 100%);
    z-index: 9999;
    transition: width 50ms linear;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   GRUNDLAGE & CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.dk-landing {
    font-family: var(--dk-font-body);
    color: var(--dk-text);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dk-container {
    max-width: var(--dk-container);
    margin: 0 auto;
    padding: 0 24px;
}

.dk-section {
    padding: 96px 0;
    position: relative;
}

.dk-section--alt {
    background-color: var(--dk-bg-alt);
}

.dk-section__label {
    display: inline-block;
    font-family: var(--dk-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    /* NL-14 Kontrast-Boost: Text dunkler, Background stärker */
    color: var(--dk-heading);
    margin-bottom: 16px;
    padding: 7px 18px;
    background: rgba(229, 183, 186, 0.32);
    border-radius: 20px;
    border: 1px solid var(--dk-secondary-strong);
}

.dk-section__label--accent {
    color: var(--dk-heading);
    background: rgba(255, 239, 0, 0.32);
    border-color: rgba(217, 200, 0, 0.55);
}

.dk-section__title {
    font-family: var(--dk-font-head);
    font-size: 2.25rem;
    color: var(--dk-heading);
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    /* NL-14 Round-3: Witwen-Schutz auf Mobile (Chrome 114+, Safari 17.4+, Firefox 121+).
       Browser balanciert die Zeilen, statt das letzte Wort allein zu lassen. */
    text-wrap: balance;
}

.dk-section__title--center {
    text-align: center;
}

.dk-section__intro {
    text-align: center;
    color: var(--dk-text-light);
    max-width: 680px;
    margin: 0 auto 56px;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-REVEAL-ANIMATION (von JS gesteuert)
   ═══════════════════════════════════════════════════════════════ */
.dk-reveal {
    opacity: 0;
    transform: translateY(32px);
}

.dk-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HERO-BEREICH
   ═══════════════════════════════════════════════════════════════ */
.dk-hero {
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 40%, var(--dk-primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Dekorative Hintergrund-Elemente */
.dk-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 183, 186, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: dk-hero-pulse 8s ease-in-out infinite alternate;
}

.dk-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 239, 0, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: dk-hero-pulse 10s ease-in-out 2s infinite alternate;
}

@keyframes dk-hero-pulse {
    from { transform: scale(1); opacity: 0.7; }
    to   { transform: scale(1.15); opacity: 1; }
}

/* Subtiles Dot-Pattern im Hintergrund */
.dk-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.dk-hero__container {
    max-width: var(--dk-container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dk-hero__badge {
    display: inline-block;
    background: var(--dk-accent-soft);
    color: var(--dk-accent);
    padding: 7px 18px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 239, 0, 0.3);
    backdrop-filter: blur(4px);
}

.dk-hero__title {
    font-family: var(--dk-font-head);
    font-size: 3.25rem;
    line-height: 1.1;
    margin: 0 0 24px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.dk-hero__highlight {
    color: var(--dk-accent);
    position: relative;
    display: inline-block;
}

/* Dekoratives Underline-Glow unter "40.000 €" */
.dk-hero__highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--dk-accent), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.dk-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
    max-width: 520px;
}

.dk-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

/* NL-14 Round-3: Tertiäre Aktion als Text-Link mit Pfeil — visuell schwächer
   als Outline-Button #2, damit die Hierarchie 1=Primary > 2=Outline > 3=Link klar wird. */
.dk-hero__scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 8px 4px;
    margin-bottom: 28px;
    transition: color var(--dk-transition);
    border-bottom: 1px solid transparent;
}

.dk-hero__scroll-link i {
    color: var(--dk-accent);
    font-size: 0.9rem;
    transition: transform var(--dk-transition);
}

.dk-hero__scroll-link:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 239, 0, 0.45);
}

.dk-hero__scroll-link:hover i {
    transform: translateY(2px);
}

.dk-hero__scroll-link:focus-visible {
    outline: 2px solid var(--dk-accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ── Trust-Badges unter dem Hero ── */
.dk-hero__trust {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* NL-14 Round-3 (P2 Polish): Trust-Items kraeftiger — Schrift +0.1rem,
   Icon-Akzent in voller Rose-Sättigung statt 60 % Opacity. */
.dk-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.dk-hero__trust-item i {
    font-size: 1rem;
    color: var(--dk-secondary);
}

/* ── Hero Visual (rechte Seite) ── */
.dk-hero__visual {
    position: relative;
}

/* Dekorative Orbs statt Placeholder-Bild */
.dk-hero__decorative {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 420px;
    margin: 0 auto;
}

.dk-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.dk-hero__orb--1 {
    width: 65%;
    height: 65%;
    top: 10%;
    left: 15%;
    background: linear-gradient(135deg, rgba(229, 183, 186, 0.25) 0%, rgba(229, 183, 186, 0.08) 100%);
    border: 1px solid rgba(229, 183, 186, 0.15);
    animation: dk-orb-float 6s ease-in-out infinite alternate;
}

.dk-hero__orb--2 {
    width: 45%;
    height: 45%;
    bottom: 5%;
    right: 5%;
    background: linear-gradient(135deg, rgba(255, 239, 0, 0.12) 0%, rgba(255, 239, 0, 0.04) 100%);
    border: 1px solid rgba(255, 239, 0, 0.1);
    animation: dk-orb-float 8s ease-in-out 1s infinite alternate;
}

.dk-hero__orb--3 {
    width: 30%;
    height: 30%;
    top: 5%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: dk-orb-float 7s ease-in-out 0.5s infinite alternate;
}

/* Zentrales Icon in den Orbs */
.dk-hero__orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: rgba(229, 183, 186, 0.5);
    backdrop-filter: blur(8px);
}

@keyframes dk-orb-float {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-12px) scale(1.03); }
}

/* Stats unter dem Visual */
.dk-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.dk-hero__stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--dk-radius);
    padding: 18px 14px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background var(--dk-transition), border-color var(--dk-transition);
}

.dk-hero__stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.dk-hero__stat-value {
    display: block;
    font-family: var(--dk-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dk-accent);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.dk-hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION-DIVIDER (Subtile Wellen zwischen Sektionen)
   ═══════════════════════════════════════════════════════════════ */
.dk-divider {
    position: relative;
    height: 60px;
    margin-top: -1px;
    overflow: hidden;
}

.dk-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM & LÖSUNG
   ═══════════════════════════════════════════════════════════════ */
.dk-problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.dk-problem__challenge {
    padding-right: 16px;
}

.dk-problem__text {
    color: var(--dk-text-light);
    margin: 0 0 28px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.dk-problem__facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dk-problem__facts li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.04);
    border-radius: var(--dk-radius-sm);
    border-left: 3px solid rgba(239, 68, 68, 0.3);
    transition: background var(--dk-transition);
}

.dk-problem__facts li:hover {
    background: rgba(239, 68, 68, 0.07);
}

.dk-problem__facts li i {
    color: var(--dk-danger);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

/* Info-Cards (Lösung) */
.dk-info-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    border: 1px solid var(--dk-border);
    margin-bottom: 14px;
    transition: box-shadow var(--dk-transition), transform var(--dk-transition);
}

.dk-info-card:hover {
    box-shadow: var(--dk-shadow-md);
    transform: translateY(-2px);
}

.dk-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 1rem;
}

.dk-info-card__content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dk-heading);
    margin-bottom: 3px;
}

.dk-info-card__content span {
    font-size: 0.88rem;
    color: var(--dk-text-light);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   LEISTUNGSPAKET
   ═══════════════════════════════════════════════════════════════ */
.dk-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dk-leistung-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    padding: 32px 24px 28px;
    border: 1px solid var(--dk-border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--dk-transition), box-shadow var(--dk-transition);
}

/* Rosé-Akzentstreifen oben auf jeder Karte */
.dk-leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dk-secondary), var(--dk-secondary-light));
    opacity: 0;
    transition: opacity var(--dk-transition);
}

.dk-leistung-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dk-shadow-lg);
}

.dk-leistung-card:hover::before {
    opacity: 1;
}

.dk-leistung-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(35, 54, 69, 0.2);
    transition: transform var(--dk-transition), box-shadow var(--dk-transition);
}

.dk-leistung-card:hover .dk-leistung-card__icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(35, 54, 69, 0.25);
}

.dk-leistung-card__title {
    font-family: var(--dk-font-head);
    font-size: 1.02rem;
    color: var(--dk-heading);
    margin: 0 0 10px;
    line-height: 1.3;
}

.dk-leistung-card__text {
    font-size: 0.87rem;
    color: var(--dk-text-light);
    margin: 0;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   REFERENZPROJEKTE
   ═══════════════════════════════════════════════════════════════ */
.dk-referenzen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.dk-referenz-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    overflow: hidden;
    border: 1px solid var(--dk-border);
    transition: box-shadow var(--dk-transition), transform var(--dk-transition);
}

.dk-referenz-card:hover {
    box-shadow: var(--dk-shadow-lg);
    transform: translateY(-4px);
}

/* NL-14 Round-3: 4 abgeschlossene Referenzen sind klickbar und führen zu
   designstuuv.de/referenzen/* — UTM-getaggt. In-Umsetzung-Cards bleiben <div>. */
.dk-referenz-card--linked {
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.dk-referenz-card--linked:hover {
    box-shadow: var(--dk-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--dk-secondary-strong);
}

.dk-referenz-card--linked:focus-visible {
    outline: 2px solid var(--dk-accent);
    outline-offset: 3px;
}

/* ↗ External-Link-Indikator oben rechts auf verlinkten Cards */
.dk-referenz-card__external {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 183, 186, 0.18);
    border: 1px solid rgba(229, 183, 186, 0.35);
    border-radius: 50%;
    color: var(--dk-secondary-strong, #c98890);
    font-size: 0.78rem;
    transition: background var(--dk-transition), transform var(--dk-transition), border-color var(--dk-transition);
    z-index: 2;
    pointer-events: none;
}

.dk-referenz-card--linked:hover .dk-referenz-card__external {
    background: var(--dk-accent);
    border-color: var(--dk-accent);
    color: var(--dk-heading);
    transform: translate(2px, -2px);
}

.dk-referenz-card__image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--dk-bg-alt) 0%, rgba(229, 183, 186, 0.08) 100%);
    overflow: hidden;
    position: relative;
}

.dk-referenz-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--dk-heading);
    opacity: 0.15;
    font-size: 3rem;
    transition: opacity var(--dk-transition), transform var(--dk-transition);
}

.dk-referenz-card:hover .dk-referenz-card__placeholder {
    opacity: 0.25;
    transform: scale(1.05);
}

.dk-referenz-card__content {
    padding: 26px 24px;
}

.dk-referenz-card__title {
    font-family: var(--dk-font-head);
    font-size: 1.15rem;
    color: var(--dk-heading);
    margin: 0 0 6px;
}

.dk-referenz-card__subtitle {
    font-size: 0.85rem;
    color: var(--dk-secondary);
    font-weight: 600;
    margin: 0 0 12px;
}

.dk-referenz-card__text {
    font-size: 0.9rem;
    color: var(--dk-text-light);
    margin: 0;
    line-height: 1.65;
}

/* ── Zitat ── */
.dk-quote {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 40px 48px;
    border-left: 4px solid var(--dk-secondary);
    margin: 0;
    position: relative;
    box-shadow: var(--dk-shadow-md);
    overflow: hidden;
}

/* Dekorative Rosé-Ecke */
.dk-quote::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, var(--dk-secondary-pale) 0%, transparent 70%);
    pointer-events: none;
}

.dk-quote__icon {
    color: var(--dk-secondary);
    font-size: 1.75rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.dk-quote__text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dk-heading);
    margin: 0 0 20px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.dk-quote__footer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dk-quote__author {
    font-weight: 700;
    color: var(--dk-heading);
    font-size: 0.95rem;
}

.dk-quote__role {
    color: var(--dk-text-light);
    font-size: 0.88rem;
}

.dk-quote__role::before {
    content: '—';
    margin-right: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   FÖRDERUNG AUF EINEN BLICK
   ═══════════════════════════════════════════════════════════════ */
.dk-ueberblick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.dk-ueberblick-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    padding: 36px 20px;
    text-align: center;
    border: 1px solid var(--dk-border);
    box-shadow: var(--dk-shadow-sm);
    transition: box-shadow var(--dk-transition), transform var(--dk-transition);
}

.dk-ueberblick-card:hover {
    box-shadow: var(--dk-shadow-md);
    transform: translateY(-3px);
}

.dk-ueberblick-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(35, 54, 69, 0.08) 0%, rgba(35, 54, 69, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--dk-heading);
    font-size: 1.2rem;
    transition: background var(--dk-transition);
}

.dk-ueberblick-card:hover .dk-ueberblick-card__icon {
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    color: var(--white);
}

.dk-ueberblick-card__value {
    font-family: var(--dk-font-head);
    font-size: 1.4rem;
    color: var(--dk-heading);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.dk-ueberblick-card__label {
    font-size: 0.82rem;
    color: var(--dk-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dk-ueberblick__highlight {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 2px solid var(--dk-accent);
    box-shadow: 0 4px 20px rgba(255, 239, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Subtiler Accent-Glow */
.dk-ueberblick__highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 239, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.dk-ueberblick__highlight i {
    font-size: 1.6rem;
    color: var(--dk-accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(255, 239, 0, 0.3));
}

.dk-ueberblick__highlight p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dk-heading);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKTFORMULAR
   ═══════════════════════════════════════════════════════════════ */
.dk-kontakt {
    background: var(--dk-white);
}

.dk-kontakt__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.dk-kontakt__text {
    color: var(--dk-text-light);
    font-size: 1.05rem;
    margin: 0 0 28px;
    line-height: 1.75;
}

.dk-kontakt__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dk-kontakt__benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    padding: 8px 0;
}

.dk-kontakt__benefits li i {
    color: var(--dk-success);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dk-success-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ── Formular ── */
.dk-kontakt__form-wrapper {
    background: var(--dk-bg);
    border-radius: var(--dk-radius-xl);
    padding: 40px;
    border: 1px solid var(--dk-border);
    box-shadow: var(--dk-shadow-sm);
}

.dk-form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.dk-form__group {
    margin-bottom: 22px;
}

.dk-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dk-form__label {
    display: block;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--dk-heading);
    margin-bottom: 7px;
}

.dk-form__required {
    color: var(--dk-danger);
}

.dk-form__optional {
    color: var(--dk-text-light);
    font-weight: 400;
    font-size: 0.82rem;
}

.dk-form__input,
.dk-form__select,
.dk-form__textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--dk-border);
    border-radius: var(--dk-radius);
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    color: var(--dk-text);
    background: var(--dk-white);
    transition: border-color var(--dk-transition), box-shadow var(--dk-transition);
    box-sizing: border-box;
}

.dk-form__input::placeholder,
.dk-form__textarea::placeholder {
    color: var(--dk-text-light);
    opacity: 0.6;
}

.dk-form__input:focus,
.dk-form__select:focus,
.dk-form__textarea:focus {
    outline: none;
    border-color: var(--dk-primary);
    box-shadow: 0 0 0 4px rgba(35, 54, 69, 0.08);
}

.dk-form__input.dk-form__input--error,
.dk-form__select.dk-form__select--error {
    border-color: var(--dk-danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.dk-form__error {
    display: none;
    font-size: 0.82rem;
    color: var(--dk-danger);
    margin-top: 5px;
}

.dk-form__error--visible {
    display: block;
}

.dk-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.dk-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ── Checkboxen ── */
.dk-form__fieldset {
    border: none;
    padding: 0;
    margin: 0 0 22px;
}

.dk-form__legend {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--dk-heading);
    margin-bottom: 12px;
}

.dk-form__checkboxes {
    /* NL-14: Grid statt Flex-Wrap fuer gleiche Checkbox-Breiten */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.dk-form__checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    min-height: 44px;
    border-radius: var(--dk-radius);
    border: 1.5px solid var(--dk-border);
    cursor: pointer;
    font-size: 0.87rem;
    transition: all var(--dk-transition);
    background: var(--dk-white);
    user-select: none;
}

.dk-form__checkbox-label:hover {
    background: rgba(35, 54, 69, 0.02);
    border-color: var(--dk-primary-light);
}

.dk-form__checkbox-label input[type="checkbox"] {
    accent-color: var(--dk-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.dk-form__checkbox-label input[type="checkbox"]:checked + span {
    color: var(--dk-heading);
    font-weight: 600;
}

.dk-form__checkbox-label--highlight {
    border-color: var(--dk-accent);
    background: rgba(255, 239, 0, 0.04);
}

.dk-form__checkbox-label--highlight:hover {
    background: rgba(255, 239, 0, 0.08);
    border-color: var(--dk-accent);
}

.dk-form__checkbox-label--legal {
    border: none;
    padding: 0;
    align-items: flex-start;
    background: none;
}

.dk-form__checkbox-label--legal:hover {
    background: none;
}

.dk-form__checkbox-label--legal span {
    font-size: 0.85rem;
    color: var(--dk-text-light);
    line-height: 1.5;
}

.dk-form__checkbox-label--legal a {
    color: var(--dk-heading);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dk-form__hint {
    text-align: center;
    font-size: 0.82rem;
    color: var(--dk-text-light);
    margin: 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dk-form__hint i {
    color: var(--dk-success);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.dk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: var(--dk-radius);
    font-family: var(--dk-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--dk-transition);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.dk-btn--primary {
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    color: var(--white);
    border-color: var(--dk-primary);
    box-shadow: 0 4px 14px rgba(35, 54, 69, 0.25);
}

.dk-btn--primary:hover {
    background: linear-gradient(135deg, var(--dk-primary-light) 0%, var(--dk-primary) 100%);
    border-color: var(--dk-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 54, 69, 0.3);
}

.dk-btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.dk-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.dk-btn--lg {
    padding: 17px 36px;
    font-size: 1.02rem;
}

.dk-btn--full {
    width: 100%;
}

/* Premium Submit-Button mit Gradient-Shimmer */
.dk-btn--submit {
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 50%, var(--dk-primary) 100%);
    background-size: 200% 100%;
    animation: dk-btn-shimmer 3s ease-in-out infinite;
    font-size: 1.05rem;
    padding: 18px 36px;
    letter-spacing: 0.02em;
}

@keyframes dk-btn-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dk-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    animation: none;
}

/* ═══════════════════════════════════════════════════════════════
   ERFOLGS-MELDUNG
   ═══════════════════════════════════════════════════════════════ */
.dk-success {
    text-align: center;
    padding: 48px 24px;
}

.dk-success__icon {
    font-size: 4rem;
    color: var(--dk-success);
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.dk-success__title {
    font-family: var(--dk-font-head);
    font-size: 1.6rem;
    color: var(--dk-heading);
    margin: 0 0 14px;
}

.dk-success__text {
    color: var(--dk-text-light);
    font-size: 1.05rem;
    margin: 0 0 24px;
    line-height: 1.7;
}

.dk-success__contact {
    font-size: 0.95rem;
    color: var(--dk-text);
}

.dk-success__contact a {
    color: var(--dk-heading);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   ANSPRECHPARTNER
   ═══════════════════════════════════════════════════════════════ */
.dk-ansprechpartner {
    background: var(--dk-bg-alt);
}

.dk-ansprechpartner__card {
    background: var(--dk-white);
    border-radius: var(--dk-radius-xl);
    padding: 52px;
    display: flex;
    gap: 48px;
    align-items: center;
    box-shadow: var(--dk-shadow-lg);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Dekorativer Rosé-Akzent */
.dk-ansprechpartner__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--dk-secondary) 0%, var(--dk-secondary-light) 100%);
}

.dk-ansprechpartner__avatar {
    flex-shrink: 0;
}

.dk-ansprechpartner__placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 3.5rem;
    box-shadow: 0 8px 24px rgba(35, 54, 69, 0.2);
    border: 4px solid var(--dk-white);
}

/* NL-14: Echtes Heinz-Foto statt Placeholder-Icon */
.dk-ansprechpartner__photo {
    width: 180px;
    height: auto;
    display: block;
    border-radius: var(--dk-radius-lg);
    box-shadow: 0 10px 28px rgba(35, 54, 69, 0.22);
    border: 4px solid var(--dk-white);
    background: var(--dk-bg);
    object-fit: cover;
    object-position: center top;
}

.dk-ansprechpartner__name {
    font-family: var(--dk-font-head);
    font-size: 1.6rem;
    color: var(--dk-heading);
    margin: 4px 0 6px;
}

.dk-ansprechpartner__role {
    color: var(--dk-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 18px;
}

.dk-ansprechpartner__text {
    color: var(--dk-text-light);
    font-size: 1rem;
    margin: 0 0 24px;
    line-height: 1.7;
}

.dk-ansprechpartner__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.dk-ansprechpartner__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dk-heading);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--dk-transition);
}

.dk-ansprechpartner__link:hover {
    color: var(--dk-primary-light);
}

.dk-ansprechpartner__link i {
    width: 24px;
    text-align: center;
    color: var(--dk-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════════════════ */
.dk-sticky-cta {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: DESKTOP LARGE (min 1200px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1200px) {
    .dk-hero__title {
        font-size: 3.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET (max 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .dk-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* NL-14: max-width hochsetzen, sonst wrappen 3 Buttons unsauber */
    .dk-hero__content {
        max-width: none;
    }

    .dk-hero__title {
        font-size: 2.5rem;
    }

    .dk-hero__decorative {
        max-width: 300px;
    }

    .dk-problem__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dk-problem__challenge {
        padding-right: 0;
    }

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

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

    .dk-referenzen__grid .dk-referenz-card:last-child {
        grid-column: span 2;
    }

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

    .dk-kontakt__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dk-ansprechpartner__card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .dk-ansprechpartner__card::before {
        width: 100%;
        height: 4px;
        left: 0;
    }

    .dk-ansprechpartner__contact {
        align-items: center;
    }

    .dk-hero__trust {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET SMALL (max 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .dk-section {
        padding: 64px 0;
    }

    .dk-section__title {
        font-size: 1.75rem;
    }

    .dk-section__intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .dk-hero {
        padding: 64px 0 56px;
    }

    .dk-hero__title {
        font-size: 2rem;
    }

    .dk-leistungen__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dk-quote {
        padding: 28px 24px;
    }

    .dk-kontakt__form-wrapper {
        padding: 28px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: MOBILE (max 640px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .dk-section {
        padding: 52px 0;
    }

    .dk-hero {
        padding: 52px 0 44px;
    }

    .dk-hero__title {
        font-size: 1.85rem;
    }

    /* Mobile-Hero: kein erzwungener Linebreak — Title fliesst natuerlich (NL-14) */
    .dk-hero__title br {
        display: none;
    }

    .dk-hero__subtitle {
        font-size: 1rem;
    }

    .dk-hero__actions {
        flex-direction: column;
        gap: 10px;
    }
    .dk-hero__actions .dk-btn {
        width: 100%;
    }

    .dk-hero__stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dk-hero__stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
    }

    .dk-hero__stat-value {
        margin-bottom: 0;
    }

    .dk-hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    /* Hero-Visual auf Mobile minimal halten — CTA ueber Fold (NL-14) */
    .dk-hero__visual {
        display: none;
    }

    .dk-section__title {
        font-size: 1.5rem;
    }

    .dk-leistungen__grid {
        grid-template-columns: 1fr;
    }

    .dk-leistung-card {
        text-align: left;
        display: flex;
        gap: 18px;
        padding: 20px;
    }

    .dk-leistung-card__icon {
        margin: 0;
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    .dk-referenzen__grid {
        grid-template-columns: 1fr;
    }

    .dk-referenzen__grid .dk-referenz-card:last-child {
        grid-column: span 1;
    }

    .dk-ueberblick__grid {
        grid-template-columns: 1fr 1fr;
    }

    .dk-ueberblick__highlight {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 22px 20px;
    }

    .dk-kontakt__form-wrapper {
        padding: 24px 18px;
        border-radius: var(--dk-radius-lg);
    }

    .dk-form__row {
        grid-template-columns: 1fr;
    }

    .dk-form__checkboxes {
        flex-direction: column;
    }

    .dk-ansprechpartner__card {
        padding: 28px 20px;
        gap: 28px;
    }

    .dk-ansprechpartner__placeholder {
        width: 110px;
        height: 110px;
        font-size: 2.5rem;
    }

    .dk-divider {
        height: 40px;
    }

    /* Mobile Sticky CTA sichtbar */
    .dk-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--dk-white);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(35, 54, 69, 0.12);
        border-top: 1px solid var(--dk-border);
    }

    .dk-sticky-cta .dk-btn {
        flex: 1;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Abstand am Ende der Seite für den sticky CTA */
    .dk-ansprechpartner {
        padding-bottom: 120px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {
    .dk-scroll-progress,
    .dk-sticky-cta,
    .dk-hero__bg-pattern {
        display: none !important;
    }

    .dk-section {
        padding: 32px 0;
        break-inside: avoid;
    }

    .dk-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NL-14 (2026-04-27) — Inline-Style-Cleanup + neue Klassen
   ═══════════════════════════════════════════════════════════════ */

/* Inline-Style-Replacement (CLAUDE.md Regel 13) */
.dk-btn__loading--hidden,
.dk-btn__text--hidden,
.dk-success--hidden {
    display: none;
}

/* Globaler Form-Error (ersetzt JS style.cssText) */
.dk-form__global-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    transition: opacity 0.3s ease;
}
.dk-form__global-error i {
    margin-right: 8px;
}
.dk-form__global-error--fading {
    opacity: 0;
}

/* Hero-Buttons: dritte Variante "ghost" für sekundären Anchor-CTA */
.dk-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.18);
}
.dk-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--white);
    transform: translateY(-2px);
}

/* Accent-CTA für Urgency-Section (gelb auf dunkel) */
.dk-btn--accent {
    background: var(--dk-accent);
    color: var(--dk-heading);
    border-color: var(--dk-accent);
    box-shadow: 0 4px 14px rgba(255, 239, 0, 0.35);
}
.dk-btn--accent:hover {
    background: #fff48a;
    border-color: #fff48a;
    color: var(--dk-heading);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 239, 0, 0.45);
}

/* Outline auf dunklem Hintergrund (Urgency-Sekundär-CTA) */
.dk-btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}
.dk-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
    transform: translateY(-2px);
}

/* Referenz-Card-Logo (echte Pflegedienst-Logos statt FA-Icons) */
.dk-referenz-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    padding: 16px 20px;
    background: var(--dk-white);
    border-bottom: 1px solid var(--dk-border-light);
}
.dk-referenz-card__logo img {
    /* NL-14: Logos fuellen Container max aus, ohne zu strecken */
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Status-Badge auf Referenz-Cards */
.dk-referenz-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.dk-referenz-card__badge--success {
    color: var(--dk-success);
    background: var(--dk-success-bg);
    border: 1px solid rgba(16, 185, 129, 0.18);
}
.dk-referenz-card__badge--running {
    color: #b45309;
    background: #fef3c7;
    border: 1px solid rgba(217, 119, 6, 0.22);
}
.dk-referenz-card__badge i {
    font-size: 0.78rem;
}

/* Light-Varianten der Section-Labels/Titles für dunkle Sektionen */
.dk-section__label--light {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 239, 0, 0.18);
    border-color: rgba(255, 239, 0, 0.35);
}
.dk-section__title--light {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   URGENCY SECTION (V3-Mailing-Closer "Handeln Sie jetzt")
   ═══════════════════════════════════════════════════════════════ */
.dk-urgency {
    background: linear-gradient(135deg, var(--dk-primary) 0%, var(--dk-primary-light) 100%);
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    overflow: hidden;
}
.dk-urgency::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dk-secondary) 0%, var(--dk-accent) 50%, var(--dk-secondary) 100%);
}
.dk-urgency__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.dk-urgency__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}
.dk-urgency__text strong {
    color: var(--dk-accent);
    font-weight: 700;
}
.dk-urgency__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.dk-urgency__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.dk-urgency__bullets li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
}
.dk-urgency__bullets li i {
    color: var(--dk-success);
}

/* ═══════════════════════════════════════════════════════════════
   CLOSER-SLOGAN (V3-Mailing-Tagline)
   NL-14 Round-3 (P2 Polish): Mehr Bühne — größere Schrift, Akzent-Linien
   in Rosé-Tönen, dezenter Hintergrund-Schimmer, mehr Atemraum.
   ═══════════════════════════════════════════════════════════════ */
.dk-closer {
    position: relative;
    margin: 72px auto 0;
    max-width: 760px;
    text-align: center;
    font-family: var(--dk-font-head);
    font-size: 1.55rem;
    line-height: 1.45;
    color: var(--dk-heading);
    letter-spacing: -0.005em;
    padding: 40px 32px;
    border-top: 1px solid rgba(229, 183, 186, 0.45);
    border-bottom: 1px solid rgba(229, 183, 186, 0.45);
    background: linear-gradient(180deg, rgba(229, 183, 186, 0.06) 0%, transparent 60%);
}

/* Akzent-Linie zentriert über dem Closer (Rosé → Akzent → Rosé) */
.dk-closer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dk-accent), transparent);
    border-radius: 2px;
}

.dk-closer strong {
    color: var(--dk-heading);
    font-weight: 700;
    background: linear-gradient(180deg, transparent 62%, rgba(255, 239, 0, 0.32) 62%, rgba(255, 239, 0, 0.32) 92%, transparent 92%);
    padding: 0 2px;
}

/* Hero-Subtitle: <strong> Förder-Quoten visuell betonen */
.dk-hero__subtitle strong {
    color: var(--white);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED-MOTION-GUARD (a11y, prefers-reduced-motion)
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .dk-hero__bg-pattern,
    .dk-hero__orb,
    .dk-btn--submit {
        animation: none !important;
    }
    .dk-btn,
    .dk-btn:hover,
    .dk-info-card:hover,
    .dk-leistung-card:hover,
    .dk-referenz-card:hover,
    .dk-referenz-card--linked:hover,
    .dk-referenz-card--linked:hover .dk-referenz-card__external,
    .dk-hero__scroll-link:hover i,
    .dk-ueberblick-card:hover {
        transform: none !important;
        transition: none !important;
    }
    .dk-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   QUICK-ANFRAGE-MODAL (NL-14, 2026-04-27)
   ═══════════════════════════════════════════════════════════════ */
.dk-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}
.dk-quick-modal[hidden] {
    display: none;
}
.dk-quick-modal--open {
    pointer-events: auto;
}
.dk-quick-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 40, 53, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dk-quick-modal--open .dk-quick-modal__backdrop {
    opacity: 1;
}
.dk-quick-modal__card {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    box-shadow: 0 24px 60px rgba(26, 40, 53, 0.45);
    padding: 36px 32px 28px;
    transform: scale(0.96) translateY(8px);
    opacity: 0;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
                opacity 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dk-quick-modal--open .dk-quick-modal__card {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.dk-quick-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dk-bg);
    border: none;
    color: var(--dk-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all var(--dk-transition);
}
.dk-quick-modal__close:hover,
.dk-quick-modal__close:focus-visible {
    background: var(--dk-primary);
    color: var(--dk-white);
    outline: none;
}
.dk-quick-modal__header {
    margin-bottom: 22px;
}
.dk-quick-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dk-heading);
    background: var(--dk-accent-soft);
    border: 1px solid rgba(255, 239, 0, 0.3);
    margin-bottom: 14px;
}
.dk-quick-modal__title {
    font-family: var(--dk-font-head);
    font-size: 1.55rem;
    color: var(--dk-heading);
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.dk-quick-modal__lead {
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--dk-text-light);
    margin: 0;
}
.dk-quick-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dk-quick-modal__form .dk-btn {
    margin-top: 4px;
}
.dk-quick-modal__form .dk-form__hint {
    margin-top: 4px;
    font-size: 0.78rem;
}

/* Erfolgs-State im Modal */
.dk-quick-modal__success {
    text-align: center;
    padding: 24px 8px 4px;
}
.dk-quick-modal__success-icon {
    font-size: 3rem;
    color: var(--dk-success);
    margin-bottom: 14px;
}
.dk-quick-modal__success-title {
    font-family: var(--dk-font-head);
    font-size: 1.5rem;
    color: var(--dk-heading);
    margin: 0 0 12px;
}
.dk-quick-modal__success-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--dk-text);
    margin: 0 0 18px;
}
.dk-quick-modal__success-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 22px;
    font-size: 0.92rem;
}
.dk-quick-modal__success-contact a {
    color: var(--dk-heading);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.dk-quick-modal__success-contact a:hover {
    text-decoration: underline;
}
.dk-quick-modal__success .dk-btn--outline-light {
    color: var(--dk-heading);
    border-color: var(--dk-border);
    background: var(--dk-white);
}
.dk-quick-modal__success .dk-btn--outline-light:hover {
    background: var(--dk-bg);
    border-color: var(--dk-primary);
}

/* No-Scroll für Body wenn Modal offen (JS toggelt) */
body.dk-quick-modal-open {
    overflow: hidden;
}

/* Reduced-Motion: keine Modal-Animation */
@media (prefers-reduced-motion: reduce) {
    .dk-quick-modal__backdrop,
    .dk-quick-modal__card {
        transition: none !important;
    }
}

/* Mobile (≤ 640px): Modal nutzt fast Viewport, etwas kompakter */
@media (max-width: 640px) {
    .dk-quick-modal {
        padding: 12px;
        align-items: flex-end;
    }
    .dk-quick-modal__card {
        max-height: calc(100vh - 20px);
        padding: 32px 22px 24px;
        border-radius: var(--dk-radius-lg) var(--dk-radius-lg) var(--dk-radius-sm) var(--dk-radius-sm);
    }
    .dk-quick-modal__title {
        font-size: 1.35rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NL-14 — RESPONSIVE für neue Sektionen
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Referenzen-Grid auf Tablet 2-spaltig */
    .dk-referenzen__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    /* Urgency: Buttons gestapelt, Bullets gestapelt */
    .dk-urgency__actions {
        flex-direction: column;
    }
    .dk-urgency__actions .dk-btn {
        width: 100%;
    }
    .dk-urgency__bullets {
        flex-direction: column;
        gap: 10px;
    }
    .dk-urgency__text {
        font-size: 1rem;
    }
    .dk-closer {
        font-size: 1.1rem;
        padding: 22px 16px;
        margin-top: 36px;
    }
    /* Referenz-Card-Logo Höhe leicht reduziert */
    .dk-referenz-card__logo {
        height: 90px;
        padding: 16px;
    }
}

/* Extra-engste Mobile-Viewports (≤ 380px: iPhone SE, Android Small) */
@media (max-width: 380px) {
    .dk-hero__title {
        font-size: 1.65rem;
    }
    .dk-hero__subtitle {
        font-size: 0.95rem;
    }
    .dk-section__title {
        font-size: 1.4rem;
    }
    .dk-quick-modal__title {
        font-size: 1.25rem;
    }
    .dk-quick-modal__card {
        padding: 28px 18px 22px;
    }
}

/* Tablet-Bereich: Hero verschenkt nicht den Landscape-Raum (NL-14) */
@media (min-width: 901px) and (max-width: 1024px) {
    /* Tablet-Landscape: Hero bleibt 2-spaltig statt zu Single-Column zu kollabieren */
    .dk-hero__container {
        grid-template-columns: 1fr 1fr;
    }
    .dk-hero__visual {
        display: block;
    }
}

/* Ultra-Wide Container-Cap fuer 2K/4K (NL-14) */
@media (min-width: 1920px) {
    .dk-container {
        max-width: 1280px;
    }
    .dk-hero__title {
        font-size: 3rem;
    }
    .dk-section__title {
        font-size: 2.4rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ZUSÄTZLICHE STYLES FÜR DESIGN-KREATIV-LANDING
   (gegenüber Pflege-Master neue Sections + Variationen)
   ═══════════════════════════════════════════════════════════════ */

/* ─── BTN-SIZE SM (für Sticky-CTA mit 2 Buttons) ─── */
.dk-btn--sm {
    padding: 12px 16px;
    font-size: 0.85rem;
    gap: 6px;
}
.dk-btn--sm i {
    font-size: 0.9em;
}

/* ─── TREND-CARDS (3 Cards mit Bild + Body) ─── */
.dk-trends__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.dk-trend-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--dk-transition), box-shadow var(--dk-transition);
}

.dk-trend-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-md);
}

.dk-trend-card__media {
    position: relative;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--dk-bg-alt);
}

.dk-trend-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dk-trend-card:hover .dk-trend-card__media img {
    transform: scale(1.04);
}

.dk-trend-card__body {
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.dk-trend-card__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--dk-secondary-strong);
}

.dk-trend-card__title {
    font-family: var(--dk-font-head);
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--dk-heading);
    margin: 0;
}

.dk-trend-card__text {
    color: var(--dk-text);
    line-height: 1.65;
    flex: 1;
}

.dk-trend-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dk-heading);
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
    transition: gap var(--dk-transition), color var(--dk-transition);
}

.dk-trend-card__cta:hover {
    color: var(--dk-secondary-strong);
    gap: 12px;
}

.dk-trend-card__cta i {
    font-size: 0.85em;
}

/* ─── REFERENZ-HERO-CARDS (2 große Cards mit Bild + Logo + Story) ─── */
.dk-referenzen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.dk-referenz-hero-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--dk-transition), box-shadow var(--dk-transition);
}

.dk-referenz-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-lg);
}

.dk-referenz-hero-card__media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--dk-bg-alt);
}

.dk-referenz-hero-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dk-referenz-hero-card__body {
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dk-referenz-hero-card__logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.dk-referenz-hero-card__logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.dk-referenz-hero-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dk-secondary-pale);
    color: var(--dk-heading);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dk-referenz-hero-card__badge i {
    color: var(--dk-secondary-strong);
}

.dk-referenz-hero-card__title {
    font-family: var(--dk-font-head);
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--dk-heading);
    margin: 0;
}

.dk-referenz-hero-card__text {
    color: var(--dk-text);
    line-height: 1.65;
}

.dk-referenz-hero-card__leistungen {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dk-referenz-hero-card__leistungen li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--dk-text);
}

.dk-referenz-hero-card__leistungen li i {
    color: var(--dk-success);
    font-size: 0.85em;
}

/* ─── PORTAL-HIGHLIGHT-CARDS (Social + Website Screenshots) ─── */
.dk-portal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.dk-portal-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    box-shadow: var(--dk-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--dk-transition), box-shadow var(--dk-transition);
}

.dk-portal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-md);
}

.dk-portal-card__screenshot {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dk-bg-alt);
    border-bottom: 1px solid var(--dk-border-light);
}

.dk-portal-card__screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.dk-portal-card__body {
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dk-portal-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dk-heading);
}

.dk-portal-card__eyebrow i {
    color: var(--dk-secondary-strong);
}

.dk-portal-card__title {
    font-family: var(--dk-font-head);
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--dk-heading);
    margin: 0;
}

.dk-portal-card__text {
    color: var(--dk-text);
    line-height: 1.65;
}

.dk-portal-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dk-primary);
    color: var(--dk-white);
    padding: 12px 20px;
    border-radius: var(--dk-radius);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 8px;
    transition: background var(--dk-transition), transform var(--dk-transition);
}

.dk-portal-card__cta:hover {
    background: var(--dk-primary-light);
    transform: translateY(-1px);
}

/* ─── FORM-SECTION (universell für 2 Forms statt fp-kontakt) ─── */
.dk-form-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.dk-form-section__text {
    color: var(--dk-text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.dk-form-section__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dk-form-section__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dk-text);
}

.dk-form-section__benefits li i {
    color: var(--dk-success);
}

.dk-form-section__form-wrapper {
    background: var(--dk-white);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    box-shadow: var(--dk-shadow-md);
    padding: 36px 32px;
}

/* ─── PROBEMONAT-PREIS-BOX ─── */
.dk-probemonat-box {
    background: linear-gradient(135deg, rgba(255, 239, 0, 0.08) 0%, rgba(229, 183, 186, 0.10) 100%);
    border: 2px solid var(--dk-accent);
    border-radius: var(--dk-radius-lg);
    padding: 28px 26px;
    margin-top: 28px;
}

.dk-probemonat-box__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed rgba(35, 54, 69, 0.18);
}

.dk-probemonat-box__price-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dk-text-light);
}

.dk-probemonat-box__price-value {
    font-family: var(--dk-font-head);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dk-heading);
    line-height: 1;
}

.dk-probemonat-box__price-suffix {
    font-size: 0.88rem;
    color: var(--dk-text-light);
}

.dk-probemonat-box__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dk-probemonat-box__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dk-text);
    font-size: 0.95rem;
}

.dk-probemonat-box__features li i {
    color: var(--dk-success);
    margin-top: 4px;
}

/* ─── TABLET (max 1024px) ─── */
@media (max-width: 1024px) {
    .dk-trends__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dk-referenzen__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dk-portal__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dk-form-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dk-form-section__form-wrapper {
        padding: 32px 26px;
    }
}

/* ─── MOBILE (max 640px) ─── */
@media (max-width: 640px) {
    .dk-trend-card__body {
        padding: 24px 22px 22px;
    }

    .dk-trend-card__title {
        font-size: 1.35rem;
    }

    .dk-referenz-hero-card__body {
        padding: 24px 22px 22px;
    }

    .dk-referenz-hero-card__title {
        font-size: 1.4rem;
    }

    .dk-portal-card__body {
        padding: 22px 22px 22px;
    }

    .dk-portal-card__title {
        font-size: 1.25rem;
    }

    .dk-form-section__form-wrapper {
        padding: 26px 20px;
    }

    .dk-probemonat-box {
        padding: 22px 20px;
    }

    .dk-probemonat-box__price-value {
        font-size: 2.1rem;
    }

    /* Sticky-CTA mit 2 Buttons + Gap */
    .dk-sticky-cta {
        gap: 10px;
    }

    .dk-sticky-cta .dk-btn {
        padding: 12px 14px;
        font-size: 0.82rem;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    .dk-trend-card,
    .dk-referenz-hero-card,
    .dk-portal-card,
    .dk-trend-card__media img,
    .dk-portal-card__cta {
        transition: none !important;
        animation: none !important;
    }

    .dk-trend-card:hover,
    .dk-referenz-hero-card:hover,
    .dk-portal-card:hover {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GEO-CHECK V1 — Multi-Engine AI-Sichtbarkeits-Tool
   Lead-Magnet zwischen Trend-Cards und Leistungspaket
   Pattern: Cabrito-Headlines + Cream-Editorial + Rosé-Hairlines
   ═══════════════════════════════════════════════════════════════ */
.dk-geo-check {
    background: linear-gradient(180deg, #fdfaf5 0%, var(--dk-white) 100%);
    border-top: 1px solid var(--dk-secondary-pale);
    border-bottom: 1px solid var(--dk-secondary-pale);
}

.dk-geo-check__panel {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 36px;
    box-shadow: var(--dk-shadow-md);
    margin-top: 32px;
    border: 1px solid var(--dk-border-light);
}

/* ── Form-Initial-State ── */
.dk-geo-check__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}
.dk-geo-check__form-row {
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .dk-geo-check__form-grid { grid-template-columns: 1fr; }
    .dk-geo-check__panel { padding: 24px; }
}

.dk-geo-check__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dk-geo-check__label {
    font-family: var(--dk-font-body);
    font-weight: 600;
    color: var(--dk-heading);
    font-size: 14px;
}
.dk-geo-check__field input {
    padding: 12px 16px;
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-sm);
    font-size: 16px;
    font-family: var(--dk-font-body);
    color: var(--dk-text);
    background: var(--dk-white);
    transition: var(--dk-transition);
}
.dk-geo-check__field input:focus {
    outline: none;
    border-color: var(--dk-secondary-strong);
    box-shadow: 0 0 0 3px var(--dk-secondary-pale);
}
.dk-geo-check__hint {
    color: var(--dk-text-light);
    font-size: 13px;
}

.dk-geo-check__turnstile {
    margin: 16px 0 24px;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dk-geo-check__form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.dk-geo-check__submit {
    min-width: 280px;
}
.dk-geo-check__submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
.dk-geo-check__legal {
    color: var(--dk-text-light);
    font-size: 13px;
    text-align: center;
}
.dk-geo-check__legal a {
    color: var(--dk-heading);
    text-decoration: underline;
}

.dk-geo-check__error {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid var(--dk-danger);
    border-radius: var(--dk-radius-sm);
    color: var(--dk-danger);
    font-size: 14px;
}

/* ── Scanning-State ── */
.dk-geo-check__scanning {
    text-align: center;
    padding: 24px 0;
}
.dk-geo-check__scanning-headline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}
.dk-geo-check__scanning-headline i {
    font-size: 28px;
    color: var(--dk-secondary-strong);
    animation: dk-geo-pulse 1.6s ease-in-out infinite;
}
.dk-geo-check__scanning-headline h3 {
    font-family: var(--dk-font-head);
    font-size: 28px;
    color: var(--dk-heading);
    margin: 0;
}
.dk-geo-check__scanning-sub {
    color: var(--dk-text-light);
    margin-bottom: 32px;
}

.dk-geo-check__engine-progress {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 520px;
    text-align: left;
}
.dk-geo-check__engine-progress li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--dk-border-light);
    font-size: 15px;
}
.dk-geo-check__engine-progress li:last-child { border-bottom: none; }
.dk-geo-check__engine-name {
    color: var(--dk-heading);
    font-weight: 600;
}
.dk-geo-check__engine-status {
    font-size: 13px;
    color: var(--dk-text-light);
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--dk-bg-alt);
}
.dk-geo-check__engine-status[data-status="active"] {
    background: var(--dk-secondary-pale);
    color: var(--dk-secondary-strong);
}
.dk-geo-check__engine-status[data-status="success"] {
    background: var(--dk-success-bg);
    color: var(--dk-success);
}
.dk-geo-check__engine-status[data-status="failed"] {
    background: rgba(239, 68, 68, 0.1);
    color: var(--dk-danger);
}

.dk-geo-check__scanning-spinner {
    margin: 0 auto;
    width: 48px;
    height: 48px;
    position: relative;
}
.dk-geo-check__spinner-orbit {
    width: 100%;
    height: 100%;
    border: 3px solid var(--dk-border-light);
    border-top-color: var(--dk-secondary-strong);
    border-radius: 50%;
    animation: dk-geo-spin 0.8s linear infinite;
}
@keyframes dk-geo-spin { to { transform: rotate(360deg); } }
@keyframes dk-geo-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ── Result-State ── */
.dk-geo-check__result-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 36px;
}
@media (max-width: 768px) {
    .dk-geo-check__result-header {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .dk-geo-check__score-wrapper { margin: 0 auto; }
}

.dk-geo-check__score-wrapper {
    width: 280px;
    height: 280px;
    position: relative;
}
.dk-geo-check__donut {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.dk-geo-check__donut-track {
    fill: none;
    stroke: var(--dk-border-light);
    stroke-width: 24;
}
.dk-geo-check__donut-progress {
    fill: none;
    stroke: var(--dk-secondary-strong);
    stroke-width: 24;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dk-geo-check__donut-score {
    fill: var(--dk-primary);
    font-family: var(--dk-font-head);
    font-size: 64px;
    font-weight: 700;
    transform: rotate(90deg);
    transform-origin: 140px 140px;
}
.dk-geo-check__donut-unit {
    fill: var(--dk-text-light);
    font-family: var(--dk-font-body);
    font-size: 16px;
    transform: rotate(90deg);
    transform-origin: 140px 140px;
}

.dk-geo-check__result-firma {
    font-family: var(--dk-font-head);
    font-size: 32px;
    color: var(--dk-heading);
    margin: 0 0 12px;
}
.dk-geo-check__result-summary {
    font-size: 16px;
    color: var(--dk-text);
    margin-bottom: 20px;
    line-height: 1.6;
}
.dk-geo-check__result-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .dk-geo-check__result-stats { justify-content: center; }
}
.dk-geo-check__result-stats li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dk-geo-check__result-stats strong {
    font-family: var(--dk-font-head);
    font-size: 28px;
    color: var(--dk-secondary-strong);
}
.dk-geo-check__result-stats span {
    font-size: 13px;
    color: var(--dk-text-light);
}

/* ── Engine-Cards-Grid ── */
.dk-geo-check__engine-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
@media (max-width: 1024px) {
    .dk-geo-check__engine-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .dk-geo-check__engine-cards { grid-template-columns: 1fr; }
}

.dk-geo-check__engine-card {
    background: var(--dk-white);
    border: 1px solid var(--dk-border-light);
    border-radius: var(--dk-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--dk-transition);
}
.dk-geo-check__engine-card[data-mentioned="true"] {
    border-color: var(--dk-success);
    background: linear-gradient(180deg, var(--dk-success-bg) 0%, var(--dk-white) 30%);
}
.dk-geo-check__engine-card[data-mentioned="false"] {
    opacity: 0.85;
    border-color: var(--dk-border);
}
.dk-geo-check__engine-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dk-geo-check__engine-card__title {
    font-family: var(--dk-font-body);
    font-weight: 700;
    color: var(--dk-heading);
    font-size: 15px;
}
.dk-geo-check__engine-card__badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.dk-geo-check__engine-card__badge[data-state="mentioned"] {
    background: var(--dk-success-bg);
    color: var(--dk-success);
}
.dk-geo-check__engine-card__badge[data-state="not-mentioned"] {
    background: var(--dk-bg-alt);
    color: var(--dk-text-light);
}
.dk-geo-check__engine-card__snippet {
    font-size: 13px;
    color: var(--dk-text);
    line-height: 1.5;
    font-style: italic;
    border-left: 2px solid var(--dk-secondary-pale);
    padding-left: 10px;
    min-height: 60px;
}
.dk-geo-check__engine-card__meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--dk-text-light);
    margin-top: auto;
}

/* ── Result-Actions ── */
.dk-geo-check__result-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Lead-Form ── */
.dk-geo-check__lead-title {
    font-family: var(--dk-font-head);
    font-size: 28px;
    color: var(--dk-heading);
    margin: 0 0 8px;
}
.dk-geo-check__lead-sub {
    color: var(--dk-text-light);
    margin-bottom: 24px;
}
.dk-geo-check__lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .dk-geo-check__lead-grid { grid-template-columns: 1fr; }
}
.dk-geo-check__lead-grid .dk-geo-check__field:first-child {
    grid-column: 1 / -1;
}
.dk-geo-check__lead-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Honeypot — versteckt fuer Menschen, sichtbar fuer Bots */
.dk-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Datenschutz-Checkbox */
.dk-form__checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--dk-text);
    line-height: 1.5;
    margin-bottom: 16px;
}
.dk-form__checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}
.dk-form__checkbox a {
    color: var(--dk-heading);
    text-decoration: underline;
}

/* ── Success-State ── */
.dk-geo-check__success,
.dk-geo-check__empty {
    text-align: center;
    padding: 40px 20px;
}
.dk-geo-check__success-icon,
.dk-geo-check__empty i {
    font-size: 56px;
    color: var(--dk-success);
    margin-bottom: 16px;
}
.dk-geo-check__empty i {
    color: var(--dk-secondary-strong);
}
.dk-geo-check__success h3,
.dk-geo-check__empty h3 {
    font-family: var(--dk-font-head);
    font-size: 30px;
    color: var(--dk-heading);
    margin: 0 0 12px;
}
.dk-geo-check__success p,
.dk-geo-check__empty p {
    color: var(--dk-text);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.dk-geo-check__success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .dk-geo-check__donut-progress { transition: none; }
    .dk-geo-check__scanning-headline i,
    .dk-geo-check__spinner-orbit { animation: none; }
}

/* GEO-Check spezifische Button-Variante: Sekundaer-Outline auf hellem Hintergrund
   (Pendant zu dk-btn--outline-light, welches fuer dunkle Hintergruende ist) */
.dk-btn--secondary-light {
    background: transparent;
    color: var(--dk-heading);
    border-color: var(--dk-primary);
}
.dk-btn--secondary-light:hover {
    background: var(--dk-primary);
    color: var(--white);
    border-color: var(--dk-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(35, 54, 69, 0.2);
}

/* Submit-Button-Override fuer GEO-Check Form (Cream-Background, kompakt) */
.dk-geo-check__submit {
    min-width: 280px;
}

/* STAFFSET-S6c — Dark-Override für lokale --dk-Palette (Surfaces/Text/Border kippen,
 * Akzente --dk-primary/-secondary/-accent + Status bleiben). Heading-Split: color-Uses
 * von --dk-primary wurden auf --dk-heading umgestellt (Light wertgleich). */
html[data-theme="dark"] {
  --dk-heading: #eef2f6;
  --dk-text: #d4dae1;
  --dk-text-light: #98a3af;
  --dk-bg: #0f1722;
  --dk-bg-alt: #161f29;
  --dk-white: #1a2531;
  --dk-border: rgba(255,255,255,0.11);
  --dk-border-light: rgba(255,255,255,0.06);
  --dk-success-bg: rgba(16,185,129,0.16);
}
