/* ============================================================
   repair_2026 form — CI palette, flat, no shadows.
   Scoped to .repair-2026 to avoid leaking into shop chrome.
   ============================================================ */
.repair-2026 {
    --r2-brand:        #006397;
    --r2-brand-dark:   #004F7A;
    --r2-brand-light:  #B7D7FB;
    --r2-brand-tint:   #EDF4FA;
    --r2-accent:       #E30613;
    --r2-accent-warm:  #1CA3BC;
    --r2-accent-warm-light: #E1F4F7;
    --r2-accent-warm-dark:  #0D6B7A;
    --r2-success:      #155724;
    --r2-success-light:#E3F5EC;
    --r2-cta:          #66B20F;
    --r2-cta-dark:     #549009;
    --r2-warning:      #B45309;
    --r2-warning-light:#FEF3C7;
    --r2-text:         #2B2B2B;
    --r2-text-muted:   #6B7280;
    --r2-text-soft:    #9CA3AF;
    --r2-border:       #DADADA;
    --r2-border-strong:#BFBFBF;
    --r2-surface:      #FFFFFF;
    --r2-surface-alt:  #FAFAFA;
    --r2-t-fast: 150ms cubic-bezier(.4,0,.2,1);
    --r2-t:      220ms cubic-bezier(.4,0,.2,1);
    --r2-t-slow: 380ms cubic-bezier(.16,1,.3,1);

    color: var(--r2-text);
}
/* Neutralize Bootstrap form-check absolute-positioning on inputs.
   Bootstrap sets .form-check-input { position: absolute; margin-left: -1.25rem; opacity: 0; }
   We need these as plain inline checkboxes inside our flex labels. */
.repair-2026 input[type="checkbox"],
.repair-2026 input[type="radio"] {
    position: static !important;
    margin: 0 !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    accent-color: var(--r2-brand);
    vertical-align: middle;
}

/* Page head */
.repair-2026 .page-head { margin: 0 0 28px; }
.repair-2026 .page-head h1 {
    font-size: 32px; letter-spacing: -.01em; margin-bottom: 6px;
}
.repair-2026 .page-head p {
    color: var(--r2-text-muted); margin: 0; max-width: 640px; font-size: 15px;
}

/* Stepper */
.repair-2026 .r2-stepper {
    background: var(--r2-surface);
    border: 1px solid var(--r2-border);
    padding: 18px 22px;
    margin-bottom: 18px;
}
.repair-2026 .r2-stepper-track {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; position: relative;
}
.repair-2026 .r2-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    position: relative; text-align: center;
    color: var(--r2-text-soft); font-size: 12px; font-weight: 500;
    transition: color var(--r2-t);
}
.repair-2026 .r2-step .r2-dot {
    width: 32px; height: 32px;
    background: var(--r2-surface); border: 2px solid var(--r2-border-strong);
    display: grid; place-items: center;
    font-weight: 700;
    color: var(--r2-text-soft); font-size: 13px;
    transition: all var(--r2-t); position: relative; z-index: 2;
}
.repair-2026 .r2-step:not(:last-child)::after {
    content: ""; position: absolute; top: 16px;
    left: calc(50% + 18px); right: calc(-50% + 18px);
    height: 2px; background: var(--r2-border-strong);
    z-index: 1; transition: background var(--r2-t);
}
.repair-2026 .r2-step.is-active { color: var(--r2-brand); }
.repair-2026 .r2-step.is-active .r2-dot {
    background: var(--r2-brand); border-color: var(--r2-brand); color: #fff; transform: scale(1.06);
}
.repair-2026 .r2-step.is-done { color: var(--r2-success); }
.repair-2026 .r2-step.is-done .r2-dot {
    background: var(--r2-success); border-color: var(--r2-success); color: #fff;
}
.repair-2026 .r2-step.is-done .r2-dot span { display: none; }
.repair-2026 .r2-step.is-done .r2-dot::before {
    content: ""; width: 12px; height: 7px;
    border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translate(1px,-1px);
}
.repair-2026 .r2-step.is-done:not(:last-child)::after { background: var(--r2-success); }
@media (max-width: 640px) {
    .repair-2026 .r2-step .r2-label { display: none; }
    .repair-2026 .r2-step.is-active .r2-label { display: block; font-weight: 600; }
}

/* Card */
.repair-2026 .r2-card {
    background: var(--r2-surface);
    border: 1px solid var(--r2-border);
}
.repair-2026 .r2-pane {
    padding: 32px;
    animation: r2-fade var(--r2-t-slow);
}
@keyframes r2-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}
.repair-2026 .r2-pane[hidden] { display: none; }
.repair-2026 .r2-pane h2 {
    font-size: 22px; letter-spacing: -.005em; margin: 0 0 4px;
}
.repair-2026 .r2-pane .r2-lede {
    color: var(--r2-text-muted); margin: 0 0 28px; font-size: 14px;
}
@media (max-width: 640px) { .repair-2026 .r2-pane { padding: 22px; } }

/* Field primitives */
.repair-2026 .r2-field { margin-bottom: 18px; }
.repair-2026 .r2-row { display: grid; gap: 16px; }
.repair-2026 .r2-row.two   { grid-template-columns: 1fr 1fr; }
.repair-2026 .r2-row.three { grid-template-columns: 1fr 2fr 1fr; }
@media (max-width: 640px) {
    .repair-2026 .r2-row.two, .repair-2026 .r2-row.three { grid-template-columns: 1fr; }
}
.repair-2026 .r2-lbl {
    display: block; font-weight: 600;
    font-size: 13px; margin-bottom: 6px; color: var(--r2-text);
}
.repair-2026 .r2-lbl .r2-req { color: var(--r2-accent); margin-left: 2px; }
.repair-2026 .r2-lbl .r2-hint {
    color: var(--r2-text-muted); font-weight: 400; margin-left: 6px; font-size: 12px;
}

.repair-2026 .r2-input, .repair-2026 .r2-select, .repair-2026 .r2-textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    border-radius: 0;
    transition: border-color var(--r2-t-fast);
    color: var(--r2-text);
    font-size: 15px;
}
.repair-2026 .r2-input:hover, .repair-2026 .r2-select:hover, .repair-2026 .r2-textarea:hover {
    border-color: var(--r2-border-strong);
}
.repair-2026 .r2-input:focus, .repair-2026 .r2-select:focus, .repair-2026 .r2-textarea:focus {
    border-color: var(--r2-brand); outline: none;
}
.repair-2026 .r2-input::placeholder, .repair-2026 .r2-textarea::placeholder { color: var(--r2-text-soft); }
.repair-2026 .r2-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.repair-2026 .r2-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236B7280' d='M6 8 0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px; cursor: pointer;
}

/* Manufacturer tiles */
.repair-2026 .r2-mfg-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
@media (max-width: 720px) { .repair-2026 .r2-mfg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .repair-2026 .r2-mfg-grid { grid-template-columns: repeat(2, 1fr); } }
.repair-2026 .r2-mfg-tile {
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    padding: 18px 10px 12px;
    cursor: pointer;
    transition: all var(--r2-t);
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; min-height: 96px;
}
.repair-2026 .r2-mfg-tile .r2-mfg-logo {
    height: 26px; width: auto; max-width: 88%;
    object-fit: contain;
    transition: filter var(--r2-t-fast);
}
.repair-2026 .r2-mfg-tile .r2-mfg-fallback {
    height: 26px; display: none; place-items: center;
    font-size: 17px; font-weight: 700;
    color: var(--r2-brand); letter-spacing: -.01em;
}
/* Fallback sichtbar wenn:
   - kein Logo konfiguriert (r2-no-logo via PHP)
   - oder das Logo nicht ladbar war (r2-logo-failed via JS onerror) */
.repair-2026 .r2-mfg-tile.r2-no-logo .r2-mfg-fallback,
.repair-2026 .r2-mfg-tile.r2-logo-failed .r2-mfg-fallback {
    display: grid;
}
.repair-2026 .r2-mfg-tile.r2-logo-failed .r2-mfg-logo { display: none; }
.repair-2026 .r2-mfg-tile[aria-pressed="true"] .r2-mfg-logo {
    filter: brightness(0) invert(1);
}
.repair-2026 .r2-mfg-tile .r2-mfg-name {
    font-size: 12px; font-weight: 600; color: var(--r2-text-muted);
    transition: color var(--r2-t-fast);
}
.repair-2026 .r2-mfg-tile:hover {
    border-color: var(--r2-brand); background: var(--r2-brand-tint);
    transform: translateY(-1px);
}
.repair-2026 .r2-mfg-tile:hover .r2-mfg-name { color: var(--r2-brand); }
.repair-2026 .r2-mfg-tile[aria-pressed="true"] {
    border-color: var(--r2-brand); background: var(--r2-brand);
}
.repair-2026 .r2-mfg-tile[aria-pressed="true"] .r2-mfg-name { color: #fff; }
.repair-2026 .r2-mfg-tile[aria-pressed="true"] .r2-mfg-fallback { color: #fff; }
.repair-2026 .r2-mfg-tile[aria-pressed="true"]::after {
    content: ""; position: absolute; top: 8px; right: 8px;
    width: 18px; height: 18px; border-radius: 50%; background: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='none' stroke='%23006397' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.5l2.5 2.5 5-6'/></svg>");
    background-position: center; background-repeat: no-repeat;
}

.repair-2026 .r2-divider {
    display: flex; align-items: center; gap: 12px;
    margin: 14px 0 12px;
    color: var(--r2-text-soft); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .05em;
}
.repair-2026 .r2-divider::before, .repair-2026 .r2-divider::after {
    content: ""; flex: 1; height: 1px; background: var(--r2-border);
}

/* Segmented (cost) */
.repair-2026 .r2-seg {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
@media (max-width: 640px) { .repair-2026 .r2-seg { grid-template-columns: 1fr 1fr; } }
.repair-2026 .r2-seg button {
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    border-radius: 0; padding: 16px 10px;
    text-align: center; transition: all var(--r2-t-fast);
    color: var(--r2-text); font-weight: 600;
    cursor: pointer;
}
.repair-2026 .r2-seg button:hover { border-color: var(--r2-brand); background: var(--r2-brand-tint); }
.repair-2026 .r2-seg button[aria-pressed="true"] {
    border-color: var(--r2-brand); background: var(--r2-brand-light); color: var(--r2-brand-dark);
}
.repair-2026 .r2-seg .r2-seg-amount {
    font-size: 18px; letter-spacing: -.01em; font-weight: 700;
}
.repair-2026 .r2-seg .r2-seg-label {
    font-size: 11px; color: var(--r2-text-muted); font-weight: 500; margin-top: 2px;
}
.repair-2026 .r2-seg button[aria-pressed="true"] .r2-seg-label { color: var(--r2-brand); }

/* Dropzone (uses repair.php's IDs) */
.repair-2026 #ipc-formupload-drop {
    border: 2px dashed var(--r2-border-strong);
    padding: 28px;
    text-align: center;
    background: var(--r2-surface-alt);
    transition: all var(--r2-t-fast);
    cursor: pointer;
}
.repair-2026 #ipc-formupload-drop.over {
    border-color: var(--r2-brand); background: var(--r2-brand-tint);
}
.repair-2026 #ipc-formupload-drop strong { display: block; margin-bottom: 4px; }
.repair-2026 #ipc-formupload-drop small { color: var(--r2-text-muted); }
.repair-2026 #ipc-formupload-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.repair-2026 .r2-file-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--r2-border); background: var(--r2-surface);
}
.repair-2026 .r2-file-item .r2-fname {
    flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-weight: 500; font-size: 13px;
}
.repair-2026 .r2-file-item .r2-fsize { color: var(--r2-text-muted); font-size: 12px; }
.repair-2026 .r2-file-item button {
    background: none; border: 0; padding: 6px;
    color: var(--r2-text-muted); cursor: pointer;
    font-size: 14px; font-weight: 700;
}
.repair-2026 .r2-file-item button:hover { color: var(--r2-accent); }

/* Checkboxes / radios as pills */
.repair-2026 .r2-check {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer; padding: 12px;
    border: 1.5px solid var(--r2-border);
    transition: all var(--r2-t-fast);
}
.repair-2026 .r2-check:hover { border-color: var(--r2-brand); background: var(--r2-brand-tint); }
.repair-2026 .r2-check input[type="checkbox"], .repair-2026 .r2-check input[type="radio"] {
    width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--r2-brand); flex-shrink: 0;
}
.repair-2026 .r2-check .r2-ctext { font-size: 14px; line-height: 1.45; }
.repair-2026 .r2-check .r2-ctext small {
    display: block; color: var(--r2-text-muted); font-size: 12px; margin-top: 2px;
}
.repair-2026 .r2-check.compact { border: 0; padding: 0; }
.repair-2026 .r2-check.compact:hover { background: transparent; }

/* Gender pills */
.repair-2026 .r2-gender-group { display: flex; gap: 8px; flex-wrap: wrap; }
.repair-2026 .r2-gender-pill {
    flex: 1; min-width: 90px;
    padding: 11px 14px;
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    text-align: center;
    font-weight: 600; font-size: 14px;
    cursor: pointer;
    transition: all var(--r2-t-fast);
}
.repair-2026 .r2-gender-pill:hover { border-color: var(--r2-brand); background: var(--r2-brand-tint); }
.repair-2026 .r2-gender-pill[aria-pressed="true"] {
    border-color: var(--r2-brand); background: var(--r2-brand-light); color: var(--r2-brand-dark);
}

/* Customer Type */
.repair-2026 .r2-ctype-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.repair-2026 .r2-ctype-pill {
    padding: 16px 18px;
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    text-align: left;
    transition: all var(--r2-t-fast);
    display: flex; align-items: center; gap: 12px;
    cursor: pointer;
}
.repair-2026 .r2-ctype-pill:hover { border-color: var(--r2-brand); background: var(--r2-brand-tint); }
.repair-2026 .r2-ctype-pill[aria-pressed="true"] {
    border-color: var(--r2-brand); background: var(--r2-brand-light);
}
.repair-2026 .r2-ctype-pill .r2-ctype-title { font-weight: 700; font-size: 15px; }
.repair-2026 .r2-ctype-pill .r2-ctype-sub { color: var(--r2-text-muted); font-size: 12px; margin-top: 1px; }

/* Add-on cards */
.repair-2026 .r2-addon-list { display: grid; gap: 10px; }
.repair-2026 .r2-addon {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    transition: all var(--r2-t-fast);
    cursor: pointer; position: relative;
}
.repair-2026 .r2-addon:hover { border-color: var(--r2-brand); background: var(--r2-brand-tint); }
.repair-2026 .r2-addon-body { flex: 1; min-width: 0; display: flex; align-items: flex-start; gap: 14px; }
.repair-2026 .r2-addon-icon {
    width: 40px; height: 40px;
    background: var(--r2-accent-warm-light);
    color: var(--r2-accent-warm);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.repair-2026 .r2-addon-icon svg { display: block; }
.repair-2026 .r2-addon-text { flex: 1; min-width: 0; }
.repair-2026 .r2-addon-title {
    font-weight: 700; font-size: 14.5px; color: var(--r2-text);
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.repair-2026 .r2-addon-price {
    display: inline-flex; align-items: baseline; gap: 1px;
    padding: 3px 9px;
    background: var(--r2-accent-warm-light);
    color: var(--r2-accent-warm-dark);
    font-size: 12.5px; font-weight: 700; letter-spacing: -.01em;
}
.repair-2026 .r2-addon-desc {
    color: var(--r2-text-muted); font-size: 13px; margin-top: 4px; line-height: 1.5;
}
.repair-2026 .r2-addon.is-checked {
    border-color: var(--r2-brand); background: var(--r2-brand-tint);
}

/* Banner */
.repair-2026 .r2-banner {
    display: flex; gap: 12px;
    padding: 14px 16px;
    border: 1px solid;
    margin-bottom: 22px;
    font-size: 13.5px; line-height: 1.55;
}
.repair-2026 .r2-banner.info    { background: var(--r2-brand-tint);   border-color: var(--r2-brand-light); color: var(--r2-brand-dark); }
.repair-2026 .r2-banner.warn    { background: var(--r2-warning-light); border-color: #FCD34D; color: var(--r2-warning); }
.repair-2026 .r2-banner.success { background: var(--r2-success-light); border-color: #A7F3D0; color: var(--r2-success); }

/* Form nav */
.repair-2026 .r2-formnav {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 18px 32px;
    background: var(--r2-surface-alt);
    border-top: 1px solid var(--r2-border);
}
@media (max-width: 640px) { .repair-2026 .r2-formnav { padding: 16px 22px; } }
.repair-2026 .r2-btn {
    padding: 11px 22px; border-radius: 0;
    border: 1.5px solid var(--r2-border-strong);
    background: var(--r2-surface);
    color: var(--r2-text);
    font-weight: 600; font-size: 14px;
    transition: all var(--r2-t-fast);
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
}
.repair-2026 .r2-btn:hover { border-color: var(--r2-text); }
.repair-2026 .r2-btn:disabled { opacity: .5; cursor: not-allowed; }
.repair-2026 .r2-btn-primary {
    background: var(--r2-cta); color: #fff; border-color: var(--r2-cta);
}
.repair-2026 .r2-btn-primary:hover {
    background: var(--r2-cta-dark); border-color: var(--r2-cta-dark);
    color: #fff;
}
/* "Zurück" — Bootstrap-Style btn-outline-primary (CI-Blau-Outline) */
.repair-2026 .r2-btn-ghost {
    border: 1.5px solid var(--r2-brand);
    background: transparent;
    color: var(--r2-brand);
}
.repair-2026 .r2-btn-ghost:hover {
    background: var(--r2-brand);
    color: #fff;
    border-color: var(--r2-brand);
}
.repair-2026 .r2-btn-ghost:disabled:hover {
    background: transparent;
    color: var(--r2-brand);
}

/* Review */
.repair-2026 .r2-review-section {
    border: 1px solid var(--r2-border); padding: 18px 20px;
    margin-bottom: 14px; background: var(--r2-surface);
}
.repair-2026 .r2-review-section header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.repair-2026 .r2-review-section h4 { margin: 0; font-size: 15px; }
.repair-2026 .r2-review-edit {
    color: var(--r2-brand); background: none; border: 1px solid var(--r2-brand);
    font-weight: 600; font-size: 12px; padding: 4px 10px;
    cursor: pointer; transition: all var(--r2-t-fast);
}
.repair-2026 .r2-review-edit:hover { background: var(--r2-brand); color: #fff; }
.repair-2026 .r2-review-grid {
    display: grid; gap: 6px 16px; font-size: 13.5px;
    grid-template-columns: minmax(120px, 180px) 1fr;
}
.repair-2026 .r2-review-grid .r2-k { color: var(--r2-text-muted); }
.repair-2026 .r2-review-grid .r2-v { color: var(--r2-text); font-weight: 500; }

/* ipcFilter wrapper — keep its native styling but make selects look like our inputs */
.repair-2026 .filter select,
.repair-2026 select#input_repairManufacturer,
.repair-2026 select#input_repairSeries,
.repair-2026 select#input_repairModell {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--r2-border);
    background: var(--r2-surface);
    border-radius: 0;
    font-size: 15px;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236B7280' d='M6 8 0 0h12z'/></svg>");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
    margin-bottom: 10px;
}

/* ===================== Model Search ===================== */
.repair-2026 .r2-search-wrap { margin-top: 8px; margin-bottom: 18px; }
.repair-2026 .r2-search { position: relative; }
.repair-2026 .r2-search-results {
    border: 1px solid var(--r2-border);
    background: var(--r2-surface);
    max-height: 260px;
    overflow-y: auto;
    margin-top: 4px;
}
.repair-2026 .r2-search-results button {
    display: block; width: 100%;
    text-align: left;
    padding: 10px 14px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--r2-border);
    font-size: 14px;
    color: var(--r2-text);
    cursor: pointer;
}
.repair-2026 .r2-search-results button:last-child { border-bottom: 0; }
.repair-2026 .r2-search-results button:hover,
.repair-2026 .r2-search-results button:focus {
    background: var(--r2-brand-tint);
    color: var(--r2-brand-dark);
    outline: none;
}
.repair-2026 .r2-search-empty {
    padding: 14px;
    color: var(--r2-text-muted);
    font-size: 13px;
    text-align: center;
}
.repair-2026 .r2-picked {
    padding: 14px 18px;
    border: 1.5px solid var(--r2-brand);
    background: var(--r2-brand-light);
    color: var(--r2-brand-dark);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.repair-2026 .r2-picked .r2-picked-name { flex: 1; }
.repair-2026 .r2-picked .r2-picked-clear {
    background: transparent;
    border: 0;
    color: var(--r2-brand-dark);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
    font-weight: 700;
    transition: color .15s ease;
}
.repair-2026 .r2-picked .r2-picked-clear:hover { color: var(--r2-accent); }
.repair-2026 .r2-search-loading {
    padding: 12px 14px;
    color: var(--r2-text-muted);
    font-size: 13px;
    text-align: center;
    font-style: italic;
}

/* ===================== Success Page ===================== */
.repair-2026 .r2-success-hero { margin-bottom: 32px; }
.repair-2026 .r2-success-breadcrumb {
    font-size: 12px; color: var(--r2-text-muted);
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 16px; font-weight: 600;
}
.repair-2026 .r2-success-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    line-height: 1.2; margin: 0 0 12px; font-weight: 700;
    color: var(--r2-text);
}
.repair-2026 .r2-success-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--r2-success); color: #fff;
    border-radius: 50%;
    margin-right: 10px; vertical-align: 3px; font-size: 16px;
}
.repair-2026 .r2-success-lead {
    font-size: 17px; color: var(--r2-text-muted);
    margin: 0;
}

.repair-2026 .r2-success-status {
    background: var(--r2-success-light);
    border: 1px solid #BFE0CC;
    border-left: 4px solid var(--r2-success);
    padding: 22px 26px;
    margin: 28px 0 40px;
}
.repair-2026 .r2-success-status p { margin: 0 0 12px; color: var(--r2-success); }
.repair-2026 .r2-success-status p:last-child { margin-bottom: 0; }
.repair-2026 .r2-success-status ul { margin: 12px 0; padding-left: 22px; color: var(--r2-success); }
.repair-2026 .r2-success-status li { margin-bottom: 6px; }
.repair-2026 .r2-success-status strong { color: var(--r2-success); }

.repair-2026 .r2-success-contact {
    background: var(--r2-surface);
    border: 1px solid var(--r2-border);
    border-top: 3px solid var(--r2-brand);
    padding: 28px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px; align-items: center;
    margin-bottom: 56px;
}
.repair-2026 .r2-success-photo {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover;
    background: var(--r2-brand-tint);
    display: block;
    flex-shrink: 0;
}
/* Karte um den Success-Inhalt — selbe Surface/Border wie das Formular (.r2-card) */
.repair-2026 .r2-success-card {
    padding: 32px;
    margin-bottom: 32px;
}
@media (max-width: 640px) {
    .repair-2026 .r2-success-card { padding: 22px; }
}
/* Erste Sektion in der Karte braucht keinen oberen Margin mehr */
.repair-2026 .r2-success-card > .r2-success-status:first-child { margin-top: 0; }
.repair-2026 .r2-success-contact .r2-role {
    font-size: 11px; letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--r2-brand); font-weight: 600;
    margin-bottom: 4px;
}
.repair-2026 .r2-success-contact .r2-name {
    font-size: 22px; font-weight: 600;
    margin-bottom: 12px; color: var(--r2-text);
}
.repair-2026 .r2-success-contact .r2-details {
    display: flex; flex-wrap: wrap;
    gap: 6px 20px; font-size: 15px;
}
.repair-2026 .r2-success-contact .r2-details a {
    color: var(--r2-brand);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s ease;
    font-weight: 500;
}
.repair-2026 .r2-success-contact .r2-details a:hover { border-bottom-color: var(--r2-brand); }
.repair-2026 .r2-success-contact .r2-hours {
    color: var(--r2-text-muted);
    font-size: 14px; margin-top: 8px; width: 100%;
}

.repair-2026 .r2-success-tipshdr { margin-bottom: 28px; }
.repair-2026 .r2-success-eyebrow {
    font-size: 12px; letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--r2-accent-warm); font-weight: 600;
    margin-bottom: 8px;
}
.repair-2026 .r2-success-tipshdr h2 {
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin: 0 0 12px; font-weight: 700;
}
.repair-2026 .r2-success-intro {
    color: var(--r2-text-muted); margin: 0; font-size: 16px;
}

.repair-2026 .r2-success-tips {
    counter-reset: tip; list-style: none;
    padding: 0; margin: 0;
}
.repair-2026 .r2-success-tip {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--r2-border);
}
.repair-2026 .r2-success-tip:last-of-type { border-bottom: none; }
.repair-2026 .r2-success-tip::before {
    counter-increment: tip;
    content: counter(tip, decimal-leading-zero);
    font-size: 26px; font-weight: 700;
    color: var(--r2-brand);
    line-height: 1; padding-top: 2px;
}
.repair-2026 .r2-success-tip h3 {
    font-size: 17px; font-weight: 600;
    margin: 0 0 6px; color: var(--r2-text);
}
.repair-2026 .r2-success-tip p { margin: 0; color: var(--r2-text-muted); }

.repair-2026 .r2-success-praxis {
    background: linear-gradient(135deg, #E7F5F8 0%, #D4EEF3 100%);
    border: 1px solid #A8DDE6;
    border-left: 4px solid var(--r2-accent-warm);
    padding: 20px 24px;
    margin-top: 32px;
    display: flex; gap: 16px;
    align-items: flex-start;
}
.repair-2026 .r2-success-praxis-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    background: var(--r2-accent-warm); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.repair-2026 .r2-success-praxis-icon svg { display: block; }
.repair-2026 .r2-success-praxis strong {
    display: block; font-size: 12px;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--r2-accent-warm-dark);
    margin-bottom: 4px;
}
.repair-2026 .r2-success-praxis p { margin: 0; color: #1A4A55; }

.repair-2026 .r2-success-cta {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--r2-brand); color: #fff;
    display: flex; justify-content: space-between;
    align-items: center; gap: 24px;
    flex-wrap: wrap; text-decoration: none;
}
.repair-2026 .r2-success-cta:hover { color: #fff; }
.repair-2026 .r2-success-cta-text h3 {
    font-size: 20px; font-weight: 600;
    margin: 0 0 4px; color: #fff;
}
.repair-2026 .r2-success-cta-text p {
    margin: 0; opacity: .88; font-size: 15px;
}
.repair-2026 .r2-success-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--r2-brand);
    padding: 12px 22px;
    font-weight: 600; font-size: 15px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.repair-2026 .r2-success-cta:hover .r2-success-cta-btn {
    transform: translateY(-1px);
}
.repair-2026 .r2-success-cta-btn .r2-arrow { transition: transform .15s ease; }
.repair-2026 .r2-success-cta:hover .r2-success-cta-btn .r2-arrow {
    transform: translateX(3px);
}

.repair-2026 .r2-success-repairnote {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--r2-border);
    text-align: center;
    font-size: 14px;
    color: var(--r2-text-muted);
}
.repair-2026 .r2-success-repairnote strong {
    color: var(--r2-brand); font-weight: 600;
}

.repair-2026 .r2-success-stack { margin: 0 0 32px; }

@media (max-width: 600px) {
    .repair-2026 .r2-success-contact {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .repair-2026 .r2-success-contact .r2-details { justify-content: center; }
    .repair-2026 .r2-success-tip { grid-template-columns: 40px 1fr; gap: 12px; }
    .repair-2026 .r2-success-tip::before { font-size: 22px; }
    .repair-2026 .r2-success-cta { flex-direction: column; text-align: center; }
}

/* Error state */
.repair-2026 .r2-field-error .r2-input,
.repair-2026 .r2-field-error .r2-select,
.repair-2026 .r2-field-error .r2-textarea { border-color: var(--r2-accent); background: #FEF2F2; }
.repair-2026 .r2-field-error .r2-seg button,
.repair-2026 .r2-field-error .r2-ctype-pill,
.repair-2026 .r2-field-error .r2-mfg-tile,
.repair-2026 .r2-field-error .filter select {
    border-color: var(--r2-accent);
}
.repair-2026 .r2-field-error.r2-field { background: #FEF2F2; padding: 8px; }
.repair-2026 .r2-err-msg {
    color: var(--r2-accent); font-size: 12px; margin-top: 6px;
    display: none; font-weight: 500;
}
.repair-2026 .r2-field-error .r2-err-msg { display: block; }
