/* Landing Page Specific Styles */

/* Energieversum Color Scheme */
:root {
    --ev-primary: #00D4FF; /* Cyan/Teal */
    --ev-secondary: #7B68EE; /* Medium Blue-Purple */
    --ev-accent: #9370DB; /* Purple */
    --ev-dark: #2C3E50;
    --ev-light: #F8F9FA;
}

/* Navigation */
.landing-nav {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    padding: 1rem 0;
}

.landing-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--ev-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--ev-primary);
}

/* Statistics Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--ev-primary) 0%, var(--ev-accent) 100%);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
}

.stats-text {
    font-size: 0.9rem;
    margin: 0;
}

.stats-number {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Hero Section */
.landing-hero {
    background: var(--white);
    padding: 3rem 0 4rem;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.landing-hero .container {
    background: var(--white);
}

.landing-content {
    display: flex;
    justify-content: center;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    line-height: 1.2;
}

.landing-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.6;
    text-align: center;
}

.landing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

/* Zweites Kontaktformular unter Partner-Bereich (Startseiten-Layout in Landing-Kartenoptik) */
.landing-bottom-kontakt {
    background: var(--white);
    padding: 2.5rem 0 4rem;
    border-top: 1px solid #e8ecf0;
}

.landing-bottom-kontakt__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.landing-bottom-kontakt__subtitle {
    text-align: center;
    color: var(--text-light);
    margin: 0 0 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Primär-CTA wie Header / Multi-Step (#972C86) */
.landing-bottom-kontakt .btn.btn-primary {
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #972c86 !important;
    color: #fff !important;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 800;
    padding: var(--btn-cta-padding-y) var(--btn-cta-padding-x-large);
    min-height: var(--btn-cta-min-height);
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
    box-shadow: none;
}

.landing-bottom-kontakt .btn.btn-primary:hover {
    background: #7a246f !important;
    color: #fff !important;
}

/* Form Card */
.landing-form-wrapper {
    width: 100%;
    max-width: 700px;
}

.landing-form-card {
    background: transparent;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: none;
    width: 100%;
    border: none;
}

/* Oberkante der Formular-Karte: Marken-Lila (Landing + Kontakt) */
.landing-hero .landing-form-card {
    border-top: 4px solid #972c86;
    box-sizing: border-box;
}

/* /angebot: Teaser Zur Kurz-Anfrage mit Marcel (über Multistep) */
.landing-form-card > .angebot-marcel-teaser {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin: 0 0 1.5rem;
    padding: 0.75rem 0.875rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 48, 135, 0.12);
    background: linear-gradient(
        165deg,
        rgba(243, 247, 251, 0.95) 0%,
        #fff 50%,
        rgba(151, 44, 134, 0.04) 100%
    );
    text-decoration: none;
    color: inherit;
    min-height: 3.75rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.landing-form-card > .angebot-marcel-teaser:hover {
    border-color: rgba(151, 44, 134, 0.35);
    box-shadow: 0 8px 24px rgba(0, 48, 135, 0.1);
}

.landing-form-card > .angebot-marcel-teaser:focus-visible {
    outline: 3px solid #ffb300;
    outline-offset: 2px;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-photo {
    flex-shrink: 0;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, #003087, #972c86 52%, #ffb300);
    box-shadow: 0 6px 16px rgba(0, 48, 135, 0.16);
    overflow: hidden;
    line-height: 0;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-img {
    display: block;
    width: 4.25rem;
    height: 5rem;
    object-fit: cover;
    object-position: center top;
    border-radius: 9px;
    border: 2px solid #fff;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-copy {
    flex: 1 1 10rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-head {
    display: block;
    font-family: inherit;
    font-size: clamp(0.88rem, 2.9vw, 0.96rem);
    font-weight: 700;
    line-height: 1.35;
    color: #972c86;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-sub {
    display: block;
    font-family: inherit;
    font-size: clamp(0.84rem, 2.6vw, 0.925rem);
    font-weight: 600;
    line-height: 1.38;
    color: #003087;
    word-break: normal;
    overflow-wrap: anywhere;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-more {
    flex-shrink: 0;
    margin-left: auto;
    align-self: center;
    font-size: clamp(0.8rem, 2.6vw, 0.875rem);
    font-weight: 700;
    color: #972c86;
    white-space: nowrap;
}

.landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-chev {
    margin-inline-start: 0.125rem;
    font-weight: 800;
}

@media (max-width: 400px) {
    .landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-more {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: -0.15rem;
        padding-top: 0.35rem;
        border-top: 1px dashed rgba(0, 48, 135, 0.14);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .landing-form-card > .angebot-marcel-teaser {
        margin-bottom: 1.35rem;
        padding: 0.6875rem 0.8125rem;
        gap: 0.6875rem 0.875rem;
    }

    .landing-form-card > .angebot-marcel-teaser .angebot-marcel-teaser-img {
        width: 3.875rem;
        height: 4.6875rem;
    }
}

/*
 * Obere Leiste: Wrapper klebt; Fortschritt liegt unter <header>, nicht im Header
 */
.lp-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: none;
}

.lp-sticky-header {
    background: #fff;
}

/* Schatten: styles.css → .lp-sticky-header .navbar */
.lp-sticky-header .navbar {
    position: relative;
    top: auto;
}

.lp-scroll-progress {
    --scroll-pct: 0%;
    display: block;
    width: 100%;
    height: 3px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.lp-scroll-progress__fill {
    height: 100%;
    width: var(--scroll-pct, 0%);
    max-width: 100%;
    background: linear-gradient(90deg, #ffb300 0%, #ffc53d 100%);
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* Progress Bar (Legacy: nur falls noch in alter Karte verwendet) */
.form-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e8ecf0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffb300 0%, #ffc53d 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Multi-Step Form */
.multistep-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.email-note {
    background: #ffffff;
    border: 1px solid rgba(0, 48, 135, 0.24);
    border-left: 3px solid #972c86;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #000000;
}

.email-note strong {
    color: #972c86;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-group-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.radio-group-inline .radio-option {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 0.5px solid #d0d0d0;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.radio-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.radio-icon img {
    width: 1.75rem;
    height: 1.75rem;
    display: block;
    object-fit: contain;
}

.radio-icon:has(img) {
    font-size: 0;
    line-height: 0;
}

.radio-option:hover .radio-icon {
    transform: scale(1.1);
}

.radio-option:has(input[type="radio"]:checked) .radio-icon {
    transform: scale(1.15);
}

.radio-option:hover {
    border-color: rgba(151, 44, 134, 0.45);
    background: rgba(151, 44, 134, 0.05);
}

.radio-option:hover .radio-label {
    color: #972c86;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.radio-option input[type="radio"]:checked + .radio-label {
    color: #972c86;
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #972c86;
    background: rgba(151, 44, 134, 0.08);
    border-width: 0.5px;
}

.radio-label {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.5;
    transition: color 0.3s;
    font-weight: 500;
}

.radio-label small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 400;
}

/* PLZ Input */
.plz-input {
    border-width: 1px !important;
    font-size: 1.05rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.06em;
    min-height: 2.875rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.landing-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.landing-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

/* Kein doppelter Abstand: styles.css setzt .form-group label { margin-bottom } — hier nur gap nutzen */
.landing-form .form-group label {
    margin: 0;
}

.landing-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Explizit .form-group: schlägt styles.css .form-group input (2px) */
.landing-form .form-group input:not([type="checkbox"]):not([type="radio"]),
.landing-form .form-group select,
.landing-form .form-group textarea,
.landing-form input:not([type="checkbox"]):not([type="radio"]),
.landing-form select {
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body), sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    min-height: 3.125rem;
    line-height: 1.35;
}

.landing-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body), sans-serif;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.35;
    min-height: 6rem;
}

.landing-form input:focus,
.landing-form select:focus,
.landing-form textarea:focus {
    outline: none;
    border-color: #972c86;
    box-shadow: none;
}

.landing-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
    row-gap: 1rem;
    align-items: start;
}

/*
 * Zweispaltige Zeilen: gleiche Label-Höhe, damit die Eingabefelder auf einer Linie sitzen
 * (sonst wirkt der Abstand Label→Feld bei kurzen vs. längeren Labels unterschiedlich).
 */
.landing-form .form-row .form-group > label {
    min-height: 2.75rem;
    display: flex;
    align-items: flex-end;
    line-height: 1.3;
}

.landing-form .checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.landing-form .checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.landing-form .checkbox label {
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.5;
}

.landing-form .checkbox label a {
    color: var(--ev-primary);
    text-decoration: underline;
}

/* Desktop: Abstand zwischen E-Mail/Telefon-Zeile und DSGVO-Checkbox (Schritt 11) */
@media (min-width: 769px) {
    .landing-form .form-group.checkbox {
        margin-top: 1.75rem;
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid transparent;
}

.btn-back,
.btn-next,
.btn-submit {
    padding: var(--btn-cta-padding-y) var(--btn-cta-padding-x);
    min-height: var(--btn-cta-min-height);
    box-sizing: border-box;
    border-radius: var(--btn-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back {
    background: var(--white);
    color: var(--text-dark);
    /* Wie Radio-Karten (0,5–1px); 2px wirkte zu schwer */
    border: 1px solid #e0e0e0;
}

.btn-back:hover {
    border-color: #972c86;
    color: #972c86;
}

.btn-next,
.btn-submit {
    background: #972c86;
    color: var(--white);
}

.btn-next:hover,
.btn-submit:hover {
    background: #7a246f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(0);
}

.btn-landing-submit {
    background: #972c86;
    color: var(--white);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-cta-padding-y) var(--btn-cta-padding-x-large);
    min-height: var(--btn-cta-min-height);
    box-sizing: border-box;
    border-radius: var(--btn-radius);
    font-size: var(--btn-cta-font-size-large);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
    width: 100%;
}

.btn-landing-submit:hover {
    background: #7a246f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.btn-landing-submit:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Partners Section */
.landing-partners {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.partners-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-img {
    max-width: 200px;
    height: auto;
    max-height: 80px;
}

/* Info Section */
.landing-info {
    background: var(--bg-light);
    padding: 4rem 0;
}

.info-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.landing-footer {
    background: #2a2a2a;
    color: var(--white);
    padding: 3rem 0 2rem;
}

footer#site-footer.footer {
    background: #2a2a2a !important;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Success/Error Messages */
.form-success,
.form-error {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 968px) {
    .landing-hero .container {
        min-width: 0;
    }

    .landing-content {
        max-width: 100%;
        min-width: 0;
    }

    .landing-form-wrapper {
        min-width: 0;
        max-width: 100%;
    }

    .landing-form-card {
        padding: 2rem;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 2rem 0 3rem;
    }

    .landing-title {
        font-size: 1.75rem;
    }

    /* Schritt-Inhalt: einheitlicher vertikaler Rhythmus (kein Margin-Collapse) */
    .form-step.active {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .form-step.active > .step-title,
    .form-step.active > .step-description {
        margin-bottom: 0;
    }

    /* lp-main überschreibt .step-title margin – hier für gleichen Schritt-Rhythmus zurücksetzen */
    body.lp-main .landing-form .form-step.active > .step-title {
        margin-bottom: 0;
    }

    .landing-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }

    .landing-form .form-row .form-group {
        gap: 0.5rem;
        width: 100%;
    }

    .landing-form .form-row .form-group > label {
        min-height: unset !important;
        min-height: auto;
        display: block;
        line-height: 1.35;
    }

    .landing-form .form-row .form-group > input,
    .landing-form .form-row .form-group > select {
        width: 100%;
        max-width: 100%;
    }

    .landing-form-card {
        padding: 1.5rem;
        overflow-x: hidden;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stats-banner {
        padding: 0.5rem 0;
    }

    .stats-text {
        font-size: 0.85rem;
    }

    .stats-number {
        font-size: 1rem;
    }

    .partners-logos {
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .radio-option {
        padding: 0.875rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-back,
    .btn-next,
    .btn-submit {
        width: 100%;
    }

    .radio-group-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Statische Dankeseite (nach gelungenem Anfrage-Formular) */
body.page-danke .danke-hero {
    padding: 2.5rem 0 3rem;
}

body.page-danke .danke-card {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    border-top: 4px solid #972c86;
    box-sizing: border-box;
}

body.page-danke .danke-title {
    font-size: 1.75rem;
    line-height: 1.3;
    color: #000;
    margin: 0 0 1rem;
}

body.page-danke .danke-lead,
body.page-danke .danke-hint {
    line-height: 1.6;
    color: #000;
    margin: 0 0 1rem;
}

body.page-danke .danke-hint {
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 1.75rem;
}

body.page-danke .danke-card strong {
    color: #000;
    font-weight: 700;
}

body.page-danke .danke-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
    margin: 0;
}

@media (max-width: 768px) {
    body.page-danke .danke-title {
        font-size: 1.4rem;
    }

    body.page-danke .danke-card {
        padding: 1.75rem 1.25rem;
    }

    body.page-danke .danke-actions {
        flex-direction: column;
    }

    body.page-danke .danke-actions .btn {
        width: 100%;
    }
}
