.kc-banner {
                                --kc-teal: #009e88;
                                --kc-teal-dark: #007a68;
                                --kc-teal-light: #e6f5f2;
                                --kc-ink: #1a3c5e;
                                --kc-ink-soft: #4a5868;
                                --kc-line: #c9d2da;
                             
                                background: linear-gradient(180deg, #f7faf9 0%, #edf5f3 100%);
                                border: 2px solid var(--kc-teal);
                                padding: 1.75rem 2rem;
                                text-align: center;
                                font-family: inherit;
                                color: var(--kc-ink);
                              }
                              .kc-banner *, .kc-banner *::before, .kc-banner *::after { box-sizing: border-box; }
                             
                              .kc-inner {
                                max-width: 900px;
                                margin: 0 auto;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                gap: 1rem;
                              }
                             
                              .kc-eyebrow {
                                font-weight: 700;
                                letter-spacing: 0.12em;
                                text-transform: uppercase;
                                color: var(--kc-ink);
                                display: inline-flex;
                                align-items: center;
                                gap: 0.7rem;
                              }
                              .kc-eyebrow::before {
                                content: "";
                                width: 12px;
                                height: 12px;
                                background: var(--kc-teal);
                                border-radius: 50%;
                                box-shadow: 0 0 0 5px rgba(0, 158, 136, 0.2);
                                animation: kc-pulse 2s ease-in-out infinite;
                                flex-shrink: 0;
                              }
                              @keyframes kc-pulse {
                                                0%, 100% { box-shadow: 0 0 0 5px rgba(0, 158, 136, 0.2); }
                                                50%      { box-shadow: 0 0 0 10px rgba(0, 158, 136, 0); }
                                              }
                                             
                                              .kc-row {
                                                display: flex;
                                                align-items: center;
                                                gap: 1.5rem;
                                                flex-wrap: wrap;
                                                justify-content: center;
                                              }
                                             
                                              .kc-cd {
                                                display: flex;
                                                align-items: baseline;
                                                gap: 0.6rem;
                                                font-variant-numeric: tabular-nums;
                                              }
                                              .kc-unit { display: flex; flex-direction: column; align-items: center; min-width: 88px; }
                                              .kc-num {
                                                font-size: 5rem;
                                                font-weight: 800;
                                                color: var(--kc-ink);
                                                line-height: 1;
                                                letter-spacing: -0.03em;
                                              }
                                              .kc-lbl {
                                                text-transform: uppercase;
                                                letter-spacing: 0.15em;
                                                color: var(--kc-ink-soft);
                                                margin-top: 0.5rem;
                                                font-weight: 700;
                                              }
                                              .kc-sep {
                                                font-size: 2.8rem;
                                                font-weight: 300;
                                                color: var(--kc-teal);
                                                line-height: 1;
                                                transform: translateY(-16px);
                                                opacity: 0.5;
                                              }
                                             
                                              .kc-info-btn {
                                                background: var(--kc-teal);
                                                color: #fff;
                                                border: none;
                                                padding: 1.1rem 1.6rem;
                                                border-radius: 6px;
                                                cursor: pointer;
                                                font-family: inherit;
                                                font-weight: 700;
                                                text-transform: uppercase;
                                                letter-spacing: 0.08em;
                                                line-height: 1.2;
                                                transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
                                                display: flex;
                                                align-items: center;
                                                gap: 0.65rem;
                                                white-space: nowrap;
                                                flex-shrink: 0;
                                                box-shadow: 0 3px 10px rgba(0, 158, 136, 0.35);
                                              }
                                              .kc-info-btn:hover { background: var(--kc-teal-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 158, 136, 0.4); }
                                              .kc-info-btn:focus-visible { outline: 3px solid #ffd100; outline-offset: 2px; }
                                              .kc-info-btn svg { width: 26px; height: 26px; }
                                             
                                              .kc-mini-info {
                                                color: var(--kc-ink);
                                                line-height: 1.4;
                                                font-weight: 500;
                                              }
                                              .kc-mini-info strong { color: var(--kc-teal); font-weight: 800; }
                                             
                                              /* ===== Reveal-Zustand nach Ablauf ===== */
                                              .kc-banner.kc-done .kc-cd,
                                              .kc-banner.kc-done .kc-mini-info,
                                              .kc-banner.kc-done .kc-eyebrow,
                                              .kc-banner.kc-done .kc-info-btn,
                                              .kc-banner.kc-done .kc-sep { display: none; }
                                              .kc-banner.kc-done .kc-reveal { display: flex; }
                                             
                                              .kc-reveal {
                                                display: none;
                                                flex-direction: column;
                                                align-items: center;
                                                gap: 0.8rem;
                                                padding: 0.5rem 0;
                                              }
                                              .kc-reveal-headline {
                                                font-weight: 800;
                                                text-transform: uppercase;
                                                letter-spacing: 0.08em;
                                                color: var(--kc-teal);
                                              }
                                              .kc-reveal-text {
                                                color: var(--kc-ink);
                                                line-height: 1.45;
                                              }
                                              .kc-reveal-btn {
                                                display: inline-block;
                                                background: var(--kc-teal);
                                                color: #fff;
                                                padding: 1rem 2.2rem;
                                                text-decoration: none;
                                                font-weight: 700;
                                                text-transform: uppercase;
                                                letter-spacing: 0.08em;
                                                border-radius: 6px;
                                                transition: background 0.2s ease;
                                                box-shadow: 0 3px 10px rgba(0, 158, 136, 0.35);
                                                margin-top: 0.25rem;
                                              }
                                              .kc-reveal-btn:hover { background: var(--kc-teal-dark); color: #fff; }
                                             
                                              /* ============================= MODAL ============================= */
                                              .kc-modal-backdrop {
                                                --kc-teal: #009e88;
                                                --kc-teal-dark: #007a68;
                                                --kc-teal-light: #e6f5f2;
                                                --kc-ink: #1a3c5e;
                                                --kc-ink-soft: #4a5868;
                                                --kc-line: #c9d2da;
                                             
                                                position: fixed;
                                                top: 0; left: 0; right: 0; bottom: 0;
                                                background: rgba(26, 60, 94, 0.82);
                                                backdrop-filter: blur(6px);
                                                -webkit-backdrop-filter: blur(6px);
                                                display: flex;
                                                align-items: center;
                                                justify-content: center;
                                                z-index: 2147483647;
                                                padding: 2rem 1rem;
                                                overflow-y: auto;
                                                opacity: 0;
                                                transition: opacity 0.3s ease;
                                                font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
                                                color: var(--kc-ink);
                                              }
                                              .kc-modal-backdrop[hidden] { display: none; }
                                              .kc-modal-backdrop.kc-open { opacity: 1; }
                                              .kc-modal-backdrop *, .kc-modal-backdrop *::before, .kc-modal-backdrop *::after { box-sizing: border-box; }
                                             
                                              .kc-modal {
                                                background: #fff;
                                                max-width: 800px;
                                                width: 100%;
                                                border-radius: 8px;
                                                overflow: hidden;
                                                box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
                                                transform: translateY(24px) scale(0.97);
                                                transition: transform 0.3s ease;
                                                max-height: calc(100vh - 4rem);
                                                display: flex;
                                                flex-direction: column;
                                              }
                                              .kc-modal-backdrop.kc-open .kc-modal { transform: translateY(0) scale(1); }
                                             
                                              .kc-modal-header {
                                                background: var(--kc-ink);
                                                color: #fff;
                                                padding: 2rem 2.25rem;
                                                display: flex;
                                                justify-content: space-between;
                                                align-items: flex-start;
                                                gap: 1rem;
                                                border-bottom: 4px solid var(--kc-teal);
                                              }
                                              .kc-modal-kicker {
                                                text-transform: uppercase;
                                                letter-spacing: 0.2em;
                                                color: var(--kc-teal);
                                                font-weight: 700;
                                                margin-bottom: 0.65rem;
                                              }
                                              .kc-modal-header h2 {
                                                font-weight: 700;
                                                line-height: 1.2;
                                                margin: 0;
                                                color:#fff !important;
                                              }
                                              .kc-modal-subtitle {
                                                color: rgba(255, 255, 255, 0.9);
                                                margin-top: 0.55rem;
                                              }
                                             
                                              .kc-modal-close {
                                                background: rgba(255, 255, 255, 0.12);
                                                border: none;
                                                color: #fff;
                                                width: 48px;
                                                height: 48px;
                                                border-radius: 50%;
                                                cursor: pointer;
                                                display: grid;
                                                place-items: center;
                                                transition: background 0.2s ease;
                                                flex-shrink: 0;
                                              }
                                              .kc-modal-close:hover { background: rgba(255, 255, 255, 0.25); }
                                              .kc-modal-close:focus-visible { outline: 3px solid #ffd100; outline-offset: 2px; }
                                             
                                              .kc-modal-body { padding: 2.25rem; overflow-y: auto; }
                                              .kc-modal-cd {
                                                                        display: grid;
                                                                        grid-template-columns: repeat(4, 1fr);
                                                                        gap: 0.75rem;
                                                                        padding: 1.75rem;
                                                                        background: var(--kc-teal-light);
                                                                        border-radius: 6px;
                                                                        margin-bottom: 2.25rem;
                                                                        font-variant-numeric: tabular-nums;
                                                                    }
                                              
                                              .kc-modal-cd .kc-unit { text-align: center; min-width: 0; }
                                              .kc-modal-cd .kc-num {
                                                font-size: 5.4rem;
                                                font-weight: 800;
                                                color: var(--kc-teal);
                                                line-height: 1;
                                                letter-spacing: -0.03em;
                                                display: block;
                                              }
                                              .kc-modal-cd .kc-lbl {
                                                text-transform: uppercase;
                                                letter-spacing: 0.15em;
                                                color: var(--kc-ink);
                                                margin-top: 0.6rem;
                                                font-weight: 700;
                                                display: block;
                                              }
                                             
                                              .kc-info-section { margin-bottom: 2.25rem; }
                                              .kc-info-section:last-child { margin-bottom: 0; }
                                              .kc-info-section h3 {
                                                text-transform: uppercase;
                                                letter-spacing: 0.15em;
                                                color: var(--kc-teal);
                                                font-weight: 700;
                                                margin: 0 0 1rem;
                                                padding-bottom: 0.75rem;
                                                border-bottom: 2px solid var(--kc-line);
                                              }
                                             
                                              .kc-info-list { display: grid; gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
                                              .kc-info-list li {
                                                display: grid;
                                                grid-template-columns: auto 1fr;
                                                gap: 1.1rem;
                                                align-items: start;
                                                line-height: 1.55;
                                                color: var(--kc-ink);
                                              }
                                              .kc-info-list .kc-ico {
                                                width: 40px;
                                                height: 40px;
                                                background: var(--kc-teal-light);
                                                border-radius: 50%;
                                                display: grid;
                                                place-items: center;
                                                flex-shrink: 0;
                                                font-weight: 800;
                                                color: var(--kc-teal);
                                                font-size: 1.15rem;
                                              }
                                              .kc-info-list strong, .kc-info-list b { color: var(--kc-teal); font-weight: 700; }
                                             
                                              .kc-alert {
                                                background: #fff4d6;
                                                border-left: 4px solid #d99200;
                                                padding: 1.2rem 1.4rem;
                                                border-radius: 3px;
                                                line-height: 1.55;
                                                color: #5a3d00;
                                              }
                                              .kc-alert strong { color: #3d2900; font-weight: 700; }
                                             
                                              .kc-modal-footer {
                                                padding: 1.65rem 2.25rem;
                                                border-top: 1px solid var(--kc-line);
                                                background: #fafbfc;
                                                display: flex;
                                                gap: 0.85rem;
                                                justify-content: flex-end;
                                                flex-wrap: wrap;
                                              }
                                              .kc-btn {
                                                padding: 1rem 2rem;
                                                border-radius: 5px;
                                                font-weight: 700;
                                                text-transform: uppercase;
                                                letter-spacing: 0.08em;
                                                text-decoration: none;
                                                cursor: pointer;
                                                border: 2px solid transparent;
                                                font-family: inherit;
                                                transition: all 0.2s ease;
                                                display: inline-block;
                                                line-height: 1.2;
                                              }
                                              .kc-btn:focus-visible { outline: 3px solid #ffd100; outline-offset: 2px; }
                                              .kc-btn-primary { background: var(--kc-teal); color: #fff; border-color: var(--kc-teal); }
                                              .kc-btn-primary:hover { background: var(--kc-teal-dark); border-color: var(--kc-teal-dark); color: #fff; }
                                              .kc-btn-secondary { background: #fff; color: var(--kc-ink); border-color: var(--kc-line); }
                                              .kc-btn-secondary:hover { border-color: var(--kc-ink-soft); }
                                             
                                              /* ============================= RESPONSIVE ============================= */
                                              @media (max-width: 820px) {
                                                .kc-banner { padding: 1.25rem 1rem; }
                                                .kc-row { gap: 1rem; }
                                                .kc-unit { min-width: 70px; }
                                                .kc-num { font-size: 3rem; }
                                                .kc-lbl { font-size: 0.85rem; }
                                                .kc-sep { font-size: 2rem; transform: translateY(-12px); }
                                                .kc-eyebrow { font-size: 0.95rem; }
                                                .kc-modal-header, .kc-modal-body, .kc-modal-footer { padding: 1.4rem; }
                                                .kc-modal-cd .kc-num { font-size: 2.2rem; }
                                                .kc-modal-cd .kc-lbl { font-size: 0.75rem; }
                                                .kc-modal-header h2 { font-size: 1.4rem; }
                                                .kc-modal-footer { flex-direction: column-reverse; }
                                                .kc-modal-footer .kc-btn { width: 100%; text-align: center; }
                                              }
                                             
                                              @media (max-width: 520px) {
                                                .kc-num { font-size: 2.4rem; }
                                                .kc-unit { min-width: 58px; }
                                                .kc-sep { font-size: 1.6rem; transform: translateY(-10px); }
                                                .kc-eyebrow { font-size: 0.85rem; letter-spacing: 0.08em; }
                                                .kc-mini-info { font-size: 1rem; }
                                                .kc-info-btn { padding: 0.9rem 1.2rem; font-size: 1rem; }
                                              }
                                             
                                              @media (prefers-reduced-motion: reduce) {
                                                .kc-eyebrow::before, .kc-modal-backdrop, .kc-modal, .kc-info-btn {
                                                  animation: none !important; transition: none !important;
                                                }
                                              }