html,
body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.landingpage-kunde {
    --kunde-primary: #52ac41;
    --kunde-secondary: #ffffff;
    --kunde-bg: #0d0d0d;
    --kunde-bg-alt: #111111;
    --kunde-bg-card: #191919;
    --kunde-text: #f4f4f4;
    --kunde-text-muted: #ffffff;
    --kunde-border: rgba(255, 255, 255, 0.08);
    --kunde-radius-sm: 8px;
    --kunde-radius-md: 18px;
    --kunde-radius-lg: 28px;
    --kunde-max: 1240px;
    color: var(--kunde-text);
    background: var(--kunde-bg);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes landingpage-kunde-popup-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

.landingpage-kunde img {
    display: block;
    max-width: 100%;
}

.landingpage-kunde a {
    color: inherit;
    text-decoration: none;
}

.landingpage-kunde__container {
    width: min(calc(100% - 10%), var(--kunde-max));
    margin: 0 auto;
}

.landingpage-kunde__previewbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(12, 12, 12, 0.95);
    border-bottom: 5px solid #ffffff;
    backdrop-filter: blur(18px);
}

.landingpage-kunde__status-popup {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.landingpage-kunde__status-popup[hidden] {
    display: none;
}

.landingpage-kunde__status-popup .confirm-modal__backdrop {
    background: rgba(12, 12, 12, 0.42);
    backdrop-filter: blur(6px);
    position: absolute;
    inset: 0;
}

.landingpage-kunde__status-popup .confirm-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100vw - 32px));
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(12, 12, 12, 0.96);
    color: #ffffff;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.landingpage-kunde__status-popup .confirm-modal__dialog h3,
.landingpage-kunde__status-popup .confirm-modal__dialog p {
    color: #ffffff;
}

.landingpage-kunde__status-popup .confirm-modal__dialog h3 {
    margin-bottom: 8px;
}

.landingpage-kunde__status-popup .confirm-modal__dialog p {
    margin-bottom: 0;
    line-height: 1.6;
}

.landingpage-kunde__status-popup.is-success .confirm-modal__dialog {
    border-color: rgba(255, 255, 255, 0.14);
}

.landingpage-kunde__status-popup.is-error .confirm-modal__dialog {
    border-color: rgba(186, 55, 55, 0.36);
}

.landingpage-kunde__status-popup.is-info .confirm-modal__dialog {
    border-color: rgba(255, 255, 255, 0.2);
}

.landingpage-kunde__status-popup-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--kunde-primary);
    font-size: 24px;
}

.landingpage-kunde__status-popup.is-error .landingpage-kunde__status-popup-icon {
    color: #ff9f9f;
}

.landingpage-kunde__status-popup-loader {
    width: 34px;
    height: 34px;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--kunde-primary);
    animation: landingpage-kunde-popup-spin 0.9s linear infinite;
}

.landingpage-kunde__status-popup.is-loading .landingpage-kunde__status-popup-icon {
    display: none;
}

.landingpage-kunde__status-popup:not(.is-loading) .landingpage-kunde__status-popup-loader {
    display: none;
}

.landingpage-kunde__status-popup-actions {
    justify-content: center;
    margin-top: 18px;
}

.landingpage-kunde--preview {
    padding-top: 72px;
}

.landingpage-kunde__previewtext {
    color: var(--kunde-text-muted);
    font-size: 14px;
}

.landingpage-kunde__previewactions {
    display: flex;
    gap: 10px;
}

.landingpage-kunde__media-modal[hidden] {
    display: none;
}

.landingpage-kunde__media-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.landingpage-kunde__media-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.72);
    backdrop-filter: blur(8px);
}

.landingpage-kunde__media-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    color: #0d0d0d;
    overflow: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.landingpage-kunde__media-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--kunde-primary);
    color: #0c1408;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
}

.landingpage-kunde__media-modal-header {
    margin-bottom: 16px;
    padding-right: 40px;
}

.landingpage-kunde__media-modal-header h2,
.landingpage-kunde__media-modal-header p {
    color: #0d0d0d;
}

.landingpage-kunde__media-modal-header h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--kunde-primary);
}

.landingpage-kunde__media-modal-header p {
    margin: 0;
    font-size: 16px;
}

.landingpage-kunde__media-modal-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.landingpage-kunde__media-modal .aura-btn {
    min-height: 42px;
    border: 1px solid rgba(13, 13, 13, 0.12);
    background: #ffffff;
    color: #0d0d0d;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.landingpage-kunde__media-modal .aura-btn--icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
}

.landingpage-kunde__media-modal .aura-btn-50 {
    min-width: 50px;
    padding: 10px 16px;
}

.landingpage-kunde__media-modal-tab {
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(13, 13, 13, 0.12);
    background: #ffffff;
    color: #0d0d0d;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
}

.landingpage-kunde__media-modal-tab,
.landingpage-kunde__media-modal .gallery-picker-folder-tabs .aura-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.landingpage-kunde__media-modal-tab i,
.landingpage-kunde__media-modal .gallery-picker-folder-tabs .aura-btn i {
    font-size: 15px;
    line-height: 1;
}

.landingpage-kunde__media-modal-tab.is-active,
.landingpage-kunde__media-modal .gallery-picker-folder-tabs .is-active,
.landingpage-kunde__media-modal .gallery-picker-folder-toggle.is-active {
    background: var(--kunde-primary);
    border-color: var(--kunde-primary);
    color: #0c1408;
}

.landingpage-kunde__media-modal .gallery-picker-folder-toggle {
    margin: 0 0 14px;
}

.landingpage-kunde__media-modal .gallery-picker-folder-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.landingpage-kunde__media-modal .gallery-picker-folder-tabs[hidden] {
    display: none !important;
}

.landingpage-kunde__media-modal-loading {
    margin-bottom: 16px;
    color: #50606f;
    font-size: 14px;
}

.landingpage-kunde__media-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.landingpage-kunde__media-modal-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.landingpage-kunde__media-modal-item[hidden] {
    display: none !important;
}

.landingpage-kunde__media-modal-item[data-media-type="video"] {
    aspect-ratio: 9 / 16;
    height: auto;
}

.landingpage-kunde__media-modal-item[data-media-type="video"] .gallery-picker-item__media {
    aspect-ratio: 9 / 16 !important;
    height: auto !important;
}

.landingpage-kunde__media-modal .gallery-picker-item__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    background: #f4efff;
}

.landingpage-kunde__media-modal .gallery-picker-item__media img,
.landingpage-kunde__media-modal .gallery-picker-item__media video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landingpage-kunde__media-modal-item[data-media-type="video"] .gallery-picker-item__media video {
    aspect-ratio: 9 / 16;
    background: #101820;
}

.landingpage-kunde__media-modal .gallery-picker-item__play {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.landingpage-kunde__media-modal .gallery-orientation-icon,
.landingpage-kunde__media-modal .gallery-audio-icon,
.landingpage-kunde__media-modal .gallery-subtitle-icon {
    position: absolute;
    bottom: 8px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.landingpage-kunde__media-modal .gallery-orientation-icon {
    right: 8px;
}
.landingpage-kunde__media-modal .gallery-audio-icon {
    right: 36px;
}
.landingpage-kunde__media-modal .gallery-subtitle-icon {
    right: 64px;
}

.landingpage-kunde__media-modal-item[data-media-type="video"] .gallery-orientation-icon {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    right: 8px !important;
    bottom: 8px !important;
    color: #ffffff !important;
    pointer-events: none !important;
    z-index: 80 !important;
}

.landingpage-kunde__media-modal .gallery-orientation-icon--horizontal i {
    transform: rotate(90deg);
}

.landingpage-kunde__media-modal-item--video {
    position: relative;
}

.landingpage-kunde__media-modal-item--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landingpage-kunde__media-modal-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.86);
    color: #0d0d0d;
    font-size: 16px;
    box-shadow: 0 6px 12px rgba(44, 26, 80, 0.14);
}

.landingpage-kunde__editor-button {
    border: 1px solid var(--kunde-border);
    background: transparent;
    color: var(--kunde-text);
    border-radius: 999px;
    padding: 10px 18px;
    font: inherit;
    cursor: pointer;
}

.landingpage-kunde__editor-button--primary {
    background: var(--kunde-primary);
    border-color: var(--kunde-primary);
    color: #091106;
    font-weight: 700;
}

.landingpage-kunde__nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(13, 13, 13, 0.92);
    border-bottom: 1px solid var(--kunde-border);
    backdrop-filter: blur(16px);
}

.landingpage-kunde__brand,
.landingpage-kunde__footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--kunde-primary);
}

.landingpage-kunde__navcta,
.landingpage-kunde__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 6px;
    background: var(--kunde-primary);
    color: #0c1408;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--kunde-primary);
}

.landingpage-kunde__cta--full {
    width: 100%;
}

.landingpage-kunde__hero {
    position: relative;
    min-height: clamp(600px, 80vh, 88vh);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.landingpage-kunde__hero-media-wrap {
    position: absolute;
    inset: 0;
}

.landingpage-kunde__hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.landingpage-kunde__hero-overlay {
    position: absolute;
    inset: 0;
}

.landingpage-kunde__hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 32px), var(--kunde-max));
    margin: auto;
    padding: 120px 0 96px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 720px;
}

.landingpage-kunde__eyebrow {
    display: block;
    font-size: clamp(10px, 4vw, 16px);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--kunde-primary);
    margin-bottom: 12px;
}

.landingpage-kunde__hero-title,
.landingpage-kunde__section h2,
.landingpage-kunde__offer-card h3,
.landingpage-kunde__overview-title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 500;
}

.landingpage-kunde__hero-title {
    font-size: clamp(40px, 12vw, 110px);
}

.landingpage-kunde__section h2 {
    font-size: clamp(38px, 5vw, 74px);
}

.landingpage-kunde__offer-card h3 {
    font-size: clamp(28px, 5vw, 44px);
}

.landingpage-kunde__overview-title {
    font-size: clamp(26px, 4vw, 38px);
}

.landingpage-kunde > .landingpage-kunde__overview-title {
    display: none;
}

.landingpage-kunde__problem-intro,
.landingpage-kunde__problem-copy {
    color: var(--kunde-text-muted);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
}

.landingpage-kunde__problem-section {
    background: #f1f1f1;
}

.landingpage-kunde__problem-header h2,
.landingpage-kunde__problem-intro,
.landingpage-kunde__problem-copy,
.landingpage-kunde__problem-panel {
    color: #0d0d0d;
}

.landingpage-kunde__problem-panel {
    max-width: 960px;
    margin: 0 auto;
}

.landingpage-kunde__solution-teaser {
    background: var(--kunde-bg-alt);
}

.landingpage-kunde__solution-teaser-header {
    margin-bottom: 28px;
}

.landingpage-kunde__solution-teaser-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.landingpage-kunde__top-offers-section {
    background: #f1f1f1;
    color: #0d0d0d;
}

.landingpage-kunde__top-offers-section h2,
.landingpage-kunde__top-offers-section h3,
.landingpage-kunde__top-offers-section .landingpage-kunde__subtitle,
.landingpage-kunde__top-offers-section .landingpage-kunde__textblock,
.landingpage-kunde__top-offers-section .landingpage-kunde__content-block,
.landingpage-kunde__top-offers-section .landingpage-kunde__checklist li {
    color: #0d0d0d;
}

.landingpage-kunde__top-offers-section .landingpage-kunde__subtitle,
.landingpage-kunde__top-offers-section .landingpage-kunde__checklist li {
    color: #0d0d0d;
}

.landingpage-kunde__top-offers-content {
    justify-content: center;
}

.landingpage-kunde__top-offers-list {
    margin-top: 10px;
}

.landingpage-kunde__top-offers-list li::before {
    background: color-mix(in srgb, var(--kunde-primary) 18%, transparent);
}

.landingpage-kunde__top-offers-image {
    max-width: 560px;
}

.landingpage-kunde__section#angebot .landingpage-kunde__two-col {
    grid-template-columns: minmax(0, 1fr);
}

.landingpage-kunde__section#angebot .landingpage-kunde__content-block {
    max-width: 860px;
    margin: 0 auto;
}

.landingpage-kunde__section--light .landingpage-kunde__section-header h2,
.landingpage-kunde__section--light .landingpage-kunde__section-header p,
.landingpage-kunde__section--light .landingpage-kunde__eyebrow,
.landingpage-kunde__section--light .landingpage-kunde__testimonial-card p,
.landingpage-kunde__section--light .landingpage-kunde__offer-card p,
.landingpage-kunde__section--light .landingpage-kunde__offer-copy {
    color: #0d0d0d;
}

#erfahrungen .landingpage-kunde__section-header .landingpage-kunde__eyebrow {
    color: var(--kunde-primary);
}

.landingpage-kunde__section--light .landingpage-kunde__testimonial-card,
.landingpage-kunde__section--light .landingpage-kunde__offer-card {
    background: #ffffff;
    border-color: rgba(13, 13, 13, 0.08);
}

#erfahrungen > .landingpage-kunde__container > .landingpage-kunde__offer-card {
    display: none;
}

.landingpage-kunde__hero-subline,
.landingpage-kunde__section-header p,
.landingpage-kunde__subtitle,
.landingpage-kunde__offer-card p,
.landingpage-kunde__offer-copy,
.landingpage-kunde__cta-panel p,
.landingpage-kunde__footer p {
    color: var(--kunde-text-muted);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
}

.landingpage-kunde__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.landingpage-kunde__cta-note {
    font-size: 13px;
    color: var(--kunde-text-muted);
}

.landingpage-kunde__countdown-band {
    background: var(--kunde-bg-card);
    border-bottom: 1px solid var(--kunde-border);
}

.landingpage-kunde__countdown-band-inner {
    padding-top: 12px;
    padding-bottom: 12px;
}

.landingpage-kunde__countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.landingpage-kunde__countdown-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.landingpage-kunde__countdown-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--kunde-primary);
}

.landingpage-kunde__countdown-edit {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--kunde-primary);
    border-radius: 999px;
    padding: 8px 14px;
    font: inherit;
    cursor: pointer;
}

.landingpage-kunde__countdown {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(66px, auto);
    gap: 8px;
    align-items: stretch;
}

.landingpage-kunde__countdown-box {
    min-width: clamp(40px, 9vw, 58px);
    padding: clamp(4px, 1.5vw, 6px) clamp(4px, 1.5vw, 8px);
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right:6px;
}

.landingpage-kunde__countdown-label {
    display: block;
    font-weight: 700;
    color: var(--kunde-primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 9px;
}

.landingpage-kunde__countdown-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 5vw, 34px);
    line-height: 1;
    color: var(--kunde-primary);
}


.landingpage-kunde__overview {
    padding: 10px 0;
    background: var(--kunde-bg-card);
    border-bottom: 1px solid var(--kunde-border);
}

.landingpage-kunde__overview-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(16px, 3vw, 20px) clamp(16px, 5vw, 72px);
    flex-wrap: wrap;
}

.landingpage-kunde__overview-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landingpage-kunde__overview-links a {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--kunde-border);
    color: var(--kunde-text-muted);
}

.landingpage-kunde__section {
    padding: clamp(56px, 10vw, 110px) 0;
}

.landingpage-kunde__section--alt {
    background: var(--kunde-bg-alt);
}

.landingpage-kunde__section--dark {
    background: #090909;
}

.landingpage-kunde__section--light {
    background: #f1f1f1;
}

.landingpage-kunde__section--cta {
    background:
        radial-gradient(circle at 50% 120%, rgba(82, 172, 65, 0.14) 0%, transparent 52%),
        var(--kunde-bg);
}

.landingpage-kunde__section--light.landingpage-kunde__section--cta {
    background: #f1f1f1;
}

.landingpage-kunde__section--light.landingpage-kunde__section--cta .landingpage-kunde__eyebrow,
.landingpage-kunde__section--light.landingpage-kunde__section--cta h2,
.landingpage-kunde__section--light.landingpage-kunde__section--cta p {
    color: #0d0d0d;
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-wrap {
    gap: 12px;
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-head {
    width: 100%;
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-kicker {
    color: #0d0d0d;
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-box {
    background: #ffffff;
    border: 1px solid rgba(13, 13, 13, 0.08);
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-label {
    color: rgba(13, 13, 13, 0.72);
}

.landingpage-kunde__cta-panel .landingpage-kunde__countdown-value {
    color: #0d0d0d;
}

.landingpage-kunde__section-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.landingpage-kunde__benefits,
.landingpage-kunde__testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.landingpage-kunde__benefit-card,
.landingpage-kunde__testimonial-card,
.landingpage-kunde__offer-card,
.landingpage-kunde__faq-item {
    background: var(--kunde-bg-card);
    border: 1px solid var(--kunde-border);
    border-radius: var(--kunde-radius-md);
}

.landingpage-kunde__benefit-card {
    padding: 28px;
    min-height: 220px;
}

.landingpage-kunde__benefit-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f1f1f1;
    color: var(--kunde-primary);
    font-weight: 700;
    font-size: 24px;
}

.landingpage-kunde__benefit-title {
    margin: 0 0 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 0.9;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--kunde-primary);
}

.landingpage-kunde__benefit-copy {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--kunde-text-muted);
}

.landingpage-kunde__two-col {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 32px;
    align-items: start;
}

.landingpage-kunde__content-block,
.landingpage-kunde__cta-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landingpage-kunde__visual-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landingpage-kunde__two-col > .landingpage-kunde__visual-card {
    display: none;
}

.landingpage-kunde__visual-card > .landingpage-kunde__offer-card {
    display: none;
}

.deal-detail__image {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    justify-self: center;
    overflow: hidden;
    border-radius: var(--kunde-radius-lg);
    background: #0d0d0d;
}

.landingpage-kunde__image-frame,
.landingpage-kunde__proof-image-frame {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    border-radius: var(--kunde-radius-lg);
}

.landingpage-kunde__proof-image-frame--gallery {
    max-width: 560px;
    margin-left: auto;
}

.landingpage-kunde__deal-image {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
}

.landingpage-kunde__side-image,
.landingpage-kunde__proof-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #0d0d0d;
}

.landingpage-kunde__deal-image-media {
    display: block;
    min-height: 0;
    aspect-ratio: 1030 / 1522;
    border-radius: var(--kunde-radius-lg);
    object-fit: cover;
}

.landingpage-kunde__offer-card {
    padding: 30px;
}

.landingpage-kunde__offer-copy {
    margin: 14px 0 22px;
}

.landingpage-kunde__checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
}

.landingpage-kunde__checklist li {
    position: relative;
    padding-left: 34px;
    color: var(--kunde-text);
}

.landingpage-kunde__checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--kunde-primary) 18%, transparent);
}

.landingpage-kunde__checklist li::after {
    content: '\2713';
    position: absolute;
    left: 5px;
    top: 0;
    color: var(--kunde-primary);
    font-weight: 700;
}

.landingpage-kunde__copy-panel {
    max-width: 960px;
    margin: 0 auto;
    padding: 34px;
}

.landingpage-kunde__proof-image-frame {
    width: 100%;
    max-width: 80%;
    aspect-ratio: 4 / 3;
    margin: 50px auto;
    margin-bottom: 30px;
    background: #0d0d0d;
}

.landingpage-kunde__testimonial-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.landingpage-kunde__testimonial-persona {
    display: flex;
    align-items: center;
    gap: 14px;
}

.landingpage-kunde__testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #eef2f5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.landingpage-kunde__deal-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #0d0d0d;
}

.landingpage-kunde__proof-image {
    position: absolute;
    inset: 0;
}

.landingpage-kunde__testimonial-avatar--editable {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.landingpage-kunde__testimonial-avatar--editable:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.landingpage-kunde__testimonial-avatar svg {
    display: block;
    width: 100%;
    height: 100%;
    flex: 0 0 auto;
}

.landingpage-kunde__testimonial-avatar-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.landingpage-kunde__testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #0d0d0d;
}

.landingpage-kunde__testimonial-name {
    font-size: 1rem;
    line-height: 1.2;
    color: #0d0d0d;
}

.landingpage-kunde__testimonial-age {
    font-size: 0.92rem;
    color: rgba(13, 13, 13, 0.78);
    opacity: 1;
}

.landingpage-kunde__stars {
    color: #f7c94b;
    letter-spacing: 0.18em;
}

.landingpage-kunde__objection-card {
    max-width: 860px;
    margin: 24px auto 30px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.landingpage-kunde__objection-card--before-image {
    display: none;
}

.landingpage-kunde__objection-card--after-image {
    margin: 50px auto 0;
    text-align: center;
}

.landingpage-kunde__objection-card h3 {
    margin: 10px 0 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3.8vw, 34px);
    line-height: 0.96;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #0d0d0d;
}

.landingpage-kunde__objection-card p {
    margin: 0;
    color: #0d0d0d;
}

.landingpage-kunde__objection-card--after-image .landingpage-kunde__cta {
    margin-top: 18px;
}

.landingpage-kunde__testimonial-label {
    color: var(--kunde-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landingpage-kunde__faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.landingpage-kunde__faq-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--kunde-text);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    font-size: 1.5rem;
}

.landingpage-kunde__faq-item.is-open .landingpage-kunde__faq-trigger {
    background: var(--kunde-primary);
    color: #101c0b;
    border-radius: var(--kunde-radius-md) var(--kunde-radius-md) 0 0;
    
}

.landingpage-kunde__faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.landingpage-kunde__faq-item.is-open .landingpage-kunde__faq-body {
    max-height: 420px;
}

.landingpage-kunde__faq-body-inner {
    padding: 5px 24px 24px;
    color: var(--kunde-text-muted);
}

.landingpage-kunde__faq-body-inner[contenteditable="true"] {
    cursor: text;
    user-select: text;
    -webkit-user-modify: read-write-plaintext-only;
    min-height: 1.5em;
    border: 1px dashed rgba(13, 13, 13, 0.28);
    border-radius: 6px;
    outline: none;
}

.landingpage-kunde__faq-body-inner[contenteditable="true"]:focus {
    border-color: var(--kunde-primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.03);
}

.landingpage-kunde__faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--kunde-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--kunde-primary);
}

.landingpage-kunde__faq-icon-close {
    display: none;
}

.landingpage-kunde__faq-item.is-open .landingpage-kunde__faq-icon-plus {
    display: none;
}

.landingpage-kunde__faq-item.is-open .landingpage-kunde__faq-icon-close {
    display: inline-block;
}

.landingpage-kunde__cta-panel {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.landingpage-kunde__footer {
    padding: 32px 24px 40px;
    border-top: 1px solid var(--kunde-border);
    background: var(--kunde-bg);
}

.landingpage-kunde__footer-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(220px, auto) minmax(140px, auto);
    justify-content: center;
    align-items: end;
    gap: 20px 1rem;
}

.landingpage-kunde__footer-logo-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.landingpage-kunde__footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-width: 420px;
    text-align: center;
}

.landingpage-kunde__footer-studio-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--kunde-text);
    margin-bottom: 10px;
}

.landingpage-kunde__footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.landingpage-kunde__footer-logo {
    display: block;
    max-width: 220px;
    width: auto;
    max-height: 78px;
    object-fit: contain;
}

.landingpage-kunde__footer-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.landingpage-kunde__footer-address p {
    margin: 0;
    color: var(--kunde-text-muted);
    font-size: 14px;
}

.landingpage-kunde__footer-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    align-self: end;
    gap: 10px;
}

.landingpage-kunde__footer-links a,
.landingpage-kunde__footer-meta {
    color: var(--kunde-text-muted);
    text-decoration: none;
    font-size: 14px;
}

.landingpage-kunde__footer-links a:hover {
    color: var(--kunde-primary);
}

.landingpage-kunde__footer-meta {
    width: min(1120px, calc(100% - 32px));
    margin: 18px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(22, 30, 19, 0.08);
    text-align: center;
}

@media (max-width: 720px) {
    .landingpage-kunde__footer-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        justify-content: center;
        align-items: center;
    }

    .landingpage-kunde__footer-logo-col,
    .landingpage-kunde__footer-info,
    .landingpage-kunde__footer-links {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.landingpage-kunde__image-edit {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    border: 0;
    background: rgba(12, 12, 12, 0.86);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 991px) {
    .landingpage-kunde__two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .landingpage-kunde__previewbar,
    .landingpage-kunde__nav,
    .landingpage-kunde__overview-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .landingpage-kunde__previewactions,
    .landingpage-kunde__overview-links {
        width: 100%;
    }

    .landingpage-kunde__editor-button,
    .landingpage-kunde__navcta,
    .landingpage-kunde__cta {
        width: 100%;
    }

    .landingpage-kunde__hero-content {
        padding-top: 160px;
    }

    .landingpage-kunde__countdown-band-inner {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .landingpage-kunde__countdown-wrap {
        gap: 14px;
    }

    .landingpage-kunde__countdown-head {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .landingpage-kunde__countdown {
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-flow: row;
        grid-auto-columns: auto;
        gap: 6px;
    }

    .landingpage-kunde__countdown-box {
        min-height: 68px;
        padding: 8px 6px 7px;
    }

    .landingpage-kunde__countdown-value {
        font-size: clamp(28px, 9vw, 38px);
        margin-bottom: 4px;
    }

    .landingpage-kunde__countdown-kicker {
        text-align: center;
    }

    .landingpage-kunde__benefit-card,
    .landingpage-kunde__offer-card,
    .landingpage-kunde__copy-panel,
    .landingpage-kunde__testimonial-card {
        padding: 22px;
    }
}
