/* ==========================================================================
   SALES LAYER — One2United Dossier V.04.26
   Express Modal · Configurator · Trust Bar · Testimonial · Scroll Progress
   ========================================================================== */

/* --------------------------------------------------------------------------
   MASTER-CTA · Offset-Outline (Fadenkreuz-Stil)
   Dünne, dezente orange 1-px-Linie im 4-px-Abstand um alle Master-CTAs.
   Greift automatisch bei allen Buttons/Links mit [data-open-starter].
   -------------------------------------------------------------------------- */
[data-open-starter] {
    isolation: isolate;
}
/* Relative nur bei "normalen" CTAs setzen — NICHT beim Sticky (fixed) oder Nav */
button[data-open-starter]:not(.sticky-cta):not(.nav-cta),
a[data-open-starter]:not(.sticky-cta):not(.nav-cta) {
    position: relative;
}
[data-open-starter]::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--accent);
    pointer-events: none;
    z-index: -1;
}

/* Sticky-CTA: Ring entfernen — der Button selbst ist bereits prominent,
   ein zusätzlicher Ring wirkt auf schwarzem Grund wie Alarm. */
.sticky-cta[data-open-starter]::after {
    display: none;
}

/* Nav-CTA im Header: Ring entfernen — Header bleibt reduziert/dezent */
.nav-cta[data-open-starter]::after,
.mobile-menu [data-open-starter]::after {
    display: none;
}

/* Auf mobilen Geräten Ring etwas näher heranrücken */
@media (max-width: 640px) {
    [data-open-starter]::after {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
}

/* Print: Outline ausblenden */
@media print {
    [data-open-starter]::after { display: none; }
}

/* --------------------------------------------------------------------------
   SCROLL PROGRESS
   -------------------------------------------------------------------------- */
/* Track — dünne graue Linie ganz oben, immer sichtbar */
.scroll-progress-track {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 9998;
    pointer-events: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Fill — orange Balken, der mitwächst */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent, #ff5a1f);
    z-index: 9999;
    transition: width 80ms linear;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(255, 90, 31, 0.5);
}

/* Subtiler Glüh-Pin am Ende der Bar */
.scroll-progress::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent, #ff5a1f);
    box-shadow:
        0 0 0 2px rgba(255, 90, 31, 0.25),
        0 0 12px rgba(255, 90, 31, 0.7);
}

/* Auf dunklen Sektionen: Track dezenter, Fill glüht stärker */
@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        transition: none;
    }
}

/* --------------------------------------------------------------------------
   STICKY CTA — als Button (kontextuell)
   -------------------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    right: clamp(20px, 3vw, 40px);
    bottom: clamp(20px, 3vw, 32px);
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 26px;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) translate(var(--mx, 0px), var(--my, 0px));
    transition:
        opacity 400ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(255, 90, 31, 0);
    will-change: transform;
    overflow: hidden;
    isolation: isolate;
}
.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0) translate(var(--mx, 0px), var(--my, 0px));
}

/* Magnetic Hover — orange Glow + Akzent-Rand */
.sticky-cta:hover {
    background: var(--ink);
    border-color: var(--accent);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        0 0 0 4px rgba(255, 90, 31, 0.12),
        0 0 24px rgba(255, 90, 31, 0.35);
}
.sticky-cta:active {
    transform: translateY(0) translate(var(--mx, 0px), var(--my, 0px)) scale(0.97);
    transition-duration: 120ms;
}

/* Shine-Sweep beim Hover (einmalig) */
.sticky-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 90, 31, 0.18) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-120%);
    transition: transform 700ms ease;
    pointer-events: none;
    z-index: -1;
}
.sticky-cta:hover::before {
    transform: translateX(120%);
}

.sticky-cta-label {
    transition: color 220ms ease;
    position: relative;
    z-index: 1;
}
.sticky-cta-arrow {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}
.sticky-cta:hover .sticky-cta-arrow {
    transform: translateX(4px);
}

/* Pulse-Animation wenn Button neu erscheint */
.sticky-cta.is-pulse {
    animation: stickyPulse 1.6s ease-out;
}
@keyframes stickyPulse {
    0%   { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,90,31,0.5); }
    70%  { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 16px rgba(255,90,31,0); }
    100% { box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,90,31,0); }
}

@media (max-width: 640px) {
    .sticky-cta { padding: 14px 18px; font-size: 10px; bottom: 16px; right: 16px; }
    /* Magnet auf Mobile deaktivieren (Touch hat keinen Hover) */
    .sticky-cta { --mx: 0px; --my: 0px; }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta,
    .sticky-cta.is-pulse,
    .sticky-cta::before,
    .sticky-cta-arrow {
        transition: opacity 200ms ease;
        animation: none !important;
    }
    .sticky-cta { --mx: 0px !important; --my: 0px !important; }
}

/* --------------------------------------------------------------------------
   PARTNER WALL
   -------------------------------------------------------------------------- */
.section-partners {
    /* Compact: 64-120 \u2192 48-80 */
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(48px, 6vw, 80px);
}
.partners-head {
    /* Compact: 40-72 \u2192 32-48 */
    margin-bottom: clamp(32px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.partners-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}
.partners-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(32px, 4.2vw, 60px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
    max-width: 22ch;
}

.partners-wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}
.partner-cell {
    background: var(--paper);
    padding: clamp(32px, 4vw, 56px) clamp(20px, 2.5vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(140px, 14vw, 180px);
    min-width: 0;
    position: relative;
}
.partner-cell::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    opacity: 0.6;
}
.partner-cell::after {
    content: "";
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    opacity: 0.6;
}
.partner-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    white-space: normal;
}

.partners-note {
    margin-top: clamp(32px, 4vw, 56px);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-align: center;
}

@media (max-width: 900px) {
    .partners-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .partners-wall { grid-template-columns: 1fr; }
    .partner-cell { min-height: 120px; }
}

/* --------------------------------------------------------------------------
   TESTIMONIAL
   -------------------------------------------------------------------------- */
.testimonial {
    margin: clamp(80px, 10vw, 140px) 0 0;
    max-width: 1000px;
    padding: 0;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-transform: none;
    position: relative;
    padding-left: clamp(24px, 3vw, 40px);
    border-left: 2px solid var(--ink);
}
.testimonial-mark {
    color: var(--accent);
    font-weight: 900;
}
.testimonial-source {
    margin-top: 28px;
    padding-left: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.testimonial-role {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
}
.testimonial-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
}

/* --------------------------------------------------------------------------
   MODAL (SHARED) — Express + Configurator
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open {
    display: flex;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 240ms ease;
}
.modal-dialog {
    position: relative;
    background: var(--paper);
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: clamp(32px, 4vw, 56px);
    border: 1px solid var(--ink);
    animation: modalSlideUp 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-dialog-wide { max-width: 720px; }
.modal-dialog-starter { max-width: 620px; }

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font-mono);
}
.modal-head {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}
.modal-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}
.modal-lead {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--grey-700);
    max-width: 40ch;
}

/* --------------------------------------------------------------------------
   EXPRESS FORM
   -------------------------------------------------------------------------- */
.express-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.express-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.express-field label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey-500);
    font-weight: 500;
}
.express-field input,
.express-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    resize: none;
    outline: none;
    transition: border-color 160ms ease;
}
.express-field input:focus,
.express-field textarea:focus {
    border-bottom-color: var(--ink);
}
.express-field textarea {
    min-height: 80px;
}
.express-consent {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--grey-700);
}
.express-consent label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}
.express-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--ink);
    width: 14px;
    height: 14px;
}
.express-consent a { color: var(--ink); text-decoration: underline; }

.express-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
}
.express-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.express-alt {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-align: center;
    margin-top: 4px;
}
.express-alt a { color: var(--ink); text-decoration: underline; }

.express-error {
    padding: 14px 16px;
    border: 1px solid #c0392b;
    background: rgba(192, 57, 43, 0.06);
    color: #c0392b;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.express-success {
    text-align: center;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.express-success-mark {
    width: 72px;
    height: 72px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
}
.express-success h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(22px, 2.5vw, 28px);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0;
}
.express-success p {
    font-size: 14px;
    color: var(--grey-700);
    max-width: 32ch;
}
.express-success-close {
    margin-top: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   STARTER MODAL — Format-Wahl (Einstiegspunkt)
   -------------------------------------------------------------------------- */
.starter-options {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    margin-bottom: 24px;
}
.starter-option {
    background: var(--paper);
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    color: var(--ink);
    transition: background 160ms ease, color 160ms ease, padding 160ms ease;
    width: 100%;
}
.starter-option:hover,
.starter-option:focus-visible {
    background: var(--ink);
    color: var(--paper);
    outline: none;
    padding-left: 30px;
}
.starter-option:hover .starter-num,
.starter-option:focus-visible .starter-num {
    color: var(--accent);
}
.starter-option:hover .starter-desc,
.starter-option:focus-visible .starter-desc {
    color: var(--grey-300);
}
.starter-option:hover .starter-arrow,
.starter-option:focus-visible .starter-arrow {
    color: var(--accent);
    transform: translateX(6px);
}
.starter-num {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--accent);
    min-width: 32px;
    text-align: left;
    transition: color 160ms ease;
}
.starter-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.starter-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(16px, 1.6vw, 20px);
    text-transform: uppercase;
    letter-spacing: -0.005em;
    line-height: 1.1;
}
.starter-desc {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-500);
    transition: color 160ms ease;
}
.starter-arrow {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--ink);
    transition: transform 160ms ease, color 160ms ease;
}
.starter-option-custom {
    background: var(--paper);
}
.starter-option-custom .starter-num {
    color: var(--grey-500);
    font-size: 18px;
    font-weight: 400;
}
.starter-option-custom:hover .starter-num,
.starter-option-custom:focus-visible .starter-num {
    color: var(--accent);
}

.starter-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.starter-alt-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.starter-alt-link {
    background: transparent;
    border: none;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 520px) {
    .starter-option { padding: 18px 18px; gap: 14px; }
    .starter-option:hover, .starter-option:focus-visible { padding-left: 22px; }
    .starter-desc { display: none; }
}

/* --------------------------------------------------------------------------
   FORMAT CARD — als Button (ganze Karte klickbar)
   -------------------------------------------------------------------------- */
button.format-card {
    border: none;
    font-family: inherit;
    text-align: left;
    color: inherit;
    cursor: pointer;
    width: 100%;
    transition: background 200ms ease, color 200ms ease;
}
button.format-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}
button.format-card .format-cta {
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   CONFIGURATOR
   -------------------------------------------------------------------------- */
.config-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.config-step-indicator {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--grey-500);
    transition: all 200ms ease;
}
.config-step-indicator.is-active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.config-step-indicator.is-done {
    background: var(--paper);
    color: var(--accent);
    border-color: var(--accent);
}
.config-progress-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.config-step {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: configFade 300ms ease;
}
.config-step.is-active { display: flex; }

@keyframes configFade {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
}

.config-question {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(20px, 2vw, 26px);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.config-options {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.config-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.config-option {
    background: var(--paper);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 140ms ease, color 140ms ease;
}
.config-option.is-selected {
    background: var(--ink);
    color: var(--paper);
}
.config-option-num {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--accent);
    min-width: 36px;
}
.config-option-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    flex: 1;
}
.config-option-desc {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-500);
}
.config-option.is-selected .config-option-desc {
    color: var(--grey-300);
}

.config-summary {
    margin-top: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.config-summary-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.config-summary-line span { color: var(--grey-500); }
.config-summary-line strong { color: var(--ink); font-weight: 600; }

.config-finalize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 18px 24px;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
}
.config-finalize:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .config-options-grid { grid-template-columns: 1fr; }
    .config-option { padding: 16px 18px; gap: 14px; }
    .config-option-desc { display: none; }
}

/* Starter-Modal: längere Format-Beschreibungen auf kleinen Phones sauber umbrechen */
@media (max-width: 480px) {
    .starter-option { padding: 18px 18px; gap: 14px; }
    .starter-option:hover,
    .starter-option:focus-visible { padding-left: 22px; }
    .starter-desc {
        font-size: 10px;
        letter-spacing: 0.08em;
        line-height: 1.5;
    }
}

/* --------------------------------------------------------------------------
   COUNT-UP & REVEAL
   -------------------------------------------------------------------------- */
[data-countup] {
    display: inline-block;
    transition: opacity 200ms ease;
}

/* prevent body scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* robust hide utility — überschreibt flex/block/grid displays */
.is-hidden {
    display: none !important;
}
