/* ============================================================
   SCHNELLCHECK.CSS - v4
   ============================================================ */

/* ---- FLOATING TAB ----------------------------------------- */
.schnellcheck-tab {
    position: fixed;
    left: 0;
    bottom: 60px;
    z-index: 9998;
}
.schnellcheck-tab-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f59e0b;
    color: #0F172A !important;
    text-decoration: none !important;
    padding: 14px 18px 14px 16px;
    border-radius: 0 12px 12px 0;
    border: 2px solid rgba(255,255,255,0.25);
    border-left: none;
    box-shadow: 4px 4px 24px rgba(245,158,11,0.45);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: tabPulse 3s ease-in-out infinite;
}
.schnellcheck-tab-link:hover {
    background: #e08f0a;
    transform: translateX(5px);
    box-shadow: 6px 4px 30px rgba(245,158,11,0.6);
    color: #0F172A !important;
}
.schnellcheck-tab-icon {
    font-size: 22px;
    color: #0F172A;
    flex-shrink: 0;
    line-height: 1;
}
.schnellcheck-tab-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.schnellcheck-tab-cta {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.schnellcheck-tab-sub {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(15,23,42,0.7);
    white-space: nowrap;
}
.schnellcheck-tab-price {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    white-space: nowrap;
    flex-shrink: 0;
    border-left: 2px solid rgba(15,23,42,0.2);
    padding-left: 12px;
    margin-left: 2px;
}
@keyframes tabPulse {
    0%,100% { box-shadow: -4px 4px 24px rgba(245,158,11,0.4); }
    50%      { box-shadow: -4px 4px 36px rgba(245,158,11,0.7); }
}

/* ---- HERO -------------------------------------------------- */
.sc-hero { background: #0F172A; padding: 100px 0 80px; position: relative; overflow: hidden; }
.sc-hero-glow-1 {
    position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(106,178,207,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.sc-hero-glow-2 {
    position: absolute; bottom: -50px; left: -50px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(106,178,207,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.sc-hero-label  { color: #6ab2cf; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; margin: 0 0 20px 0; font-weight: 600; }
.sc-hero-title  { color: #fff; font-size: clamp(32px,5vw,56px); font-weight: 700; line-height: 1.15; margin: 0 0 25px 0; }
.sc-hero-title span { color: #6ab2cf; }
.sc-hero-text   { color: #94a3b8; font-size: 18px; line-height: 1.8; margin: 0 0 40px 0; max-width: 500px; }
.sc-hero-text strong { color: #fff; }
.sc-hero-actions { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; }
.sc-hero-badge  { color: #bccbe0; font-size: 14px; display: flex; align-items: center; gap: 6px; }

.sc-check-card  {
    background: rgba(106,178,207,0.06); border: 1px solid rgba(106,178,207,0.2);
    border-radius: 20px; padding: 30px; width: 100%; max-width: 380px;
}
.sc-check-item  { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.sc-check-item:last-of-type { margin-bottom: 20px; }
.sc-check-icon  {
    width: 44px; height: 44px; border-radius: 10px; background: #6ab2cf; color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
}
.sc-check-label { color: #e2e8f0; font-size: 14px; font-weight: 600; display: block; }
.sc-check-price { color: #6ab2cf; font-size: 13px; font-weight: 700; display: block; }
.sc-check-bundle {
    background: rgba(245,158,11,0.12);
    border: 2px solid #f59e0b;
    border-radius: 14px;
    padding: 24px 22px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}
.sc-check-bundle i {
    font-size: 32px;
    color: #f59e0b;
    flex-shrink: 0;
}
.sc-check-bundle-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.sc-check-bundle-label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.sc-check-bundle-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.sc-bundle-new-inline {
    color: #f59e0b;
	text-shadow: 2px 2px 4px #000;
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}
.sc-bundle-old-inline {
    color: #ef4444;
    font-size: 38px;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.9;
}

/* ---- LEISTUNGEN ------------------------------------------- */
.sc-section      { padding: 80px 0; background: #f8fafc; }
.sc-section-label { color: #6ab2cf; font-size: 13px; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; }
.sc-section-title { color: #0F172A; font-size: clamp(26px,4vw,40px); font-weight: 700; margin: 10px 0 0 0; }

.sc-feature-card {
    background: #fff; border-radius: 16px; padding: 35px; height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #f1f5f9;
    transition: transform 0.3s, box-shadow 0.3s;
}
.sc-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.sc-feature-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sc-feature-icon {
    width: 52px; height: 52px; border-radius: 12px; background: #6ab2cf; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.sc-feature-price { color: #0F172A; font-size: 22px; font-weight: 800; }
.sc-feature-title { color: #0F172A; font-size: 18px; font-weight: 700; margin: 0 0 8px 0; }
.sc-feature-short { color: #bccbe0; font-size: 14px; margin: 0 0 18px 0; }
.sc-feature-list  { list-style: none; padding: 0; margin: 0 0 18px 0; }
.sc-feature-list li {
    color: #475569; font-size: 14px; padding: 7px 0;
    border-bottom: 1px solid #f1f5f9; display: flex; gap: 8px;
}
.sc-feature-list li::before { content: "✓"; color: #6ab2cf; font-weight: 700; flex-shrink: 0; }
.sc-feature-liefert {
    color: #10b981; font-size: 13px; font-weight: 600;
    display: flex; align-items: flex-start; gap: 8px; margin: 0;
}

/* Bundle Banner */
.sc-bundle-banner {
    background: #0F172A; border: 2px solid #f59e0b; border-radius: 16px;
    padding: 28px 35px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap;
}
.sc-bundle-banner .atf-themes-btn {
    background: #f59e0b !important; color: #0F172A !important; border-color: #f59e0b !important;
}
.sc-bundle-banner .atf-themes-btn:hover { background: #e08f0a !important; border-color: #e08f0a !important; }
.sc-bundle-banner-icon { font-size: 36px; color: #6ab2cf; flex-shrink: 0; }
.sc-bundle-banner-text { flex: 1; }
.sc-bundle-banner-text strong { display: block; color: #fff; font-size: 18px; font-weight: 700; }
.sc-bundle-banner-text span   { color: #bccbe0; font-size: 14px; }
.sc-bundle-banner-price { display: flex; flex-direction: column; align-items: flex-end; }
.sc-bundle-old { color: #bccbe0; font-size: 16px; text-decoration: line-through; }
.sc-bundle-new { color: #6ab2cf; font-size: 36px; font-weight: 800; }

/* ---- BESTELLFORMULAR -------------------------------------- */
.sc-order-section { padding: 80px 0; background: #0F172A; }
.sc-order-label    { color: #6ab2cf; font-size: 20px; text-transform: uppercase; letter-spacing: 3px; font-weight: 800; }
.sc-order-title    { color: #fff; font-size: clamp(26px,4vw,40px); font-weight: 700; margin: 10px 0 15px 0; }
.sc-order-subtitle { color: #bccbe0; font-size: 16px; }
.sc-order-form     { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; }

.sc-step-label {
    color: #fff; font-size: 16px; font-weight: 700;
    margin: 0 0 20px 0; display: flex; align-items: center; gap: 12px;
}
.sc-step-num {
    width: 32px; height: 32px; border-radius: 50%; background: #6ab2cf; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; flex-shrink: 0;
}

/* Service Cards */
/* ── Service Grid & Cards ───────────────────────────────── */
.sc-service-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.sc-service-card {
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 14px; overflow: hidden;
    background: rgba(255,255,255,0.05);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    cursor: pointer;
}
.sc-service-card:hover {
    border-color: rgba(106,178,207,0.55);
    background: rgba(106,178,207,0.06);
    box-shadow: 0 0 0 4px rgba(106,178,207,0.08);
}
.sc-service-card--active {
    border-color: #6ab2cf;
    background: rgba(106,178,207,0.1);
    box-shadow: 0 0 0 4px rgba(106,178,207,0.12);
}

/* Haupt-Bereich der Card */
.sc-service-card-main {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
}

/* Checkbox */
.sc-service-check {
    width: 26px; height: 26px; border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: transparent; font-size: 13px; flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.sc-service-card--active .sc-service-check {
    background: #6ab2cf; border-color: #6ab2cf; color: #fff;
}

/* Icon */
.sc-service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,0.1); color: #6ab2cf;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}
.sc-service-card--active .sc-service-icon { background: #6ab2cf; color: #fff; }

/* Info: Titel + Kurzbeschreibung */
.sc-service-info { flex: 1; min-width: 0; }
.sc-service-name { color: #ffffff; font-size: 16px; font-weight: 700; display: block; line-height: 1.3; }
.sc-service-desc {
    color: #94a3b8; font-size: 13px; display: block; margin-top: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Preis-Bar — Desktop: absolut rechts oben in der Card */
.sc-service-card { position: relative; }
.sc-service-card-main { padding-right: 90px; } /* Platz für Preis */
.sc-service-price-bar {
    position: absolute; top: 0; right: 0;
    height: 72px; /* Höhe von card-main */
    display: flex; align-items: center;
    padding: 0 20px;
}
.sc-service-price {
    color: #6ab2cf; font-size: 22px; font-weight: 800;
    white-space: nowrap;
}

/* Toggle-Button: volle Breite am unteren Rand */
.sc-service-toggle {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; padding: 9px 20px;
    border: none; border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #94a3b8; font-size: 12px; font-weight: 600;
    letter-spacing: 0.4px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, color 0.2s;
    border-radius: 0;
}
.sc-service-toggle::before { content: 'Details anzeigen'; }
.sc-service-toggle:hover { background: rgba(106,178,207,0.1); color: #6ab2cf; }
.sc-service-toggle i { font-size: 10px; transition: transform 0.25s; display: inline-block; }
/* Offener Zustand via :has() */
.sc-service-card:has(.sc-service-detail--open) .sc-service-toggle { color: #6ab2cf; background: rgba(106,178,207,0.08); }
.sc-service-card:has(.sc-service-detail--open) .sc-service-toggle::before { content: 'Details ausblenden'; }
.sc-service-card:has(.sc-service-detail--open) .sc-service-toggle i { transform: rotate(45deg); }

/* Detail-Text */
.sc-service-detail {
    display: none;
    padding: 14px 20px 16px 78px;
    color: #cbd5e1; font-size: 14px; line-height: 1.75;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
}
.sc-service-detail--open { display: block; }

/* Preis-Anzeige */
.sc-price-display {
    background: linear-gradient(135deg, #0F172A 0%, #1e2d45 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 10px;
    box-shadow: 0 4px 30px rgba(245,158,11,0.2);
    text-align: center;
}
.sc-price-display-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sc-price-display-label {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}
.sc-bundle-saving {
    display: inline-block;
    background: #f59e0b;
    color: #0F172A;
    font-size: 13px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    margin: 6px 0 2px 0;
    letter-spacing: 0.5px;
}
.sc-price-display-amount {
    color: #f59e0b;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}
.sc-payment-empty {
    color: #475569; font-size: 14px; padding: 18px;
    text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px;
    border: 1px dashed rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 10px;
}

/* Formular */
.sc-form-label {
    display: block; color: #94a3b8; font-size: 12px; font-weight: 600;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.sc-form-input {
    width: 100%; padding: 14px 18px;
    background: #5f6f8a !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px; color: #ffffff; font-size: 15px;
    outline: none; transition: border-color 0.3s;
    font-family: "Poppins", sans-serif;
}
.sc-form-input::placeholder { color: #c5cdd9 !important; }
.sc-form-input:focus { border-color: #6ab2cf; background: rgba(255,255,255,0.09); }
.sc-form-textarea { resize: vertical; line-height: 1.6; }
.sc-form-legal   { color: #475569; font-size: 13px; margin: 0 0 15px 0; }
.sc-form-legal a { color: #6ab2cf; }
.sc-form-input { color: #ffffff !important; }



/* Zahlungs-Buttons */
.sc-payment-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.sc-pay-btn {
    flex: 1; min-width: 200px; padding: 18px 20px; border: none; border-radius: 12px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.2s, opacity 0.3s, background 0.2s;
    font-family: "Poppins", sans-serif;
}
.sc-pay-btn:hover   { transform: translateY(-2px); }
.sc-pay-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.sc-pay-btn--stripe { background: #6ab2cf; color: #0F172A; border: 2px solid #6ab2cf; }
.sc-pay-btn--paypal { background: #ffc439; color: #003087; border: 2px solid #ffc439; }
.sc-pay-btn--stripe:hover { background: #4a9ab5; border-color: #4a9ab5; color: #fff; }
.sc-pay-btn--paypal:hover { background: #f0b429; border-color: #f0b429; }

/* Error */
.sc-alert-error {
    background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
    border-radius: 12px; padding: 16px 20px; margin-bottom: 25px;
    color: #ef4444; font-size: 15px;
}

/* Success Page */
.sc-success-section {
    min-height: 70vh; background: #edf7fa;
    display: flex; align-items: center; padding: 80px 0;
}
.sc-success-icon  { font-size: 72px; color: #10b981; margin-bottom: 25px; }
.sc-success-title { color: #606a78; font-size: 36px; font-weight: 700; margin: 0 0 20px 0; }
.sc-success-text  { color: #818b99; font-size: 18px; line-height: 1.8; margin: 0 0 35px 0; }

/* ---- BUNDLE KARTE ----------------------------------------- */
.sc-service-card--bundle {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}
.sc-service-card--bundle:hover { border-color: #f59e0b; }
.sc-service-card--bundle.sc-service-card--active {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.12);
}
.sc-service-card--bundle .sc-service-icon { background: rgba(245,158,11,0.15); color: #f59e0b; }
.sc-service-card--bundle.sc-service-card--active .sc-service-icon { background: #f59e0b; color: #fff; }
.sc-service-card--bundle .sc-service-check { border-color: rgba(245,158,11,0.4); }
.sc-service-card--bundle.sc-service-card--active .sc-service-check { background: #f59e0b; border-color: #f59e0b; color: #fff; }
.sc-bundle-tag {
    display: inline-block; background: #f59e0b; color: #0F172A;
    font-size: 10px; font-weight: 800; letter-spacing: 1px;
    padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle;
    text-transform: uppercase;
}
.sc-service-bundle-price { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.sc-bundle-crossed { color: #475569; font-size: 13px; text-decoration: line-through; }
.sc-service-price--bundle { color: #f59e0b; }

.sc-service-divider {
    text-align: center; color: #334155; font-size: 13px;
    padding: 8px 0; letter-spacing: 1px;
}

/* ---- TEXTAREA fix groß, kein scroll ------------------------ */
.sc-form-textarea {
    resize: none;
    min-height: 220px;
    overflow: hidden;
}

/* Hero Button Override */
.sc-hero .atf-themes-btn {
    background: #6ab2cf;
    color: #0F172A;
    border-color: #6ab2cf;
}
.sc-hero .atf-themes-btn:hover {
    background: #ffffff;
    color: #0F172A;
    border-color: #ffffff;
}

/* Hero CTA Button - orange */
.sc-hero-cta-btn {
    background: #f59e0b !important;
    color: #0F172A !important;
    border-color: #f59e0b !important;
}
.sc-hero-cta-btn:hover {
    background: #e08f0a !important;
    border-color: #e08f0a !important;
    color: #0F172A !important;
}

/* Bundle Inline Farben */

.sc-bundle-old-inline { color: #ef4444; text-decoration: line-through; opacity: 0.9; }
/* ── Checkbox AGB / Datenschutz ─────────────────────────── */
.sc-form-legal--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.sc-form-legal--checkbox a {
    color: #6ab2cf;
    text-decoration: underline;
}
.sc-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #6ab2cf;
    cursor: pointer;
}

/* ── MwSt. / Kleinunternehmer-Hinweis ───────────────────── */
.sc-price-vat {
    font-size: 12px;
    color: #94a3b8;
    margin: 10px 0 0 0;
    text-align: center;
    line-height: 1.5;
}

/* ── Checkbox-Block (3 Checkboxen) ──────────────────────── */
.sc-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.sc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.2s, background 0.2s;
}
.sc-checkbox-label:hover {
    border-color: rgba(106,178,207,0.4);
    background: rgba(106,178,207,0.05);
}
.sc-checkbox-label--optional {
    border-style: dashed;
    border-color: rgba(255,255,255,0.08);
}
.sc-checkbox-label--optional:hover {
    border-color: rgba(106,178,207,0.3);
}
.sc-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: #6ab2cf;
    cursor: pointer;
}
.sc-checkbox-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}
.sc-checkbox-text a {
    color: #6ab2cf;
    text-decoration: underline;
}
.sc-checkbox-text strong {
    color: #ffffff;
}
.sc-required {
    color: #ef4444;
    font-weight: 700;
}
.sc-optional-hint {
    display: block;
    font-size: 12px;
    color: #475569;
    margin-top: 3px;
}

/* ── Kontrast-Fixes (Barrierefreiheit) ──────────────────── */
.sc-form-label    { color: #cbd5e1; }        /* war #94a3b8 */
.sc-form-input    { color: #f1f5f9; }        /* war #ffffff aber placeholder zu dunkel */
.sc-form-input::placeholder { color: #bccbe0; } /* war #475569 */
.sc-checkbox-text { color: #cbd5e1; }        /* war #94a3b8 */
.sc-optional-hint { color: #bccbe0; }        /* war #475569 */
.sc-service-desc  { color: #cbd5e1; }        /* war #94a3b8 */

/* ── Pflichtfeld-Hinweis ────────────────────────────────── */
.sc-required-note {
    font-size: 12px;
    color: #bccbe0;
    margin: -8px 0 20px 0;
}
.sc-required-note .sc-required { font-size: 13px; }

/* ── Payment-Hint (wenn Buttons disabled) ───────────────── */
.sc-payment-hint {
    text-align: center;
    font-size: 13px;
    color: #bccbe0;
    margin-top: 10px;
}

/* ── Buttons disabled State deutlicher ─────────────────── */
.sc-pay-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(30%);
}


/* ── Custom Dropdown (Anrede) ───────────────────────────── */
.sc-dropdown {
    position: relative;
    user-select: none;
}
.sc-dropdown-selected {
    background: #5f6f8a;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 12px 16px;
    color: #f1f5f9;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color .2s;
}
.sc-dropdown-selected::after {
    content: '▾';
    font-size: 13px;
    color: #bccbe0;
    transition: transform .2s;
}
.sc-dropdown--open .sc-dropdown-selected {
    border-color: #6ab2cf;
}
.sc-dropdown--open .sc-dropdown-selected::after {
    transform: rotate(180deg);
}
.sc-dropdown--placeholder .sc-dropdown-selected {
    color: #bccbe0;
}
.sc-dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.sc-dropdown--open .sc-dropdown-list {
    display: block;
}
.sc-dropdown-item {
    padding: 11px 16px;
    color: #cbd5e1;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.sc-dropdown-item:hover {
    background: rgba(106,178,207,.12);
    color: #6ab2cf;
}
.sc-dropdown-item[data-value=""] {
    color: #bccbe0;
}

/* ── Test-Card (nur mit ?testmode=1) ────────────────────── */
.sc-test-card { display: none !important; }
.sc-test-card--visible { display: block !important;
    border-color: #ef4444 !important;
    background: rgba(239,68,68,0.05) !important;
}

@media (max-width: 768px) {
    /* ── Tab ── */
    .schnellcheck-tab-link { padding: 11px 14px 11px 12px; gap: 9px; }
    .schnellcheck-tab-icon { font-size: 18px; }
    .schnellcheck-tab-cta { font-size: 11px; }
    .schnellcheck-tab-sub { display: none; }
    .schnellcheck-tab-price { font-size: 16px; padding-left: 9px; }

    /* ── Service Cards Mobile ── */
    .sc-service-card-main {
        display: flex; align-items: flex-start;
        gap: 10px; padding: 14px 14px 12px;
        padding-right: 14px; /* kein Platz für absoluten Preis nötig */
    }
    .sc-service-check { width: 22px; height: 22px; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
    .sc-service-icon  { width: 38px; height: 38px; font-size: 17px; flex-shrink: 0; }
    .sc-service-info  { flex: 1; min-width: 0; }
    .sc-service-name  { font-size: 15px; white-space: normal; }
    .sc-service-desc  { font-size: 12px; white-space: normal; overflow: visible; text-overflow: unset; line-height: 1.5; margin-top: 4px; }
    /* Preis-Bar: absolute Position aufheben, als normale Zeile zeigen */
    .sc-service-price-bar {
        position: static;
        height: auto;
        padding: 10px 14px;
        border-top: 1px solid rgba(255,255,255,0.08);
        justify-content: flex-end;
    }
    .sc-service-price { font-size: 22px; }
    .sc-service-toggle { padding: 11px 14px; font-size: 12px; }
    .sc-service-detail { padding: 12px 14px 14px; font-size: 14px; }

    /* ── Zahlungs-Buttons ── */
    .sc-payment-buttons { flex-direction: column; }
    .sc-pay-btn { min-width: unset; }
}