/* === DRELUX SOLARCARPORT PLUGIN — FRONTEND === */
.drelux-sc-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f0f0f;
    line-height: 1.55;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f5f3ed;
    padding: 1rem 0;
}




/* === DESIGN SYSTEM === */
.drelux-sc-page {
    /* Farben */
    --bg:           #f5f3ed;       /* warmer Sandbeige-Hintergrund */
    --bg-card:      #ffffff;
    --bg-soft:      #f0ede5;        /* leicht abgesetztes Beige */
    --bg-deep:      #1a1a1a;        /* Anthrazit für CTAs */
    --bg-deep-hover:#2a2a2a;

    --ink:          #0f0f0f;        /* primärer Text */
    --ink-soft:     #4a4a4a;        /* sekundär */
    --ink-mute:     #8a8a85;        /* tertiär / Labels */
    --ink-faint:    #b8b5ae;        /* Placeholder */

    --line:         rgba(15,15,15,0.08);
    --line-strong:  rgba(15,15,15,0.14);

    --accent:       #1a5e2a;        /* Grün für 0%-USt-Ersparnis */
    --accent-soft:  #e8f4ea;
    --warn:         #855405;
    --warn-soft:    #fef3d3;
    --error:        #8a1f1f;
    --error-soft:   #fbeaea;

    /* Tiefenwirkung */
    --shadow-sm:    0 1px 2px rgba(15,15,15,0.04);
    --shadow:       0 4px 16px rgba(15,15,15,0.06), 0 1px 3px rgba(15,15,15,0.04);
    --shadow-lg:    0 12px 32px rgba(15,15,15,0.10), 0 2px 6px rgba(15,15,15,0.04);
    --shadow-xl:    0 24px 64px rgba(15,15,15,0.16), 0 4px 12px rgba(15,15,15,0.06);
    --shadow-deep:  0 8px 24px rgba(15,15,15,0.20), 0 2px 8px rgba(15,15,15,0.10);

    /* Radius */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    /* Animation */
    --ease:   cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 150ms var(--ease);
    --t-med:  250ms var(--ease);
}

.drelux-sc-page, .drelux-sc-page * { box-sizing: border-box; }





/* Typografie */
h1, h2, h3, h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.container { max-width: 1080px; margin: 3rem auto; padding: 0 1.25rem; }

/* === HEADER === */
.brand {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}
.brand h1 {
    margin: 0;
    font-size: 1.85rem;
    letter-spacing: -0.035em;
    line-height: 1.15;
}
.brand p {
    margin: 0.4rem 0 0;
    color: var(--ink-mute);
    font-size: 14px;
    font-weight: 400;
}

.demo-banner {
    background: var(--warn-soft);
    color: var(--warn);
    padding: 12px 18px;
    border-radius: var(--r-md);
    font-size: 13px;
    margin-bottom: 2rem;
    border: 1px solid rgba(133,84,5,0.15);
    box-shadow: var(--shadow-sm);
}

.h {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    letter-spacing: -0.018em;
}

/* === LAYOUT === */
.grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .grid { grid-template-columns: 1fr; } }

/* === PREVIEW === */
.preview {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    min-height: 380px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--t-med);
}
.preview:hover { box-shadow: var(--shadow-lg); }
.preview svg { width: 100%; height: auto; display: block; }

.dims {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.dims > div { display: flex; flex-direction: column; }
.dims > div > span:not(.lbl) {
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.lbl {
    color: var(--ink-mute);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

/* === CONTROLS === */
.controls {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.field { display: flex; flex-direction: column; }
.field > label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 8px;
    font-weight: 500;
}
.field > label > span {
    color: var(--ink);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: var(--bg-soft);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    min-width: 30px;
    text-align: center;
}

/* Custom Range Slider */
.field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    height: 24px;
    cursor: pointer;
}
.field input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--line-strong);
    border-radius: 2px;
}
.field input[type="range"]::-moz-range-track {
    height: 4px;
    background: var(--line-strong);
    border-radius: 2px;
    border: none;
}
.field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--bg-card);
    border-radius: 50%;
    margin-top: -9px;
    box-shadow: 0 0 0 2px var(--ink), var(--shadow);
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.field input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--ink), var(--shadow-lg);
}
.field input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px var(--ink), 0 0 0 8px rgba(15,15,15,0.08);
}
.field input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--bg-card);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--ink), var(--shadow);
    cursor: pointer;
    border: none;
    transition: transform var(--t-fast);
}
.field input[type="range"]::-moz-range-thumb:hover { transform: scale(1.1); }

/* Text Inputs */
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-card);
    color: var(--ink);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(15,15,15,0.06);
}

/* Spec-List */
.spec-list {
    background: var(--bg-soft);
    border-radius: var(--r-md);
    padding: 14px 16px;
    font-size: 12.5px;
    line-height: 1.7;
}
.spec-list strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
}
.spec-list ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.spec-list ul li { padding: 1px 0; }
.spec-list ul li::marker { color: var(--ink-mute); }

/* Checkboxes */
.check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: var(--r-sm);
    transition: background var(--t-fast), opacity var(--t-fast);
    color: var(--ink-soft);
}
.check:hover { background: var(--bg-soft); color: var(--ink); }
.check input {
    width: 18px;
    height: 18px;
    accent-color: var(--ink);
    cursor: pointer;
}
.check.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.check.disabled input { cursor: not-allowed; }

/* === SUMMARY === */
.summary {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.price-rows { margin-bottom: 0.75rem; }
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    font-size: 14.5px;
    font-variant-numeric: tabular-nums;
}
.price-row.total {
    font-size: 1rem;
    font-weight: 600;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 8px;
}
.price-row.total .val {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.price-row .lbl {
    color: var(--ink-mute);
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    margin-bottom: 0;
}

.hint {
    margin: 1rem 0 0;
    font-size: 12px;
    color: var(--ink-mute);
    line-height: 1.6;
}
.hint + .hint { margin-top: 0.6rem; }

/* === FORM === */
.form {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field-full { grid-column: 1 / -1; }

.privacy {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0.5rem 0 1.5rem;
    align-items: flex-start;
}
.privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-deep);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: 'Manrope', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-med);
    box-shadow: var(--shadow);
}
.submit:hover:not(:disabled) {
    background: var(--bg-deep-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.submit:active:not(:disabled) { transform: translateY(0); }
.submit:disabled { opacity: 0.5; cursor: not-allowed; }

.status {
    margin-top: 1.25rem;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    font-size: 14px;
    display: none;
    line-height: 1.5;
}
.status.success {
    display: block;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(26,94,42,0.15);
}
.status.error {
    display: block;
    background: var(--error-soft);
    color: var(--error);
    border: 1px solid rgba(138,31,31,0.15);
}

/* === MODAL === */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(15,15,15,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
    z-index: 1000;
}
.modal-bg.show { display: flex; }
.modal {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    max-width: 720px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-xl);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: var(--bg-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), transform var(--t-fast);
}
.modal-close:hover { background: var(--ink); color: #fff; transform: scale(1.05); }

.modal h2 {
    margin: 0 0 1.25rem;
    font-size: 1.3rem;
    font-family: 'Manrope', sans-serif;
}
.modal-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.modal-tab {
    background: none;
    border: none;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    color: var(--ink-mute);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.modal-tab:hover { color: var(--ink-soft); }
.modal-tab.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
    font-weight: 700;
}
.modal-content { display: none; }
.modal-content.active { display: block; }
.mail-preview {
    background: var(--bg-soft);
    padding: 1.25rem;
    border-radius: var(--r-md);
    font-size: 13px;
    max-height: 600px;
    overflow-y: auto;
}

/* Mobile feinjustieren */
@media (max-width: 600px) {
    .container { margin: 1.5rem auto; padding: 0 1rem; }
    .dims { grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1rem; }
    .preview, .controls, .summary, .form { padding: 1.25rem; }
    .summary { padding: 1.25rem 1.5rem; }
    .price-row.total .val { font-size: 1.6rem; }
    .brand h1 { font-size: 1.45rem; }
    .modal { padding: 1.5rem; }
}

/* === INFOSEITE LAYOUT === */
.page-wrap { background: var(--bg); }

/* === HERO === */
.hero {
    position: relative;
    padding: 5rem 1.25rem 4rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://lenorad.de/wp-content/uploads/2023/08/6-scaled.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.85) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}
.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
    color: #fff;
}
.hero p.lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-md);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast);
}
.btn-primary {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* Trust-Badges in Hero */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.hero-trust > div { display: flex; align-items: center; gap: 8px; }

/* === SECTION GRUNDLAGEN === */
section { padding: 5rem 1.25rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-eyebrow {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin: 0 0 1rem;
    color: var(--ink);
}
.section-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 680px;
    line-height: 1.6;
    margin: 0 0 3rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* === STATS / KENNZAHLEN === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.stat-num {
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-num.accent { color: var(--accent); }
.stat-lbl {
    font-size: 13px;
    color: var(--ink-mute);
    line-height: 1.4;
}

/* === FEATURE-GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 24px;
}
.feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* === BILD-GALERIE / SHOWCASE === */
.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 768px) { .showcase-grid { grid-template-columns: 1fr; } }
.showcase-img {
    background-size: cover;
    background-position: center;
    border-radius: var(--r-lg);
    min-height: 320px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}
.showcase-img.tall { min-height: 480px; }
.showcase-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 600px) { .showcase-img-row { grid-template-columns: 1fr; } }
.showcase-img-row .showcase-img { min-height: 240px; }

/* === PROCESS / SCHRITTE === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-soft);
    line-height: 1;
}
.process-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--ink);
}
.process-step p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13.5px;
    line-height: 1.5;
}

/* === TECH-SPECS Accordion === */
.tech-specs {
    max-width: 800px;
    margin: 0 auto;
}
.tech-item {
    background: var(--bg-card);
    border-radius: var(--r-md);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.tech-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    transition: background var(--t-fast);
}
.tech-item summary::-webkit-details-marker { display: none; }
.tech-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--ink-mute);
    transition: transform var(--t-med);
}
.tech-item[open] summary::after {
    transform: rotate(45deg);
}
.tech-item summary:hover { background: var(--bg-soft); }
.tech-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}
.tech-content ul { padding-left: 18px; margin: 0.5rem 0; }
.tech-content li { padding: 2px 0; }
.tech-content table { width: 100%; font-size: 14px; border-collapse: collapse; margin-top: 0.5rem; }
.tech-content table td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.tech-content table td:first-child { color: var(--ink-mute); width: 50%; }
.tech-content table td:last-child { font-weight: 600; }

/* === KONFIGURATOR-EINBETTUNG === */
.section-konfigurator {
    background: var(--bg-soft);
    padding: 4rem 0;
}
.section-konfigurator .container {
    margin: 0 auto;
}

/* === NULLSTEUERSATZ-INFO === */
.tax-info {
    background: var(--accent-soft);
    border: 1px solid rgba(26,94,42,0.15);
    border-radius: var(--r-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}
.tax-info h3 {
    font-family: 'Manrope', sans-serif;
    color: var(--accent);
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tax-info h3::before {
    content: '0%';
    background: var(--accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}
.tax-info ul {
    margin: 0.5rem 0;
    padding-left: 20px;
    color: var(--ink);
}
.tax-info ul li { padding: 4px 0; line-height: 1.6; font-size: 14.5px; }
.tax-info p { margin: 0.75rem 0; line-height: 1.6; font-size: 14.5px; color: var(--ink-soft); }

/* === FOOTER === */
.site-footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.85);
    padding: 4rem 1.25rem 2rem;
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand h3 {
    font-family: 'Manrope', sans-serif;
    color: #fff;
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    color: #fff;
    margin: 0 0 1rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; font-size: 14px; }
.footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--t-fast);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Smooth Scroll */


/* Section-Übergänge */
.section-light { background: var(--bg-card); }



/* === STANDALONE-MODUS: kompakter Außenrand === */

.drelux-sc-page {
    background: var(--bg);
}
.container {
    max-width: 1080px;
    margin: 2rem auto;
    padding: 0 1.25rem;
}
@media (max-width: 600px) {
    .container { margin: 1rem auto; padding: 0 0.75rem; }
}
