/* =========================================================
   TM24 ANKAUF-SYSTEM �?" Frontend CSS
   Modernes Design + TM24-Farben (#2E2BCB)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap');

/* ===== TOPBAR ===== */
.ankauf-topbar {
    background: linear-gradient(90deg, #1a1278 0%, #2E2BCB 50%, #1a1278 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 0;
    text-align: center;
}

.ankauf-topbar-inner {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ankauf-topbar-inner span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ankauf-topbar-inner {
        gap: 12px;
        font-size: 11px;
    }
}

:root {
    --tm-blue: #2E2BCB;
    --tm-blue-light: rgba(46, 43, 203, 0.08);
    --tm-blue-hover: #2220a8;
    --tm-dark: #111118;
    --tm-gray: #f6f6f8;
    --tm-text: #333;
    --tm-muted: #888;
    --radius-lg: 16px;
    --radius-pill: 50px;
}

body {
    font-family: 'Figtree', sans-serif;
    background: var(--tm-gray);
    margin: 0;
    padding: 0;
    color: var(--tm-text);
}

/* ===== HEADER ===== */
.ankauf-header {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ankauf-logo {
    font-weight: 900;
    font-size: 26px;
    color: var(--tm-blue);
    text-decoration: none !important;
}

.ankauf-logo span {
    color: #111;
}

.nav-link-top {
    color: #555 !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.nav-link-top:hover,
.nav-link-top.active {
    color: var(--tm-blue) !important;
}

/* ===== HERO ===== */
.ankauf-hero {
    background: linear-gradient(135deg, var(--tm-blue) 0%, #1a18a0 50%, #0f0e6e 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.ankauf-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--tm-gray);
    border-radius: 50% 50% 0 0;
}

.ankauf-hero h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SUCHBOX ===== */
.suche-wrapper {
    max-width: 560px;
    margin: 28px auto 0;
    position: relative;
    z-index: 200;
}

.suche-box {
    position: relative;
}

.suche-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    z-index: 2;
}

.suche-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 17px;
    font-family: 'Figtree', sans-serif;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: box-shadow 0.3s;
}

.suche-input:focus {
    box-shadow: 0 4px 32px rgba(46, 43, 203, 0.3);
}

.suche-input::placeholder {
    color: #aaa;
}

.suche-ergebnisse {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    max-height: 360px;
    overflow-y: auto;
    display: none;
    z-index: 500;
}

.suche-ergebnisse.active {
    display: block;
}

.suche-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f0f0;
}

.suche-item:last-child {
    border-bottom: none;
}

.suche-item:hover {
    background: var(--tm-blue-light);
}

.suche-item-info {
    flex: 1;
}

.suche-item-modell {
    font-weight: 600;
    color: var(--tm-text);
    font-size: 15px;
}

.suche-item-details {
    font-size: 13px;
    color: var(--tm-muted);
    margin-top: 2px;
}

.suche-item-farbe {
    margin-top: 2px;
}

.suche-item-preis {
    font-weight: 700;
    color: var(--tm-blue);
    font-size: 16px;
    white-space: nowrap;
    margin-left: 16px;
}

.suche-leer {
    padding: 20px;
    text-align: center;
    color: var(--tm-muted);
    font-size: 14px;
}

/* ===== KATEGORIE-FILTER ===== */
.kategorie-bar {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.kategorie-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.kategorie-scroll::-webkit-scrollbar {
    display: none;
}

.kategorie-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f8;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.kategorie-btn:hover {
    background: var(--tm-blue-light);
    color: var(--tm-blue);
    border-color: rgba(46, 43, 203, 0.2);
}

.kategorie-btn.active {
    background: var(--tm-blue);
    color: #fff;
    border-color: var(--tm-blue);
    box-shadow: 0 4px 12px rgba(46, 43, 203, 0.3);
}

.kat-icon {
    font-size: 18px;
    line-height: 1;
}

.kat-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.kategorie-btn:not(.active) .kat-count {
    background: #e8e8ec;
    color: #888;
}

@media (max-width: 768px) {
    .kategorie-scroll {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 4px 10px;
    }

    .kategorie-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ===== SCHRITTE ===== */
.steps-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: -25px auto 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    padding: 0 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    font-weight: 700;
    font-size: 13px;
    color: #bbb;
    transition: 0.3s;
}

.step-item.active {
    color: var(--tm-blue);
    box-shadow: 0 4px 16px rgba(46, 43, 203, 0.15);
    border: 2px solid var(--tm-blue);
}

.step-item.done {
    color: #4caf50;
    border: 2px solid #4caf50;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.step-item.active .step-number {
    background: var(--tm-blue);
    color: #fff;
}

.step-item.done .step-number {
    background: #4caf50;
    color: #fff;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    font-weight: 900;
    font-size: 28px;
    color: #111;
    margin-bottom: 6px;
}

.section-title p {
    color: var(--tm-muted);
    font-size: 15px;
}

/* ===== MARKEN GRID ===== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.brand-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.brand-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 43, 203, 0.12);
}

.brand-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #333;
}

.brand-logo img {
    max-height: 100%;
    max-width: 130px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-logo svg {
    max-height: 100%;
    max-width: 120px;
    width: auto;
    display: block;
}

.brand-text-fallback {
    font-weight: 700;
    font-size: 15px;
    color: #555;
}

.brand-card h5 {
    font-weight: 600;
    margin: 0;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.3px;
}

/* Hover-Effekt fuer Logos */
.brand-card:hover .brand-logo {
    transform: scale(1.05);
    transition: 0.3s;
}

/* ===== MODELL LISTE ===== */
.model-list {
    max-width: 700px;
    margin: 0 auto;
}

.model-item {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.model-item:hover {
    border-color: var(--tm-blue);
    box-shadow: 0 4px 16px rgba(46, 43, 203, 0.1);
}

.model-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.model-icon {
    width: 46px;
    height: 46px;
    background: #f0f0f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.model-name {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

.model-sub {
    font-size: 12px;
    color: var(--tm-muted);
}

.model-farbe {
    margin-top: 2px;
}

.model-price {
    font-weight: 800;
    font-size: 17px;
    color: var(--tm-blue);
    text-align: right;
}

.model-price small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
}

/* ===== MODELLREIHEN ACCORDION ===== */
.model-series {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.model-series:hover {
    border-color: #d0d0d8;
}

.model-series.open {
    border-color: var(--tm-blue);
    box-shadow: 0 6px 24px rgba(46, 43, 203, 0.12);
}

.model-series-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-user-select: none;
    user-select: none;
}

.model-series-header:hover {
    background: #fafafe;
}

.model-series-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.model-series-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f0f0f8, #e8e8f4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tm-blue);
    font-size: 22px;
    flex-shrink: 0;
}

.model-series.open .model-series-icon {
    background: linear-gradient(135deg, var(--tm-blue), #4a47e0);
    color: #fff;
}

.model-series-name {
    font-weight: 800;
    font-size: 18px;
    color: #111;
    letter-spacing: -0.3px;
}

.model-series-meta {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
    font-weight: 500;
}

.model-series-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.model-series-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--tm-blue);
    text-align: right;
    white-space: nowrap;
}

.model-series-arrow {
    width: 32px;
    height: 32px;
    background: #f0f0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.model-series.open .model-series-arrow {
    transform: rotate(180deg);
    background: var(--tm-blue);
    color: #fff;
}

.model-series-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 0px solid transparent;
}

.model-series.open .model-series-body {
    border-top: 1px solid #eee;
}

.model-variant-label {
    font-weight: 700;
    font-size: 14px;
    color: #444;
    padding: 14px 24px 6px;
    background: #f8f8fc;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.2px;
}

.model-variant-label:first-child {
    padding-top: 16px;
}

.model-series-body .model-item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    padding: 14px 24px 14px 40px;
}

.model-series-body .model-item:last-child {
    border-bottom: none;
}

.model-series-body .model-item:hover {
    background: var(--tm-blue-light);
    box-shadow: none;
}

.model-icon-sm {
    width: 34px;
    height: 34px;
    background: #f0f0f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    flex-shrink: 0;
}

/* Mobile Responsiveness für Modellreihen */
@media (max-width: 576px) {
    .model-series-header {
        padding: 16px 16px;
        gap: 8px;
    }

    .model-series-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .model-series-name {
        font-size: 15px;
    }

    .model-series-meta {
        font-size: 11px;
    }

    .model-series-price {
        font-size: 13px;
    }

    .model-series-arrow {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .model-series-body .model-item {
        padding: 12px 16px 12px 24px;
    }

    .model-variant-label {
        padding: 12px 16px 6px;
        font-size: 13px;
    }

    .model-series-right {
        gap: 10px;
    }
}

.zustand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.zustand-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.zustand-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 43, 203, 0.1);
}

.zustand-card.selected {
    border-color: var(--tm-blue);
    background: rgba(46, 43, 203, 0.03);
    box-shadow: 0 6px 20px rgba(46, 43, 203, 0.15);
}

.zustand-emoji {
    font-size: 24px;
    margin-bottom: 12px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 12px;
    background: #f0f0ff;
    color: var(--tm-blue);
}

.zustand-card:nth-child(1) .zustand-emoji {
    background: #eff6ff;
    color: #2563eb;
}

.zustand-card:nth-child(2) .zustand-emoji {
    background: #f0fdf4;
    color: #16a34a;
}

.zustand-card:nth-child(3) .zustand-emoji {
    background: #fefce8;
    color: #ca8a04;
}

.zustand-card:nth-child(4) .zustand-emoji {
    background: #fef2f2;
    color: #dc2626;
}

.zustand-label {
    font-weight: 700;
    font-size: 15px;
    color: #111;
    margin-bottom: 4px;
}

.zustand-desc {
    font-size: 12px;
    color: var(--tm-muted);
    line-height: 1.4;
}

.zustand-ce {
    font-size: 11px;
    color: #999;
    font-style: italic;
    margin-top: 6px;
    line-height: 1.3;
}

.zustand-preis {
    font-weight: 800;
    color: #16a34a;
    font-size: 20px;
    margin-top: 10px;
}

/* ===== FRAGEBOGEN ===== */
.fragen-summary {
    margin-top: 24px;
    padding: 20px;
    background: #f0faf0;
    border: 1px solid #d4edda;
    border-radius: 12px;
}

.summary-title {
    font-weight: 800;
    font-size: 15px;
    color: #222;
    margin-bottom: 12px;
}

.summary-item {
    padding: 6px 0;
    font-size: 14px;
    color: #888;
    transition: all 0.3s;
}

.summary-item.checked {
    color: #222;
    font-weight: 600;
}

.sum-icon {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 6px;
}

.summary-item.checked .sum-icon {
    color: #28a745;
}

.summary-item.unchecked .sum-icon {
    color: #dc3545;
}

.fragen-box {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.frage-item {
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.frage-item:last-of-type {
    border-bottom: none;
}

.frage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frage-detail {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f8f8fa;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.frage-label {
    font-weight: 700;
    font-size: 15px;
    color: #222;
    flex: 1;
}

.frage-info {
    cursor: help;
    font-size: 14px;
    margin-left: 6px;
    opacity: 0.5;
}

.frage-buttons {
    display: flex;
    gap: 8px;
}

.frage-btn {
    padding: 8px 28px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
}

.frage-btn:hover {
    border-color: #aaa;
    color: #333;
}

.frage-btn.active {
    background: var(--tm-blue);
    color: #fff;
    border-color: var(--tm-blue);
}

.frage-select {
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    min-width: 200px;
    color: #555;
    transition: all 0.2s;
}

.frage-select:focus {
    border-color: var(--tm-blue);
    outline: none;
}

#btn-fragen-weiter:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== ERGEBNIS ===== */
.ergebnis-box {
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ergebnis-preis {
    font-size: 52px;
    font-weight: 900;
    color: var(--tm-blue);
    margin: 16px 0;
}

/* ===== CHECKOUT FLOW ===== */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.checkout-step-nr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.checkout-step.active .checkout-step-nr {
    background: #28a745;
    color: #fff;
}

.checkout-step.done .checkout-step-nr {
    background: #28a745;
    color: #fff;
}

.checkout-step-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    white-space: nowrap;
}

.checkout-step.active .checkout-step-label,
.checkout-step.done .checkout-step-label {
    color: #28a745;
}

.checkout-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 8px;
    margin-bottom: 22px;
    min-width: 40px;
}

.checkout-line.done {
    background: #28a745;
}

.checkout-banner {
    background: #d4edda;
    color: #155724;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 24px;
}

.artikel-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.artikel-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 700;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artikel-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.artikel-info {
    display: flex;
    gap: 16px;
    flex: 1;
}

.artikel-icon {
    font-size: 40px;
    min-width: 50px;
    text-align: center;
}

.artikel-name {
    font-weight: 800;
    font-size: 16px;
    color: #222;
    margin-bottom: 4px;
}

.artikel-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.artikel-antworten {
    font-size: 12px;
    color: #28a745;
    line-height: 1.6;
}

.artikel-preis {
    font-weight: 800;
    font-size: 20px;
    color: #28a745;
    white-space: nowrap;
    margin-left: 20px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    font-weight: 800;
    font-size: 16px;
}

.checkout-total-preis {
    color: #16a34a;
    font-size: 22px;
}

/* Info-Trigger Button */
.info-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    color: #aaa;
    font-size: 16px;
    margin-left: 6px;
    transition: color 0.2s;
    vertical-align: middle;
}

.info-trigger:hover {
    color: var(--tm-blue);
}

.info-detail {
    display: none;
    padding: 14px 24px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-radius: 0 0 16px 16px;
}

.info-detail.show {
    display: block;
}

.info-bullet {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
    color: #444;
}

.checkout-form-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.checkout-label {
    font-weight: 600;
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.checkout-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.checkout-checkbox input {
    margin-top: 3px;
}

.checkout-checkbox a {
    color: var(--tm-blue);
    text-decoration: underline;
}

.confirm-steps {
    margin-top: 20px;
    padding: 20px;
    background: #f0f5ff;
    border-radius: 12px;
    text-align: left;
}

.confirm-step {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

/* ===== AUSZAHLUNG ===== */
.auszahlung-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auszahlung-optionen {
    display: flex;
    gap: 12px;
}

.auszahlung-card {
    flex: 1;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.auszahlung-card:hover {
    border-color: #aaa;
}

.auszahlung-card.active {
    border-color: #28a745;
    background: #f0faf0;
}

.auszahlung-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.auszahlung-name {
    font-weight: 700;
    font-size: 14px;
    color: #222;
}

.auszahlung-preis {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* ===== CHECKOUT BUTTONS ===== */
.checkout-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
}

.btn-zurueck {
    background: none;
    border: 2px solid #ddd;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-zurueck:hover {
    border-color: #999;
    color: #333;
}

.btn-ankauf {
    background: var(--tm-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(46, 43, 203, 0.3);
    display: inline-block;
    width: auto;
}

.btn-ankauf:hover {
    background: var(--tm-blue-hover);
    transform: translateY(-2px);
}

.btn-ankauf.btn-block {
    width: 100%;
}

/* ===== FORMULAR ===== */
.form-rounded {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
}

.form-rounded:focus {
    border-color: var(--tm-blue);
    box-shadow: 0 0 0 3px rgba(46, 43, 203, 0.1);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--tm-blue);
    color: #fff;
    padding: 18px 0;
    font-size: 13px;
    font-weight: 600;
    margin-top: 40px;
}

.trust-strip i {
    margin-right: 5px;
}

/* ===== SO GEHT'S ===== */
.how-section {
    background: #fff;
    padding: 60px 0;
}

.how-step {
    text-align: center;
    padding: 20px;
}

.how-icon {
    width: 64px;
    height: 64px;
    background: var(--tm-blue-light);
    color: var(--tm-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
}

.how-title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
}

.how-text {
    font-size: 13px;
    color: var(--tm-muted);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.ankauf-footer {
    background: var(--tm-dark);
    color: #fff;
    padding: 50px 0 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .ankauf-hero h1 {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .steps-bar {
        gap: 8px;
    }

    .step-item {
        padding: 10px 14px;
        font-size: 11px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .zustand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ergebnis-preis {
        font-size: 40px;
    }

    .ergebnis-box {
        padding: 24px;
        margin: 10px;
    }

    .frage-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .checkout-buttons {
        flex-direction: column-reverse;
    }

    .checkout-buttons .btn-zurueck,
    .checkout-buttons .btn-ankauf {
        width: 100%;
        text-align: center;
    }
}

/* ===== BURGER MENU ===== */
.burger-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 12px;
    transition: 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--tm-blue);
    background: var(--tm-blue-light);
}

.mobile-nav .whatsapp-nav {
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 50px;
    padding: 12px 28px;
    margin-top: 10px;
}

/* ===== BACK BUTTON ===== */
.btn-back {
    background: none;
    border: none;
    color: var(--tm-blue);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.btn-back:hover {
    color: var(--tm-blue-hover);
    transform: translateX(-3px);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
    text-decoration: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text strong {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.cookie-text a {
    color: var(--tm-blue);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--tm-blue);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-btn-accept:hover {
    background: var(--tm-blue-hover);
}

.cookie-btn-reject {
    background: none;
    border: 2px solid #ddd;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-btn-reject:hover {
    border-color: #999;
    color: #333;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f8f9fb;
    padding: 60px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: #222;
    transition: 0.2s;
}

.faq-question:hover {
    color: var(--tm-blue);
}

.faq-question i {
    font-size: 12px;
    color: #aaa;
    transition: 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--tm-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

/* ===== GER�"T NICHT GEFUNDEN ===== */
.geraet-nicht-gefunden {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 24px;
    background: #f0f5ff;
    border: 2px dashed #c0d0f0;
    border-radius: 16px;
    text-align: center;
}

.geraet-nicht-gefunden i.fa-question-circle {
    font-size: 36px;
    color: var(--tm-blue);
    margin-bottom: 10px;
}

.geraet-nicht-gefunden strong {
    display: block;
    font-size: 17px;
    margin-bottom: 6px;
}

.geraet-nicht-gefunden p {
    color: #666;
    font-size: 14px;
    margin-bottom: 14px;
}

.btn-ankauf-small {
    display: inline-block;
    background: var(--tm-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-ankauf-small:hover {
    background: var(--tm-blue-hover);
    color: #fff;
    text-decoration: none;
}

.btn-whatsapp-small {
    display: inline-block;
    color: #25d366;
    border: 2px solid #25d366;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-whatsapp-small:hover {
    background: #25d366;
    color: #fff;
    text-decoration: none;
}

.oder-text {
    display: inline-block;
    margin: 0 12px;
    color: #999;
    font-size: 13px;
}

/* ===== PREISGARANTIE BADGE ===== */
.preisgarantie-badge {
    background: #e8f4fd;
    color: #1565c0;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.preisgarantie-badge i {
    margin-right: 6px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: #fff;
    padding: 60px 0;
}

.testimonial-card {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    height: 100%;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    margin-bottom: 12px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tm-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #222;
}

.testimonial-author span {
    font-size: 12px;
    color: #888;
}

/* ===== TRACKING LINK BOX ===== */
.tracking-link-box {
    margin-top: 16px;
    padding: 12px 20px;
    background: #f0f5ff;
    border-radius: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.tracking-link-box i {
    color: var(--tm-blue);
    margin-right: 6px;
}

.tracking-link-box a {
    color: var(--tm-blue);
    font-weight: 700;
    text-decoration: none;
}

.tracking-link-box a:hover {
    text-decoration: underline;
}

/* ===== TRACKING PAGE ===== */
.tracking-page {
    min-height: 80vh;
    background: linear-gradient(135deg, #f0f2ff 0%, #f8f9fb 100%);
    padding: 60px 0;
}

.tracking-box {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.tracking-header {
    text-align: center;
    margin-bottom: 30px;
}

.tracking-header i {
    font-size: 48px;
    color: var(--tm-blue);
    margin-bottom: 16px;
}

.tracking-header h1 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin-bottom: 6px;
}

.tracking-header p {
    font-size: 14px;
    color: #888;
}

.tracking-status-box {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 24px;
}

.tracking-geraet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.tracking-geraet strong {
    font-size: 16px;
}

.badge-zustand {
    background: var(--tm-blue-light);
    color: var(--tm-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.tracking-preis {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
}

.tracking-preis strong {
    font-size: 20px;
    color: var(--tm-blue);
    font-weight: 800;
}

/* ===== TRACKING TIMELINE ===== */
.tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e0e0e0;
    border-radius: 3px;
}

.timeline-step {
    position: relative;
    padding: 12px 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e0e0e0;
    transition: 0.3s;
    z-index: 1;
}

.timeline-step.done .timeline-dot {
    background: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}

.timeline-step.active .timeline-dot {
    background: var(--tm-blue);
    box-shadow: 0 0 0 2px var(--tm-blue), 0 0 0 6px rgba(46, 43, 203, 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 2px var(--tm-blue), 0 0 0 6px rgba(46, 43, 203, 0.2);
    }

    50% {
        box-shadow: 0 0 0 2px var(--tm-blue), 0 0 0 12px rgba(46, 43, 203, 0.05);
    }
}

.timeline-label strong {
    display: block;
    font-size: 14px;
    color: #999;
}

.timeline-label span {
    font-size: 12px;
    color: #bbb;
}

.timeline-step.done .timeline-label strong {
    color: #28a745;
}

.timeline-step.active .timeline-label strong {
    color: var(--tm-blue);
    font-weight: 800;
}

.alert-custom {
    background: #fff3f3;
    color: #c0392b;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== STEP ANIMATIONS ===== */
.step-animate {
    animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   WIZARD  HIERARCHISCHE MODELLAUSWAHL
   ========================================================= */

/* Zurück-Button */
.wizard-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid #e0e0e8;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    margin-bottom: 24px;
    font-family: inherit;
    transition: all 0.2s;
}

.wizard-back-btn:hover {
    border-color: var(--tm-blue);
    color: var(--tm-blue);
    background: var(--tm-blue-light);
}

/* === Produktlinie Grid (iPhone / iPad / MacBook) === */
.wizard-produktlinie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-linie-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 18px;
    padding: 28px 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.wizard-linie-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(46, 43, 203, 0.14);
}

.wizard-linie-icon {
    font-size: 38px;
    color: var(--tm-blue);
    margin: 0 auto 14px;
    line-height: 1;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #f0f0ff;
}

.wizard-linie-name {
    font-weight: 800;
    font-size: 15px;
    color: #111;
}

/* === Liste (Modellreihe / Variante) === */
.wizard-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wizard-list-item {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
}

.wizard-list-item:hover {
    border-color: var(--tm-blue);
    background: var(--tm-blue-light);
    transform: translateX(4px);
}

.wizard-list-name {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.wizard-list-price {
    font-weight: 800;
    font-size: 17px;
    color: #16a34a;
    white-space: nowrap;
    margin-left: 12px;
}

/* === Karten-Grid (Serie, Variante) === */
.wizard-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.wizard-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(46, 43, 203, 0.15);
}

.wizard-card-name {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.wizard-card-preis {
    font-size: 17px;
    font-weight: 700;
    color: #16a34a;
}

.wizard-card-icon {
    width: 56px;
    height: 56px;
    background: var(--tm-blue-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tm-blue);
    font-size: 26px;
    margin: 0 auto 14px;
    transition: background 0.25s, color 0.25s;
}

.wizard-card:hover .wizard-card-icon {
    background: var(--tm-blue);
    color: #fff;
}

/* === Speicher Grid === */
.wizard-speicher-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-speicher-pill {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 18px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
    flex: 1 1 120px;
}

.wizard-speicher-pill:hover {
    border-color: var(--tm-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 43, 203, 0.14);
}

.wizard-speicher-gb {
    font-weight: 800;
    font-size: 18px;
    color: #111;
    margin-bottom: 4px;
}

.wizard-speicher-preis {
    font-size: 13px;
    font-weight: 600;
    color: var(--tm-blue);
}

/* === Farb-Grid === */
.wizard-farbe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-farbe-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.wizard-farbe-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 43, 203, 0.12);
}

.wizard-farbe-card .farb-punkt {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    font-size: 20px;
}

.wizard-farbe-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.wizard-farbe-preis {
    font-size: 15px;
    font-weight: 800;
    color: #16a34a;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 576px) {
    .wizard-produktlinie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-speicher-grid {
        gap: 8px;
    }

    .wizard-speicher-pill {
        padding: 14px 16px;
        flex: 1 1 90px;
    }

    .wizard-speicher-gb {
        font-size: 16px;
    }

    .wizard-linie-card {
        padding: 20px 10px 14px;
    }

    .wizard-linie-icon {
        font-size: 28px;
    }
}

/* Farb-Kreis im Wizard */
.wizard-farbe-kreis {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 10px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===== WIZARD SPEICHER-KARTEN (wie Farbe-Karten) ===== */
.wizard-speicher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.wizard-speicher-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.wizard-speicher-card:hover {
    border-color: var(--tm-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(46, 43, 203, 0.15);
}

.wizard-speicher-card:active {
    background: var(--tm-blue);
    border-color: var(--tm-blue);
}

.wizard-speicher-card:active .wizard-speicher-gb,
.wizard-speicher-card:active .wizard-speicher-preis {
    color: #fff;
}

.wizard-speicher-gb {
    font-weight: 700;
    font-size: 17px;
    color: #333;
    margin-bottom: 6px;
}

.wizard-speicher-preis {
    font-size: 22px;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: -0.5px;
}

@media (max-width: 576px) {
    .wizard-speicher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wizard-speicher-card {
        padding: 20px 10px 16px;
    }

    .wizard-speicher-gb {
        font-size: 17px;
    }
}

/* ===== KUNDENBEWERTUNGEN (Amazon-Style) ===== */
.reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reviews-big-number {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.reviews-score-detail {
    text-align: left;
}

.reviews-stars-row {
    color: #f59e0b !important;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-stars-row i {
    color: #f59e0b !important;
}

.reviews-count {
    font-size: 12px;
    color: #888;
    display: block;
    margin-top: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: var(--tm-blue);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar.rv-purple {
    background: #e0e7ff;
    color: #4338ca;
}

.review-avatar.rv-amber {
    background: #fef3c7;
    color: #b45309;
}

.review-avatar.rv-pink {
    background: #fce7f3;
    color: #be185d;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.review-stars {
    color: #f59e0b !important;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 2px;
}

.review-stars i {
    color: #f59e0b !important;
}

.review-date {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    padding-left: 14px;
    border-left: 3px solid var(--tm-blue);
}

.review-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

.review-verified {
    color: #16a34a;
    font-weight: 600;
}

.review-verified i {
    margin-right: 3px;
}

.review-device {
    color: #888;
    background: #f3f4f6;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.review-device i {
    color: var(--tm-blue);
    margin-right: 3px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NACHHALTIGKEIT ===== */
.eco-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.eco-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.eco-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.eco-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #15803d;
    margin-bottom: 8px;
}

.eco-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.eco-stats {
    flex-shrink: 0;
    display: flex;
    gap: 30px;
}

.eco-stat {
    text-align: center;
}

.eco-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #16a34a;
}

.eco-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .eco-content {
        flex-direction: column;
        text-align: center;
    }

    .eco-stats {
        justify-content: center;
    }
}

/* ===== TRUST-BAR (grüne Vorteile unter Hero) ===== */
.trust-bar {
    background: #fff;
    margin-top: 60px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.trust-icon {
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .trust-items {
        gap: 16px;
    }

    .trust-item {
        font-size: 13px;
    }

    .trust-icon {
        font-size: 16px;
    }
}

/* ===== TAGLINE BAR (weiße Fläche unter dem Hero) ===== */

.tagline-bar {
    background: #fff;
    margin-top: 60px;
    /* nach der weißen Kurve des Hero */
    padding: 22px 0 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
}

.tagline-text {
    font-size: 15px;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.6;
}

.tagline-hl {
    color: var(--tm-blue);
    font-weight: 700;
}

.tagline-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tagline-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tm-blue-light);
    color: var(--tm-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(46, 43, 203, 0.2);
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

.tagline-chip:hover {
    background: var(--tm-blue);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .tagline-text {
        font-size: 13px;
        padding: 0 14px;
    }

    .tagline-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}