*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --color-brand: #ff5600;
    --color-brand-dark: #c94300;
    --color-brand-darker: #cc4400;
    --color-brand-soft: #ffddcc;
    --color-brand-tint: #fff3ed;
    --color-text-base: #444444;
    --color-text: #343231;
    --color-text-muted: #4e4b49;
    --color-text-soft: #68717b;
    --color-neutral: #686462;
    --color-border: #cdcbca;
    --color-border-muted: #837e7b;
    --color-border-light: #e8e6e4;
    --color-gray: #9b9795;
    --color-gray-light: #9a9693;
    --color-bg-muted: #f6f6f6;
    --color-footer: #4e4b49;
    --color-footer-dark: #343231;
    --color-toc: #3d8ace;
    --color-success: #21a96b;
    --color-error: #d32f2f;
    --color-error-bg: #fff6f6;
    --color-error-border: #e57373;
    --color-white: #fff;
    --font-family: Selawik, "Segoe UI", Segoe, "Open Sans", Calibri, Tahoma, Geneva, sans-serif;
    --font-size-base: 13px;
    --header-height: 80px;
    --content-max: 1200px;
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 6px;
    --shadow-header: 0 0 6px 1px rgba(0, 0, 0, .2);
    --shadow-hero-badge: 0 5px 14px rgba(0, 0, 0, .18);
    --hero-overlay-desktop: linear-gradient(90deg, rgba(18, 24, 31, .76) 0%, rgba(18, 24, 31, .58) 40%, rgba(18, 24, 31, .12) 78%);
    --hero-overlay-mobile: linear-gradient(180deg, rgba(18, 24, 31, .68) 0%, rgba(18, 24, 31, .42) 100%);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text-base);
    min-width: 300px;
    background-color: var(--color-white);
}

.content-holder {
    width: calc(100% - 40px);
    max-width: var(--content-max);
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--header-height);
}

.header-logo {
    flex-shrink: 0;
    line-height: 0;
}

.header-logo img {
    display: block;
    height: 40px;
    width: auto;
    margin: 0;
    max-width: min(220px, 55vw);
    object-fit: contain;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 112px 0 112px;
    display: flex;
    align-items: center;
    background-color: var(--color-neutral);
    background-image: var(--hero-overlay-desktop), url("../img/hero-image.jpg");
    background-position: center, top;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-promo {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--color-brand);
}

.hero-promo-track {
    display: flex;
    width: max-content;
    animation: promo-slide 26s linear infinite;
}

.hero-promo-track span {
    flex: 0 0 auto;
    padding: 0 48px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes promo-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.hero-card {
    min-height: 360px;
    width: 320px;
    margin: 0;
    padding: 18px 18px 20px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--color-white);
    display: flex;
    flex-direction: column;
}

.hero-card h2 {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 18px;
    margin: 0 0 18px;
    color: var(--color-text-muted);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.hero-field {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-field span {
    position: absolute;
    top: 8px;
    left: 14px;
    z-index: 1;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    pointer-events: none;
}

.hero-field input,
.hero-field select {
    width: 100%;
    height: 58px;
    padding: 25px 14px 8px;
    border: 1px solid var(--color-neutral);
    border-radius: var(--radius-sm);
    background-color: var(--color-white);
    color: var(--color-text);
    font: inherit;
    font-size: 16px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.hero-field select {
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%234e4b49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: calc(100% - 14px) 31px;
    background-repeat: no-repeat;
    background-size: 14px 8px;
}

.hero-field input:focus,
.hero-field select:focus {
    border-color: var(--color-brand);
    outline: none;
}

.hero-field-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 12px;
    margin-top: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 15px;
    border: 0 solid transparent;
    border-bottom-width: 2px;
    border-radius: 3px;
    font-family: var(--font-family);
    font-size: 19px;
    font-weight: 700;
    line-height: 16px;
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: var(--color-brand);
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    background: var(--color-brand-dark);
}

.result-table .result-group--hidden {
    display: none;
}

.result-load-more {
    display: flex;
    justify-content: center;
    margin: 8px 0 24px;
}

.hero-button {
    display: flex;
    width: 100%;
    margin-top: 24px;
}

.hero-form-note {
    margin: 12px 0 0;
    color: var(--color-text-soft);
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.hero-content {
    position: relative;
    max-width: 640px;
    color: var(--color-white);
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(34px, 4.4vw, 46px);
    line-height: 1.22;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .01em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.hero-ratings {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-ratings img {
    display: block;
    max-height: 52px;
    max-width: 112px;
    padding: 4px;
    border-radius: 2px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-hero-badge);
}

.hero-benefits {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .5);
}

.hero-benefits-inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: center;
}

.hero-benefits p {
    position: relative;
    margin: 0;
    padding-left: 42px;
    color: var(--color-white);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .45);
}

.hero-benefits p::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 18px;
    height: 10px;
    border-left: 4px solid var(--color-success);
    border-bottom: 4px solid var(--color-success);
    transform: translateY(-65%) rotate(-45deg);
}

/* Desktop – größere Filterbox und größerer Hero-Content */
@media (min-width: 901px) {
    .hero-inner {
        grid-template-columns: 360px minmax(0, 1fr);
        gap: 50px;
    }

    .hero-card {
        width: 360px;
        min-height: 390px;
        padding: 22px 22px 24px;
    }

    .hero-card h2 {
        padding-bottom: 20px;
        margin-bottom: 20px;
        font-size: 24px;
    }

    .hero-field input,
    .hero-field select {
        height: 60px;
    }

    .hero-field select {
        background-position: calc(100% - 14px) 32px;
    }

    .hero-button {
        min-height: 48px;
        margin-top: 26px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero h1 {
        max-width: 700px;
        font-size: clamp(38px, 4.6vw, 50px);
    }

    .hero-ratings img {
        max-height: 56px;
        max-width: 120px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .content-holder {
        max-width: 620px;
    }

    .header-inner {
        justify-content: center;
    }

    .header-logo img {
        height: 30px;
    }

    .hero {
        min-height: 0;
        padding: 94px 0 0;
        display: block;
        text-align: center;
        background-image: var(--hero-overlay-mobile), url("../img/hero-image.jpg");
        background-position: center, center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-card {
        order: 2;
        max-width: 400px;
        min-height: auto;
        margin: 0 auto;
        padding: 26px 20px 30px;
    }

    .hero-content {
        min-height: auto;
        max-width: 620px;
        margin: 0 auto;
    }

    .hero h1 {
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(30px, 6vw, 40px);
        line-height: 1.25;
    }

    .hero-ratings {
        justify-content: center;
    }

    .hero-promo {
        height: 44px;
    }

    .hero-promo-track span {
        padding: 0 36px;
        font-size: 15px;
    }

    .hero-benefits {
        position: static;
        margin-top: 36px;
    }

    .hero-benefits-inner {
        min-height: auto;
        padding: 20px 0;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-benefits p {
        max-width: 380px;
        margin: 0 auto;
        text-align: left;
        font-size: 16px;
    }

}

/* Handy */
@media (max-width: 600px) {
    .content-holder {
        max-width: 420px;
    }

    .header-inner {
        height: 60px;
    }

    :root {
        --header-height: 60px;
    }

    .header-logo img {
        height: 20px;
    }

    .hero {
        padding: 78px 0 0;
        text-align: left;
    }

    .hero-promo {
        height: 40px;
    }

    .hero-promo-track {
        animation-duration: 22s;
    }

    .hero-promo-track span {
        padding: 0 28px;
        font-size: 14px;
    }

    .hero-card {
        width: 100%;
        padding: 22px 16px 26px;
    }

    .hero-field-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero h1 {
        margin-left: 0;
        margin-right: 0;
        font-size: 27px;
        line-height: 1.24;
    }

    .hero-ratings {
        justify-content: flex-start;
    }

    .hero-button {
        width: 100%;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ratings img {
        max-height: 44px;
        max-width: 96px;
    }

    .hero-benefits {
        margin-top: 30px;
    }

    .hero-benefits-inner {
        padding: 18px 0;
    }

    .hero-benefits p {
        max-width: none;
        margin: 0;
        padding-left: 34px;
        font-size: 15px;
    }

    .hero-benefits p::before {
        width: 15px;
        height: 8px;
        border-left-width: 3px;
        border-bottom-width: 3px;
    }
}

/* Article */
.article {
    padding: 48px 0 64px;
    background: var(--color-white);
    color: var(--color-text);
}

.article-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.article-toc {
    position: sticky;
    top: 96px;
    background: var(--color-white);
}

.article-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 12px 14px;
    background: var(--color-toc);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
}

.article-toc-nav {
    border: 1px solid var(--color-border-muted);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.article-toc-toggle {
    flex-shrink: 0;
    display: none;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.article-toc-toggle:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.article-toc-icon {
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.article-toc-icon--chevron {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath fill='%23fff' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath fill='%23fff' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
}

.article-toc-icon--close {
    display: none;
    position: relative;
    width: 14px;
    height: 14px;
    background: transparent;
}

.article-toc-icon--close::before,
.article-toc-icon--close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: currentColor;
}

.article-toc-icon--close::before {
    transform: rotate(45deg);
}

.article-toc-icon--close::after {
    transform: rotate(-45deg);
}

.article-toc.is-open .article-toc-icon--chevron {
    display: none;
}

.article-toc.is-open .article-toc-icon--close {
    display: block;
}

.article-toc-nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-toc-nav li {
    border-bottom: 1px solid var(--color-border);
}

.article-toc-nav li:last-child {
    border-bottom: none;
}

.article-toc-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
    transition: color .15s ease;
}

.article-toc-link:hover,
.article-toc-link.is-active,
.article-toc-link.is-active .article-toc-num {
    color: var(--color-brand);
}

.article-toc-num {
    flex-shrink: 0;
    min-width: 18px;
    color: var(--color-gray-light);
    font-weight: 600;
}

.article-main {
    min-width: 0;
}

.article-block {
    margin-bottom: 32px;
    scroll-margin-top: 100px;
}

.article-block h2 {
    margin: 0 0 16px;
    color: var(--color-text);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
}

.article-block p {
    margin: 0 0 14px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.55;
}

.article-block p:last-child {
    margin-bottom: 0;
}

.ratings-headline {
    text-align: center;
}

.ratings-component {
    display: grid;
    grid-template: repeat(2, auto) / 1fr 1fr auto;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px 16px;
    font-size: 13px;
    line-height: 1.54;
    color: var(--color-text);
    background-color: var(--color-bg-muted);
}

.rating-summary {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rating-body {
    min-height: 72px;
}

.rating-logo {
    flex-shrink: 0;
    line-height: 0;
}

.rating-seal {
    display: block;
    height: 46px;
    width: auto;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars {
    color: var(--color-brand);
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-value {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}

.rating-usps {
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.rating-awards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    grid-column: 3;
    grid-row: 1;
}

.rating-awards img {
    display: block;
    height: 46px;
    width: auto;
}

.rating-link {
    display: block;
    width: fit-content;
    grid-column: 1 / -1;
    margin: 0 0 0 auto;
    color: inherit;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 0.375em;
}

.article-faq h2 {
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-bottom: none;
    background: var(--color-white);
}

.faq-item:first-of-type {
    border-radius: 4px 4px 0 0;
}

.faq-item:last-of-type {
    border-bottom: 1px solid var(--color-border-light);
    border-radius: 0 0 4px 4px;
}

.faq-item summary {
    padding: 14px 40px 14px 16px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-item p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .article {
        padding: 32px 0 48px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .article-toc {
        position: static;
        top: auto;
    }

    .article-toc-header {
        border-radius: 6px 6px 0 0;
        cursor: pointer;
    }

    .article-toc-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article-toc:not(.is-open) .article-toc-header {
        border-radius: 6px;
    }

    .article-toc-nav {
        display: none;
        border-radius: 0 0 6px 6px;
    }

    .article-toc.is-open .article-toc-nav {
        display: block;
    }

    .article-block h2 {
        font-size: 22px;
    }

    .ratings-component {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 22px 20px 18px;
    }

    .rating-body {
        min-height: 0;
    }

    .rating-usps {
        white-space: normal;
    }

    .rating-awards {
        grid-column: unset;
        grid-row: unset;
        flex-wrap: wrap;
    }

    .rating-link {
        grid-column: unset;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .article {
        padding: 24px 0 40px;
    }

    .article-block {
        scroll-margin-top: 80px;
    }

    .ratings-component {
        padding: 20px 16px;
    }
}

/* Footer */

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

.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-footer {
    margin-top: 64px;
}

.page-footer a {
    color: var(--color-white);
    text-decoration: none;
    text-underline-offset: .375em;
}

.page-footer a:hover {
    text-decoration: underline;
    text-decoration-thickness: .125em;
}

.page-communication-footer {
    background: var(--color-brand);
    color: var(--color-white);
}

.page-communication-footer .content-holder {
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.page-communication-footer .newsletter {
    display: flex;
    width: 100%;
    color: var(--color-white);
    position: relative;
}

.page-communication-footer .newsletter-form {
    padding: 31px 0;
    width: 100%;
    font-size: 13px;
    line-height: 1.5384615385;
}

.newsletter-teaser {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4285714286;
    letter-spacing: -.2px;
    color: var(--color-white);
}

.input-holder {
    margin-bottom: 0;
}

.newsletter-signup-email {
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 0 15px;
    border: 1px solid var(--color-gray);
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-muted);
    background: var(--color-white);
}

.newsletter-signup-email::placeholder {
    color: var(--color-gray);
}

.consent-holder {
    margin: 10px 0;
}

.consent-label {
    display: inline-block;
    width: 100%;
    color: var(--color-white);
    font-size: 14px;
    cursor: pointer;
}

.consent-label p {
    margin: 0;
    padding-top: 3px;
}

.newsletter .components-text a {
    color: var(--color-white);
    text-decoration: underline;
    text-decoration-thickness: .078em;
}

.footer-checkbox {
    position: absolute;
    z-index: -10;
    opacity: 0;
}

.footer-checkbox + label {
    position: relative;
    display: inline-block;
    min-height: 18px;
    padding-left: 28px;
    cursor: pointer;
}

.footer-checkbox + label::before,
.footer-checkbox + label::after {
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 4px;
    left: 0;
    border-radius: 2px;
}

.footer-checkbox + label::before {
    content: "";
    border: 1px solid var(--color-gray);
    background: var(--color-white);
}

.footer-checkbox + label::after {
    content: "";
    clip-path: polygon(27.1% 37.5%, 16% 48.3%, 40.7% 77.1%, 84.2% 30.5%, 73.75% 19.3%, 41.45% 53.7%);
    background: transparent;
}

.footer-checkbox:checked + label::after {
    background-color: var(--color-brand);
}

.invert-controls .page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin-top: 10px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4285714286;
    letter-spacing: -.2px;
    color: var(--color-brand);
    background: var(--color-white);
    cursor: pointer;
    transition: color .35s, background-color .35s;
}

.invert-controls .page-button:hover {
    color: var(--color-brand-darker);
    background-color: var(--color-brand-soft);
}

.channel-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 24px;
    border-top: 1px solid var(--color-white);
}

.communication-apps,
.communication-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.communication-apps {
    gap: 16px;
}

.communication-label {
    flex-basis: 100%;
    display: block;
    margin: 20px auto 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4285714286;
    letter-spacing: -.2px;
}

.qr-code {
    display: none;
}

.communication-channels {
    border-top: 1px solid var(--color-white);
}

.communication-channels .communication-label {
    margin-top: 24px;
}

.communication-link-store {
    display: block;
    line-height: 0;
}

.communication-link-store img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 147px;
}

.communication-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 41px;
    height: 41px;
    margin-top: 16px;
    margin-right: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    transition: background-color .35s;
}

.communication-link img {
    display: block;
    width: 24px;
    height: 24px;
}

.page-footer a.communication-link:hover {
    background: var(--color-brand-tint);
    text-decoration: none;
}

.page-company-footer {
    padding-top: 20px;
    padding-bottom: 25px;
    background-color: var(--color-footer);
    font-size: 12px;
    text-align: center;
    color: var(--color-bg-muted);
}

.page-scroll-top {
    width: 100%;
    padding-bottom: 20px;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.page-scroll-top-link {
    color: inherit;
}

.page-scroll-top-link:hover {
    color: var(--color-brand);
    text-decoration: none;
}

.page-scroll-top-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-135deg) translateY(2px);
    vertical-align: middle;
}

.page-footer-logo {
    width: 100%;
    margin-bottom: 10px;
    padding-top: 25px;
    border-top: 1px solid var(--color-footer-dark);
}

.page-footer-logo-img {
    display: block;
    max-width: 140px;
    max-height: 32px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.page-company-about,
.page-company-press,
.page-company-partner-programm {
    width: 100%;
}

.page-company-links {
    display: inline-block;
}

.page-company-link {
    display: block;
    padding: 6px 0;
    line-height: 1.4;
}

.page-disclaimer-footer {
    padding: 18px 0 37px;
    background-color: var(--color-footer-dark);
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: var(--color-white);
}

.page-disclaimer-footer .content-holder {
    max-width: var(--content-max);
}

.page-disclaimer-link {
    display: inline;
    margin: 0 2px;
    padding: 0;
    color: inherit;
    font-size: inherit;
    line-height: 20px;
}

.page-disclaimer-link:hover {
    text-decoration: underline;
    text-decoration-thickness: .125em;
}

.page-disclaimer-text {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 20px;
}

.page-disclaimer-text p {
    display: inline;
    margin: 0;
}

.page-disclaimer-text a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: .078em;
}

@media (min-width: 740px) {
    .page-communication-footer .newsletter-form {
        padding: 20px 30px 30px;
    }

    .invert-controls .page-button {
        width: 48.5714285714%;
        margin-left: 0;
    }

    .page-communication-footer .content-holder {
        justify-content: flex-start;
    }

    .communication-apps,
    .communication-channels {
        flex-direction: row;
    }

    .page-company-footer {
        padding-top: 45px;
        padding-bottom: 55px;
        text-align: left;
    }

    .page-scroll-top {
        order: 2;
        width: 65.7142857143%;
        padding-top: 5px;
        padding-bottom: 0;
        text-align: right;
    }

    .page-footer-logo {
        order: 1;
        width: 31.4285714286%;
        margin-bottom: 55px;
        padding-top: 0;
        border-top: none;
    }

    .page-footer-logo-img {
        margin: 0;
    }

    .page-company-about {
        order: 3;
        width: 31.4285714286%;
    }

    .page-company-press {
        order: 4;
        width: 31.4285714286%;
    }

    .page-company-partner-programm {
        order: 5;
        width: 31.4285714286%;
    }

    .page-company-link {
        padding: 3px 0;
    }
}

@media (min-width: 980px) {
    .page-communication-footer {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .page-communication-footer .content-holder {
        flex-direction: row;
        justify-content: flex-start;
        gap: 44px;
    }

    .page-communication-footer .newsletter {
        width: 50%;
    }

    .page-communication-footer .newsletter-form {
        padding: 31px 0;
    }

    .invert-controls .page-button {
        width: 65.9420289855%;
    }

    .channel-group {
        align-self: start;
        align-items: flex-start;
        width: 50%;
        margin: 31px 0;
        border-top: unset;
    }

    .qr-code {
        display: block;
        grid-row: span 2;
        width: 96px;
        height: auto;
    }

    .communication-apps {
        display: grid;
        grid-template-rows: auto 44px 44px;
        grid-template-columns: 96px 1fr;
        gap: 8px 10px;
    }

    .communication-apps .communication-label {
        grid-column: span 2;
        margin: 0;
    }

    .communication-apps .qr-code {
        grid-column: 1;
        grid-row: 2 / span 2;
        align-self: start;
    }

    .communication-apps .communication-link-store:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        align-self: center;
    }

    .communication-apps .communication-link-store:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
        align-self: center;
    }

    .communication-link {
        margin-right: 32px;
    }

    .page-company-footer {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .page-scroll-top {
        order: 5;
        width: 14.8550724638%;
        padding-top: 25px;
        text-align: left;
        font-size: 11px;
    }

    .page-footer-logo {
        order: 1;
        width: 14.8550724638%;
        margin-bottom: 0;
        padding-top: 17px;
    }

    .page-company-about {
        order: 2;
        width: 23.3695652174%;
        padding-left: 4.347826087%;
    }

    .page-company-press {
        order: 3;
        width: 14.8550724638%;
    }

    .page-company-partner-programm {
        order: 4;
        width: 23.3695652174%;
        padding-left: 5.4347826087%;
    }
}

@media (min-width: 1260px) {
    .page-scroll-top {
        width: 14.0211640212%;
        font-size: 14px;
    }

    .page-footer-logo {
        width: 14.0211640212%;
        padding-top: 15px;
    }

    .page-footer-logo-img {
        max-width: 175px;
        max-height: 40px;
    }

    .page-company-about {
        width: 22.619047619%;
        padding-left: 4.7619047619%;
    }

    .page-company-press {
        width: 14.0211640212%;
    }

    .page-company-partner-programm {
        width: 22.619047619%;
        padding-left: 4.7619047619%;
    }

    .communication-label {
        flex-basis: auto;
        margin: 0 15px 0 0;
    }
}

@media (max-width: 979px) {
    .page-communication-footer {
        padding-bottom: 20px;
    }
}

@media (max-width: 739px) {
    .page-company-link {
        padding: 16px 0;
    }

    .communication-apps,
    .communication-channels {
        width: 100%;
    }
}

/* Vergleichsseite */
.integration-header {
    padding: 0 10px;
    margin-bottom: 30px;
}

.integration-sub-headline {
    font-weight: 400;
    color: #333;
    font-size: 16px;
    padding-top: 30px;
    margin: 0 0 10px;
    line-height: 1.2;
}

.integration-headline {
    font-weight: 400;
    font-size: 32px;
    color: #333;
    line-height: 1.3;
    margin: 0 0 10px;
}

.calculator-form {
    max-width: 920px;
    border: 1px solid #c9c9c9;
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 24px;
    background: var(--color-white);
}

.calculator-form__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: end;
}

.calc-field {
    position: relative;
    display: block;
    flex: 1 1 0;
    min-width: 0;
}

.calc-field--duration {
    flex: 0 1 90px;
}

.calc-field--period {
    flex: 0 1 130px;
}

.calc-field__label {
    position: absolute;
    top: 5px;
    left: 12px;
    z-index: 1;
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    pointer-events: none;
}

.calc-field__control {
    width: 100%;
    height: 44px;
    padding: 18px 12px 6px;
    border: 1px solid var(--color-neutral);
    border-radius: var(--radius-sm);
    background-color: var(--color-white);
    color: var(--color-text);
    font: inherit;
    font-size: 14px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.calc-field__control:focus {
    border-color: var(--color-brand);
    outline: none;
}

.application-form .calc-field__control.is-invalid,
.application-form .calc-field__control[aria-invalid="true"] {
    border-color: var(--color-error-border);
    background-color: var(--color-error-bg);
}

.application-form .calc-field__control.is-invalid:focus,
.application-form .calc-field__control[aria-invalid="true"]:focus {
    border-color: var(--color-error-border);
    box-shadow: 0 0 0 1px rgba(211, 47, 47, .12);
}

.application-form select.calc-field__control.is-invalid,
.application-form select.calc-field__control[aria-invalid="true"] {
    background-color: var(--color-error-bg);
}

.application-form .salutation-toggle.is-invalid,
.application-form .calc-field--salutation .salutation-toggle.is-invalid {
    border-color: var(--color-error-border);
    background-color: var(--color-error-bg);
}

.calc-field select.calc-field__control {
    appearance: none;
    padding-right: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%234e4b49' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: calc(100% - 12px) 24px;
    background-repeat: no-repeat;
    background-size: 12px 7px;
}

.calculator-form .calc-button {
    flex: 0 0 auto;
    min-width: 150px;
}

.calc-note {
    flex: 0 0 100%;
    margin: 0;
    color: var(--color-text-soft);
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .calc-field {
        flex: 1 1 calc(50% - 5px);
    }

    .calc-field--product {
        flex: 0 0 100%;
    }

    .calculator-form .calc-button {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .calc-field {
        flex: 0 0 100%;
    }

    /* Bei Festgeld: Laufzeit und Zeitspanne nebeneinander in einer Zeile */
    .calc-field--duration,
    .calc-field--period {
        flex: 1 1 calc(50% - 5px);
    }
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #c9c9c9;
    margin-bottom: 12px;
}

.result-table th {
    background: linear-gradient(#f7f7f7, #e0e0e0);
    height: 34px;
    padding: 2px 8px;
    border-bottom: 1px solid #c9c9c9;
    font-weight: normal;
    text-align: left;
    text-shadow: 0 1px 1px #dde9f7;
}

.result-table .column-number {
    width: 33px;
    text-align: center;
}

.result-table .column-provider { width: 205px; }
.result-table .column-costs { width: 180px; }
.result-table .column-remarks { width: 321px; }
.result-table .column-signup { width: 127px; }

.result-table .result-row > td {
    padding: 16px 8px;
    height: 132px;
    vertical-align: middle;
    border-bottom: 1px solid #c9c9c9;
}

.result-table .result-row.is-expanded > td {
    border-bottom: none;
}

.result-table .provider-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.result-table .product-name {
    order: -1;
    margin: 0 0 6px;
}

.result-table .provider-logo {
    display: block;
    width: 150px;
    height: auto;
}

@media (min-width: 769px) {
    .result-table .product-name {
        order: 1;
        margin: 6px 0 0;
    }
}

.result-table .costs-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.result-table .result-price-block {
    width: 140px;
}

.result-table .result-price,
.result-table .result-rate {
    margin: 0;
}

.result-table .result-rate {
    font-weight: bold;
    font-size: 20px;
    white-space: nowrap;
}

.result-table .result-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.result-table .price-divider {
    border: 0;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    padding: 0;
    background: linear-gradient(to right, transparent, #333 50%, transparent);
}

.result-table .result-details-toggle {
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 12px;
    color: #444;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
}

.result-table .on-mobile {
    display: none !important;
}

.result-table .on-desktop {
    display: block;
}

.result-table button.button.on-desktop {
    display: inline-block;
}

.result-table .result-details-row > td {
    padding: 0;
    height: auto;
    vertical-align: top;
    border-bottom: 1px solid #c9c9c9;
    background: #f7f7f7;
}

.result-table .result-details-panel {
    position: relative;
    padding: 16px 44px 16px 16px;
}

.result-table .result-details-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
}

.result-table .result-details-close:hover {
    color: #333;
}

.result-table .result-details-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.result-table .result-details-list li {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.result-table .result-details-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: normal;
    color: #666;
}

.result-table .result-details-value {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #222;
}

.result-table .remarks-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.result-table .remark {
    display: inline-block;
    padding: 3px;
}

.result-table .remark--highlight {
    border: 1px solid #c9c9c9;
    margin-bottom: 8px;
}

.result-table .remark--bold {
    font-weight: bold;
}

.result-table .deposit-flags {
    display: inline-flex;
    gap: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

.result-table .deposit-flag {
    display: inline-block;
    vertical-align: middle;
    cursor: help;
    line-height: 0;
}

.result-table .deposit-flag img {
    display: block;
    width: 18px;
    height: 11px;
}

@media (max-width: 768px) {
    .result-table {
        display: block;
    }

    .result-table thead {
        display: none;
    }

    .result-table tbody {
        display: block;
        border-bottom: 1px solid #c9c9c9;
    }

    .result-table .result-row {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .result-table .result-row > td {
        display: block;
        height: auto;
        padding: 12px 8px;
        border-bottom: none;
    }

    .result-table .column-number {
        flex: 0 0 28px;
        padding-top: 14px;
        text-align: left;
    }

    .result-table .column-provider {
        flex: 1 1 auto;
        min-width: 0;
    }

    .result-table .column-costs {
        flex: 0 0 auto;
    }

    .result-table .column-remarks,
    .result-table .column-signup {
        display: none !important;
    }

    .result-table .provider-cell {
        align-items: flex-start;
    }

    .result-table .product-name {
        order: -1;
        margin: 0 0 8px;
        font-size: 13px;
    }

    .result-table .provider-logo {
        width: 150px;
        height: auto;
    }

    .result-table .costs-cell {
        align-items: flex-end;
        text-align: right;
    }

    .result-table .result-price-block {
        width: auto;
    }

    .result-table .on-desktop {
        display: none !important;
    }

    .result-table .on-mobile {
        display: block !important;
    }

    .result-table button.button.on-mobile {
        display: inline-block !important;
        margin-top: 10px;
        font-size: 15px;
        min-height: 34px;
        padding: 8px 14px;
    }

    .result-table .result-details-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .result-table .result-details-list li {
        padding-bottom: 10px;
        border-bottom: 1px solid #e6e6e6;
    }

    .result-table .result-details-list li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .result-table .result-details-row {
        display: none;
        border-top: 1px solid #e0e0e0;
    }

    .result-table .result-details-row.is-open {
        display: block;
    }

    .result-table .result-details-row > td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
}

/* Antrags-Wizard */
.application-main {
    padding-top: 36px;
    padding-bottom: 56px;
}

/* Antrag erfolgreich */
.application-main--success .integration-sub-headline {
    padding-top: 0;
}

.application-success.calculator-form {
    margin-bottom: 0;
}

.application-success__lead {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text-soft);
}

.application-success .application-form__section-title {
    margin-top: 14px;
}

.application-success__list {
    margin: 0 0 4px;
    padding: 0 0 0 18px;
    list-style: disc;
}

.application-success__list li {
    margin-bottom: 8px;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-text-base);
}

.application-success__list li:last-child {
    margin-bottom: 0;
}

.application-success .application-form__btn-next {
    display: flex;
    width: 100%;
    min-width: 0;
}

.application-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brand-darker);
    text-decoration: none;
    transition: color .2s ease;
}

.application-back::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 2px;
    transition: transform .2s ease;
}

.application-back:hover {
    color: var(--color-brand);
}

.application-back:hover::before {
    transform: rotate(45deg) translateX(-2px);
}

.application-product {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 28px;
    align-items: center;
    max-width: 920px;
    margin-bottom: 20px;
    padding: 18px 20px;
    border: 1px solid #c9c9c9;
    border-radius: var(--radius-sm);
    background: var(--color-white);
}

.application-product__brand {
    display: flex;
    align-items: center;
    padding-right: 28px;
}

.application-product__logo {
    display: block;
    width: auto;
    max-width: 170px;
    height: auto;
}

.application-product__details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 0;
}

.application-product__detail {
    margin: 0;
    min-width: 0;
}

.application-product__term {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--color-text-soft);
    line-height: 1.2;
}

.application-product__value {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

.application-steps {
    max-width: 920px;
    margin-bottom: 16px;
    padding: 12px 14px 10px;
    border: 1px solid #c9c9c9;
    border-radius: var(--radius-sm);
    background: var(--color-white);
}

.application-steps__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.application-steps__item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 0 4px;
    text-align: center;
}

.application-steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12px;
    left: calc(50% + 14px);
    width: calc(100% - 28px);
    height: 2px;
    border-radius: 2px;
    background: var(--color-border-light);
    z-index: 0;
    transition: background-color .25s ease;
}

.application-steps__item.is-done:not(:last-child)::after {
    background: var(--color-success);
}

.application-steps__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.application-steps__num {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-text-muted);
    transition: opacity .2s ease;
}

.application-steps__label {
    display: block;
    max-width: 9em;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text-soft);
    transition: color .2s ease;
}

.application-steps__item.is-active .application-steps__marker {
    border-color: var(--color-brand);
    background: var(--color-brand);
    box-shadow: 0 0 0 3px var(--color-brand-soft);
}

.application-steps__item.is-active .application-steps__num {
    color: var(--color-white);
}

.application-steps__item.is-active .application-steps__label {
    color: var(--color-brand-darker);
    font-weight: 600;
}

.application-steps__item.is-done .application-steps__marker {
    border-color: var(--color-success);
    background: var(--color-success);
}

.application-steps__item.is-done .application-steps__num {
    opacity: 0;
}

.application-steps__item.is-done .application-steps__marker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 10px;
    margin-top: -7px;
    margin-left: -4px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.application-steps__item.is-done .application-steps__label {
    color: var(--color-text-muted);
}

.application-steps__item:not(.is-active):not(.is-done) .application-steps__marker {
    background: var(--color-bg-muted);
}

.application-steps__mobile {
    display: none;
}

.application-steps__mobile-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.application-steps__count {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.application-steps__active-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-brand-darker);
}

.application-steps__track {
    height: 4px;
    border-radius: 2px;
    background: var(--color-border-light);
    overflow: hidden;
}

.application-steps__track-fill {
    height: 100%;
    width: 25%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
    transition: width .3s ease;
}

.application-wizard {
    max-width: 920px;
    margin-bottom: 20px;
}

.application-form--review.calculator-form {
    padding: 16px 18px 18px;
}

.application-review__section {
    margin: 0;
    padding: 14px 0;
    border: 0;
    border-top: 1px solid var(--color-border-light);
    border-radius: 0;
    background: transparent;
}

.application-review__section:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.application-review__section:last-of-type {
    padding-bottom: 6px;
}

.application-review__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
}

.application-review__title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

.application-review__edit {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brand-darker);
    text-decoration: underline;
    cursor: pointer;
}

.application-review__edit:hover {
    color: var(--color-brand);
}

.application-review__list {
    display: grid;
    grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.35fr);
    gap: 6px 16px;
    margin: 0;
}

.application-review__row {
    display: contents;
}

.application-review__row dt {
    margin: 0;
    padding: 3px 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text-soft);
}

.application-review__row dd {
    margin: 0;
    padding: 3px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
    word-break: break-word;
}

.application-form {
    max-width: none;
}

.application-form.calculator-form {
    padding: 20px 22px 22px;
}

.application-form__section-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-text);
}

.application-form__section-title--group {
    grid-column: 1 / -1;
    margin: 10px 0 0;
}

.application-form__field-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-form__field-stack .calc-field {
    width: 100%;
    min-width: 0;
}

.salutation-toggle {
    display: inline-flex;
    margin-bottom: 14px;
    border: 1px solid var(--color-neutral);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-muted);
}

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

.salutation-toggle__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-muted);
    cursor: pointer;
    user-select: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.salutation-toggle__input:nth-of-type(2) + .salutation-toggle__option {
    border-left: 1px solid var(--color-neutral);
}

.salutation-toggle__input:checked + .salutation-toggle__option {
    background: var(--color-brand);
    color: var(--color-white);
}

.salutation-toggle__input:focus-visible + .salutation-toggle__option {
    outline: 2px solid var(--color-brand);
    outline-offset: -2px;
}

.hero-card .salutation-toggle {
    align-self: stretch;
    margin-bottom: 14px;
}

.hero-card .salutation-toggle__option {
    flex: 1;
    min-width: 0;
}

.calc-field--product {
    flex: 0 1 160px;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .calc-field--product {
        flex: 0 0 100%;
    }
}

.hero-field--tagesgeld {
    margin-top: 14px;
}

.hero-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 16px;
    border: 1px dashed var(--color-neutral);
    border-radius: var(--radius-sm);
    background-color: rgba(0, 0, 0, .02);
}

.hero-hint-icon {
    flex: 0 0 auto;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-success);
}

.hero-hint-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: translate(-50%, -65%) rotate(-45deg);
}

.hero-hint-text {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-field-row[hidden],
.hero-field--tagesgeld[hidden],
.calc-field[hidden] {
    display: none;
}

.application-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.application-form__grid + .application-form__grid {
    margin-top: 12px;
}

.application-form__grid > .calc-field {
    flex: unset;
    width: 100%;
    min-width: 0;
}

.application-form__grid > .application-form__row {
    grid-column: 1 / -1;
}

.application-form .calc-field--salutation {
    min-width: 0;
    align-self: end;
}

.application-form .calc-field--salutation .salutation-toggle {
    display: flex;
    width: 100%;
    height: 44px;
    margin-bottom: 0;
    border: 1px solid var(--color-neutral);
    border-radius: var(--radius-sm);
    background-color: var(--color-bg-muted);
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .03);
    overflow: hidden;
}

.application-form .calc-field--salutation .salutation-toggle__option {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.application-form .calc-field--salutation .salutation-toggle__input:checked + .salutation-toggle__option {
    color: var(--color-white);
}

.application-form__grid--single {
    grid-template-columns: 1fr;
}

.application-form__field--wide {
    grid-column: 1 / -1;
}

.application-form__row {
    display: grid;
    grid-template-columns: minmax(0, 2.4fr) minmax(88px, 0.5fr);
    gap: 12px;
}

.application-form__row--street {
    grid-template-columns: minmax(0, 2.6fr) minmax(96px, 0.55fr);
}

.application-form__row--city {
    grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.8fr);
}

.application-form__actions {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.application-form__actions--dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.application-form__btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}

.application-form__btn-back:hover {
    background: var(--color-bg-muted);
    border-color: var(--color-neutral);
}

.application-form .application-form__btn-next {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    white-space: normal;
}

.application-form__actions:not(.application-form__actions--dual) .application-form__btn-next {
    display: flex;
    width: 100%;
    font-size: 17px;
}

.application-form__actions--dual .application-form__btn-back,
.application-form__actions--dual .application-form__btn-next {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    white-space: normal;
}

.application-form input[type="date"].calc-field__control {
    padding-top: 18px;
}

.calc-field__optional {
    font-weight: 400;
    color: var(--color-text-soft);
    text-transform: none;
    letter-spacing: 0;
}

.application-form .calc-field__control--readonly,
.application-form .calc-field__control[readonly] {
    background-color: var(--color-bg-muted);
    color: var(--color-text);
    cursor: default;
}

@media (max-width: 720px) {
    .application-main {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .application-back {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .application-product {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 0 12px;
        margin-bottom: 12px;
        padding: 12px;
    }

    .application-product__brand {
        align-self: center;
        padding-right: 12px;
        border-right: 1px solid var(--color-border-light);
    }

    .application-product__logo {
        max-width: 76px;
        max-height: 34px;
        object-fit: contain;
        object-position: left center;
    }

    .application-product__details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
    }

    .application-product__term {
        margin-bottom: 2px;
        font-size: 10px;
        font-weight: 600;
        color: var(--color-text-muted);
    }

    .application-product__value {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.25;
        color: var(--color-text);
    }

    .application-steps {
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .application-steps__mobile {
        display: block;
    }

    .application-steps__list {
        display: none;
    }

    .application-form.calculator-form {
        padding: 16px;
    }

    .application-form__section-title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .application-form__section-title--group {
        margin-top: 8px;
    }

    .salutation-toggle {
        display: flex;
        width: 100%;
        margin-bottom: 0;
    }

    .salutation-toggle__option {
        flex: 1;
        min-width: 0;
    }

    .application-form__field-stack {
        gap: 10px;
    }

    .application-form__grid {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .application-form .calc-field--salutation {
        align-self: stretch;
    }

    .application-form__row,
    .application-form__row--street,
    .application-form__row--city {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .application-form__actions {
        margin-top: 20px;
        padding-top: 16px;
    }

    .application-form__actions--dual {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .application-form__actions--dual .application-form__btn-back,
    .application-form__actions--dual .application-form__btn-next {
        min-height: 42px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .application-form__actions:not(.application-form__actions--dual) .application-form__btn-next {
        min-height: 42px;
        font-size: 16px;
        padding: 8px 12px;
    }

    .application-review__section {
        padding: 12px 0;
    }

    .application-review__head {
        margin-bottom: 8px;
    }

    .application-review__list {
        grid-template-columns: minmax(104px, 0.85fr) minmax(0, 1.15fr);
        gap: 5px 12px;
    }

    .application-review__row dt {
        font-size: 11px;
        padding: 2px 0;
    }

    .application-review__row dd {
        font-size: 13px;
        padding: 2px 0;
    }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(104, 100, 98, 0.45);
}

.loading-overlay[hidden] {
    display: none;
}

body.is-loading {
    overflow: hidden;
}

.loading-overlay__spinner {
    position: relative;
    width: 56px;
    height: 56px;
}

.loading-overlay__spinner::before,
.loading-overlay__spinner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-sizing: border-box;
}

.loading-overlay__spinner::before {
    border: 3px solid rgba(255, 86, 0, 0.15);
}

.loading-overlay__spinner::after {
    border: 3px solid transparent;
    border-top-color: var(--color-brand);
    border-right-color: var(--color-brand);
    animation: loading-spin 0.85s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}
