:root {
    color-scheme: light;
    --bg: #f6f3ee;
    --surface: #ffffff;
    --ink: #18201d;
    --muted: #64706b;
    --line: #ded8cf;
    --accent: #126b5a;
    --accent-strong: #0d4f43;
    --gold: #c48a2c;
    --dark: #16211f;
    --dark-soft: #24322f;
    --radius: 8px;
    --shadow: 0 24px 70px rgba(24, 32, 29, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 5vw;
    background: rgba(246, 243, 238, 0.88);
    border-bottom: 1px solid rgba(222, 216, 207, 0.8);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand__mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius);
}

.brand__text {
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    gap: 28px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--accent);
}

.site-nav--static {
    display: flex;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(56px, 7vw, 96px) 5vw;
    background:
        linear-gradient(115deg, rgba(18, 107, 90, 0.08), transparent 42%),
        radial-gradient(circle at 82% 28%, rgba(196, 138, 44, 0.22), transparent 30%);
}

.hero__content {
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3.1rem, 8vw, 7.3rem);
    line-height: 0.94;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.hero__lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: var(--accent);
}

.button--primary:hover {
    background: var(--accent-strong);
}

.button--secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
}

.hero__visual {
    position: relative;
    min-height: 560px;
}

.hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border: 1px solid rgba(222, 216, 207, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero__panel {
    position: absolute;
    right: clamp(12px, 2vw, 26px);
    bottom: clamp(12px, 2vw, 26px);
    width: min(330px, calc(100% - 24px));
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(222, 216, 207, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.metric {
    padding: clamp(18px, 3vw, 30px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.metric strong {
    display: block;
    color: var(--accent);
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.95;
}

.metric span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: clamp(72px, 9vw, 128px) 5vw;
}

.section__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section--intro {
    background: var(--surface);
}

.section--dark {
    color: #fff;
    background: var(--dark);
}

.section--dark .eyebrow {
    color: #e0b66d;
}

.section--dark p {
    color: #edf2ef;
    font-weight: 600;
}

.section--muted {
    background: #ebe6dc;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
}

.split > p,
.copy-stack p,
.experience__text p,
.contact__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.section__heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section__heading--wide {
    max-width: 940px;
}

.section__heading p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.section--dark .section__heading p:not(.eyebrow) {
    color: #edf2ef;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-card,
.process-step {
    min-height: 230px;
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-card p,
.process-step p {
    margin: 0;
    color: var(--muted);
}

.copy-stack {
    display: grid;
    gap: 18px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.advantage-card {
    min-height: 430px;
    padding: clamp(28px, 4vw, 42px);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.advantage-card strong {
    display: block;
    margin-bottom: 18px;
    color: #e0b66d;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.95;
}

.advantage-card h3 {
    color: #fff;
}

.advantage-card p {
    margin: 0;
    color: #edf2ef;
    font-weight: 600;
    font-size: 1.04rem;
    line-height: 1.72;
}

.advantage-card:not(.is-expanded) p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.advantage-card__toggle {
    margin-top: 22px;
    padding: 0;
    color: #e0b66d;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.advantage-card__toggle:hover {
    color: #fff;
}

.advantage-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.advantage-detail-card {
    min-height: 220px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.advantage-detail-card h3 {
    color: #fff;
}

.advantage-detail-card p {
    margin: 0;
    color: #edf2ef;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.62;
}

.experience {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
}

.experience__text {
    display: grid;
    gap: 20px;
}

.profile-column {
    display: grid;
    gap: 16px;
}

.profile-photo {
    margin: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(24, 32, 29, 0.12);
}

.profile-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 52% 28%;
}

.profile-photo figcaption {
    padding: 14px 18px;
    color: var(--ink);
    font-weight: 800;
}

.fact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fact-list li {
    padding: 18px 20px;
    background: var(--surface);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 10px 34px rgba(24, 32, 29, 0.08);
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-step span {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius);
    font-weight: 800;
}

.contact {
    background: var(--dark-soft);
    color: #fff;
}

.contact .eyebrow {
    color: #e0b66d;
}

.contact__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
}

.contact__copy {
    display: grid;
    gap: 18px;
}

.contact__copy p {
    color: #d6ddda;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    background: #fff;
    border-radius: var(--radius);
    color: var(--ink);
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.contact-form__trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 15px;
    color: var(--ink);
    font: inherit;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(18, 107, 90, 0.14);
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-status--success {
    color: #0f4b3e;
    background: #dff5ee;
}

.form-status--error {
    color: #812b22;
    background: #ffe3df;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 5vw;
    color: #d6ddda;
    background: #101715;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    font-weight: 800;
}

.consent-open {
    overflow: hidden;
}

.consent-layer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}

.consent-layer[hidden],
.consent-dialog [hidden] {
    display: none;
}

.consent-layer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 16, 0.72);
}

.consent-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: clamp(24px, 5vw, 42px);
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.consent-dialog:focus {
    outline: 3px solid rgba(18, 107, 90, 0.28);
    outline-offset: 3px;
}

.consent-dialog__brand {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: var(--radius);
    font-weight: 900;
}

.consent-dialog__eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.consent-dialog h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.consent-dialog__intro {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.consent-dialog__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.consent-choice,
.consent-settings-button {
    min-height: 50px;
    padding: 0 18px;
    border-radius: var(--radius);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.consent-choice {
    border: 2px solid var(--accent);
}

.consent-choice--accept {
    color: #fff;
    background: var(--accent);
}

.consent-choice--accept:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.consent-choice--reject {
    color: var(--accent-strong);
    background: #fff;
}

.consent-choice--reject:hover {
    background: #edf7f4;
}

.consent-settings-button {
    width: 100%;
    margin-top: 12px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
}

.consent-choice--save {
    width: 100%;
    margin-top: 16px;
    color: #fff;
    background: var(--accent);
}

.consent-dialog__settings {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.consent-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.consent-option p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.consent-switch {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 28px;
    flex: 0 0 auto;
}

.consent-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.consent-switch > span:not(.sr-only) {
    position: absolute;
    inset: 0;
    background: #aeb7b3;
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease;
}

.consent-switch > span:not(.sr-only)::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 160ms ease;
}

.consent-switch input:checked + span {
    background: var(--accent);
}

.consent-switch input:checked + span::after {
    transform: translateX(20px);
}

.consent-switch input:focus-visible + span {
    outline: 3px solid rgba(18, 107, 90, 0.25);
    outline-offset: 2px;
}

.consent-switch input:disabled + span {
    cursor: not-allowed;
    opacity: 0.72;
}

.consent-dialog__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
}

.consent-dialog__links a:hover {
    color: var(--accent);
}

.footer-consent-link {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 560px) {
    .consent-layer {
        align-items: end;
        padding: 10px;
    }

    .consent-dialog {
        max-height: calc(100vh - 20px);
        padding: 22px;
    }

    .consent-dialog__actions {
        grid-template-columns: 1fr;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.legal-page {
    background: var(--surface);
}

.legal-content {
    max-width: 820px;
}

.legal-content h1 {
    max-width: none;
    margin-bottom: 42px;
    font-size: clamp(2.4rem, 6vw, 5rem);
}

.legal-content h2 {
    margin-top: 34px;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
}

.legal-content p {
    color: var(--muted);
}

.analytics-page {
    min-height: 100vh;
    padding: clamp(32px, 6vw, 72px);
    background: var(--bg);
}

.analytics-shell {
    max-width: 1280px;
    margin: 0 auto;
}

.analytics-header,
.visitor-detail__head,
.analytics-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.analytics-header h1 {
    max-width: none;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.analytics-login {
    max-width: 520px;
}

.analytics-note {
    max-width: 720px;
    color: var(--muted);
}

.analytics-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.35fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.visitor-list,
.visitor-detail {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 45px rgba(24, 32, 29, 0.08);
}

.visitor-list h2,
.visitor-detail h2 {
    margin: 0 0 16px;
    font-size: 1.35rem;
}

.visitor-item {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.visitor-item + .visitor-item {
    margin-top: 10px;
}

.visitor-item.is-active {
    border-color: var(--accent);
    background: #edf7f4;
}

.visitor-item span,
.visitor-item small,
.visitor-detail__head p {
    color: var(--muted);
}

.visitor-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
}

.visitor-meta div {
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.visitor-meta dt {
    color: var(--muted);
    font-weight: 700;
}

.visitor-meta dd {
    margin: 4px 0 0;
    overflow-wrap: anywhere;
}

.event-timeline {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-timeline li {
    padding: 14px;
    border-left: 4px solid var(--accent);
    background: var(--bg);
    border-radius: var(--radius);
}

.event-timeline time,
.event-timeline span,
.event-timeline p {
    display: block;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.event-timeline p {
    margin: 6px 0 0;
}

@media (max-width: 980px) {
    .hero,
    .split,
    .experience,
    .contact__inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero__visual,
    .hero__visual img {
        min-height: 480px;
    }

    h1 {
        max-width: 13ch;
    }

    .service-grid,
    .process-grid,
    .advantage-grid,
    .advantage-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .analytics-grid,
    .visitor-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 66px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 66px;
        right: 5vw;
        left: 5vw;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav--static {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav a {
        padding: 14px;
    }

    .site-nav--static a {
        padding: 8px;
    }

    .hero {
        padding-top: 44px;
    }

    h1 {
        font-size: clamp(2.65rem, 15vw, 4rem);
    }

    .hero__panel {
        padding: 12px;
    }

    .hero__visual,
    .hero__visual img {
        min-height: 520px;
    }

    .hero__panel {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .service-grid,
    .process-grid,
    .advantage-grid,
    .advantage-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .process-step,
    .advantage-card,
    .advantage-detail-card {
        min-height: auto;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


.homepage-widerruf-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    max-width: 760px;
    margin-top: 30px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(222, 216, 207, 0.95);
    border-left: 6px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(24, 32, 29, 0.12);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.homepage-widerruf-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 107, 90, 0.35);
    box-shadow: 0 22px 56px rgba(24, 32, 29, 0.16);
}

.homepage-widerruf-cta__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.homepage-widerruf-cta__body,
.homepage-widerruf-cta__deadline {
    display: grid;
    gap: 3px;
}

.homepage-widerruf-cta__body strong {
    color: var(--ink);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.12;
}

.homepage-widerruf-cta small {
    color: var(--muted);
    font-weight: 800;
}

.homepage-widerruf-cta__deadline {
    min-width: 118px;
    padding-left: 16px;
    border-left: 1px solid var(--line);
    text-align: right;
}

.homepage-widerruf-cta__deadline strong {
    color: var(--accent);
    font-size: clamp(1.35rem, 3vw, 2.15rem);
    line-height: 1;
}

/* Landing Page: elektronischer Widerrufsbutton */
.widerruf-hero h1 {
    max-width: 11.5ch;
}

.widerruf-hero .hero__lead strong {
    color: var(--accent);
}

.deadline-banner {
    display: inline-grid;
    gap: 4px;
    margin-top: 28px;
    padding: 18px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 6px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 14px 38px rgba(24, 32, 29, 0.1);
}

.deadline-banner span,
.deadline-banner small {
    color: var(--muted);
    font-weight: 800;
}

.deadline-banner strong {
    color: var(--accent);
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 0.95;
}

.offer-card {
    align-self: center;
    display: grid;
    gap: 18px;
    padding: clamp(26px, 4vw, 42px);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(222, 216, 207, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.offer-card__label {
    margin: 0;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-card > strong {
    display: block;
    color: var(--accent);
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 0.9;
}

.offer-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.offer-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer-card li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    font-weight: 700;
}

.offer-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

.offer-card__note {
    margin: 0;
    padding-top: 14px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}

.widerruf-feature-grid .service-card {
    min-height: 250px;
}

.widerruf-dark-grid {
    display: grid;
    gap: 32px;
}

.widerruf-check-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
}

@media (max-width: 980px) {
    .widerruf-check-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .homepage-widerruf-cta {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .homepage-widerruf-cta__deadline {
        width: 100%;
        padding: 12px 0 0;
        border-left: 0;
        border-top: 1px solid var(--line);
        text-align: left;
    }

    .deadline-banner,
    .offer-card {
        width: 100%;
    }

    .widerruf-check-grid {
        grid-template-columns: 1fr;
    }
}
