/* ==================================================
   LUMIO+ VERTRAGSSTRECKE
================================================== */

.lumio-contract-form {
     width: 100%;
    max-width: none;
    margin: 0;
    padding: 60px 70px;
    box-sizing: border-box;
}

.lumio-contract-form #lumio-vertragsformular {
    width: 100%;
    max-width: 100%;
    margin: 0;
	padding: 30px;
}

@media (max-width: 991px) {
    .lumio-contract-form #lumio-vertragsformular {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .lumio-contract-form #lumio-vertragsformular {
        padding: 25px 20px;
    }
}


/* Fortschrittsanzeige */

.lumio-progress {
    display: flex;
    align-items: flex-start;
    margin-bottom: 65px;
}

.lumio-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    position: relative;
}

.lumio-progress-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f3f3;
    color: #717580;

    font-size: 15px;
    font-weight: 600;

    transition: all .3s ease;
}

.lumio-progress-item.active .lumio-progress-number {
    background: var(--base-color);
    color: #fff;
}

.lumio-progress-label {
    margin-top: 9px;
    font-size: 13px;
    line-height: 18px;
    color: #717580;
    white-space: nowrap;
}

.lumio-progress-item.active .lumio-progress-label {
    color: #232323;
    font-weight: 600;
}

.lumio-progress-line {
    height: 1px;
    background: #e4e4e4;
    flex: 1;
    margin-top: 22px;
}


/* Formular */

.lumio-field {
    margin-bottom: 30px;
}

.lumio-field label {
    display: block;
    color: #232323;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lumio-field input,
.lumio-field select,
.lumio-field textarea {
    width: 100%;
    height: 56px;

    padding: 0 18px;
    margin: 0;

    background: #fff;

    border: 1px solid #e4e4e4;
    border-radius: 6px;

    color: #232323;
    font-family: var(--primary-font);
    font-size: 15px;

    transition: border-color .2s ease,
                box-shadow .2s ease;
}

.lumio-field input:focus,
.lumio-field select:focus,
.lumio-field textarea:focus {
    border-color: var(--base-color);
    box-shadow: 0 0 0 3px rgba(41, 70, 243, .08);
    outline: none;
}

.lumio-field input::placeholder {
    color: #a8a8a8;
}

.lumio-field-hint {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #8a8a8a;
    margin-top: 7px;
}


/* Navigation */

.lumio-form-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #eeeeee;

    margin-top: 45px;
    padding-top: 30px;
}

.lumio-required {
    font-size: 12px;
    color: #8a8a8a;
}

.lumio-form-navigation .btn {
    width: auto;
    min-width: 170px;
    margin: 0;
}


/* Steps */

.lumio-form-step {
    display: none;
}

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


/* Tablet */

@media (max-width: 991px) {

    .lumio-contract-form {
        padding: 50px 40px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .lumio-contract-form {
        padding: 35px 22px;
    }

    .lumio-progress {
        margin-bottom: 45px;
    }

    .lumio-progress-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .lumio-progress-line {
        margin-top: 18px;
    }

    .lumio-progress-item {
        min-width: 45px;
    }

    .lumio-progress-label {
        font-size: 10px;
    }

    .lumio-form-navigation {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 15px;
    }

    .lumio-form-navigation .btn {
        width: 100%;
    }

    .lumio-required {
        text-align: center;
    }

}

/* Lieferbeginn */

.lumio-delivery-start {
    margin-top: 15px;
    padding: 30px 35px;
    background: #f7f8fa;
    border-radius: 14px;
}

.lumio-delivery-start-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.lumio-delivery-start-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffd700;

    color: #232323;
    font-size: 20px;
}

.lumio-delivery-start-head h4 {
    margin: 0 0 3px;
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    color: #232323;
}

.lumio-delivery-start-head p {
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    color: #7a7d85;
}

.lumio-delivery-date {
    max-width: 500px;
}


/* Mobile */

@media (max-width: 767px) {

    /* Graue Lieferbeginn-Box */
    .lumio-delivery-start {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 24px 20px;
        overflow: hidden;
    }

    /* Icon + Text */
    .lumio-delivery-start-head {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .lumio-delivery-start-head > div:last-child {
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    .lumio-delivery-start-head h4,
    .lumio-delivery-start-head p {
        text-align: left;
    }

    /* NUR das Datumsfeld innerhalb der grauen Box */
    .lumio-delivery-date {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .lumio-delivery-date label {
        display: block;
        width: 100%;
        text-align: left;
    }

    .lumio-delivery-date input {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
}

@media (max-width: 767px) {

    /* Formular-Rows mobil exakt innerhalb des Containers halten */
    .lumio-contract-form .lumio-form-step > .row {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Bootstrap-Spalten ohne zusätzliches seitliches Gutter */
    .lumio-contract-form .lumio-form-step > .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

/* ==================================================
   SCHRITT 2 – TARIF & VERTRAG
================================================== */


/* ==================================================
   TARIFKARTE
================================================== */

.lumio-tariff-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    overflow: hidden;

    margin-bottom: 20px;

    box-shadow: 0 12px 35px rgba(35, 35, 35, .05);
}


/* Kopf */

.lumio-tariff-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    padding: 32px 34px 28px;
}


.lumio-tariff-kicker,
.lumio-section-label {
    display: block;

    color: var(--base-color);

    font-size: 11px;
    line-height: 16px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 7px;
}


.lumio-tariff-title h4 {
    color: #232323;

    font-size: 27px;
    line-height: 34px;
    font-weight: 700;

    margin: 0 0 3px;
}


.lumio-tariff-title p {
    color: #717580;

    font-size: 14px;
    line-height: 22px;

    margin: 0;
}


/* Neukundenvorteil */

.lumio-tariff-offer {
    flex: 0 0 auto;

    max-width: 220px;

    background: #ffd700;
    color: #232323;

    border-radius: 10px;

    padding: 12px 17px;
}


.lumio-tariff-offer span {
    display: block;

    font-size: 10px;
    line-height: 15px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .6px;

    margin-bottom: 2px;
}


.lumio-tariff-offer strong {
    display: block;

    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
}


/* ==================================================
   PREISE
================================================== */

.lumio-tariff-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding: 5px 34px 32px;
}


.lumio-price-item {
    position: relative;
}


.lumio-price-item:first-child {
    border-right: 1px solid #eceef1;
}


.lumio-price-label {
    display: block;

    color: #717580;

    font-size: 12px;
    line-height: 18px;

    margin-bottom: 4px;
}


.lumio-price {
    display: flex;
    align-items: baseline;

    gap: 7px;
}


.lumio-price strong {
    color: #232323;

    font-size: 36px;
    line-height: 42px;
    font-weight: 700;

    letter-spacing: -1.2px;
}


.lumio-price span {
    color: #232323;

    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
}


/* ==================================================
   VERTRAGSLAUFZEIT
================================================== */

.lumio-tariff-meta {
    display: flex;
    align-items: stretch;

    padding: 18px 34px;

    background: #f7f8fa;

    border-top: 1px solid #eceef1;
}


.lumio-meta-item {
    display: flex;
    align-items: center;

    flex: 1;

    gap: 12px;
}


.lumio-meta-item i {
    color: var(--base-color);

    font-size: 17px;
}


.lumio-meta-item span {
    display: block;

    color: #8a8d94;

    font-size: 11px;
    line-height: 16px;
}


.lumio-meta-item strong {
    display: block;

    color: #232323;

    font-size: 13px;
    line-height: 19px;
    font-weight: 600;
}


.lumio-meta-divider {
    width: 1px;

    background: #dedfe2;

    margin: 0 30px;
}


/* ==================================================
   GUT ZU WISSEN
================================================== */

.lumio-supply-info {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    background: #f7f8fa;

    border-radius: 12px;

    padding: 22px 24px;

    margin-bottom: 30px;
}


.lumio-supply-info-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    background: #ffd700;
    color: #232323;

    border-radius: 50%;

    font-size: 18px;
}


.lumio-supply-info strong {
    display: block;

    color: #232323;

    font-size: 14px;
    line-height: 21px;
    font-weight: 600;

    margin-bottom: 3px;
}


.lumio-supply-info p {
    color: #717580;

    font-size: 13px;
    line-height: 21px;

    margin: 0;
}


/* ==================================================
   VERTRAGSUNTERLAGEN
================================================== */

.lumio-documents {
    margin-bottom: 38px;
	padding: 0 24px;
}


.lumio-section-heading {
    margin-bottom: 16px;
}


.lumio-section-heading p {
    color: #717580;

    font-size: 14px;
    line-height: 22px;

    margin: 0;
}


/*
   Bewusst keine einzelnen Karten mehr.
   Die Dokumente bilden eine ruhige Liste.
*/

.lumio-document {
    display: flex;
    align-items: center;

    min-height: 66px;

    padding: 14px 4px;

    border: 0;
    border-bottom: 1px solid #e8eaf0;

    border-radius: 0;

    transition:
        padding .2s ease,
        color .2s ease;
}


.lumio-document:first-of-type {
    border-top: 1px solid #e8eaf0;
}


.lumio-document:hover {
    background: transparent;

    padding-left: 8px;
    padding-right: 8px;
}


/* Icon */

.lumio-document-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    background: #f5f6f8;
    color: #232323;

    border-radius: 50%;

    font-size: 16px;

    margin-right: 14px;
}


/* Text */

.lumio-document-content {
    flex: 1;
}


.lumio-document-content strong {
    display: block;

    color: #232323;

    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}


.lumio-document-content span {
    display: block;

    color: #8a8d94;

    font-size: 12px;
    line-height: 18px;

    margin-top: 1px;
}


/* Anzeigen */

.lumio-document-action {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--base-color);

    font-size: 12px;
    line-height: 18px;
    font-weight: 600;

    margin-left: 20px;
}


.lumio-document-action i {
    font-size: 14px;

    transition: transform .2s ease;
}


.lumio-document:hover .lumio-document-action i {
    transform: translate(2px, -2px);
}


/* ==================================================
   ZUSTIMMUNGEN
================================================== */

.lumio-consents {
    background: #f8f9fa;

    border: 1px solid #eceef1;
    border-radius: 12px;

    padding: 24px 25px;
}


.lumio-checkbox {
    position: relative;

    display: flex;
    align-items: flex-start;

    cursor: pointer;

    margin-bottom: 20px;
}


.lumio-checkbox:last-child {
    margin-bottom: 0;
}


/*
   Nicht display:none:
   dadurch bleibt die Checkbox per Tastatur erreichbar.
*/

.lumio-checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}


.lumio-checkbox-box {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 22px;

    background: #fff;

    border: 1px solid #cfd2d8;
    border-radius: 5px;

    margin: 2px 12px 0 0;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.lumio-checkbox-box i {
    color: #fff;

    font-size: 14px;

    opacity: 0;
    transform: scale(.7);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.lumio-checkbox input:checked + .lumio-checkbox-box {
    background: var(--base-color);
    border-color: var(--base-color);
}


.lumio-checkbox input:checked + .lumio-checkbox-box i {
    opacity: 1;
    transform: scale(1);
}


/* Fokus für Tastatur */

.lumio-checkbox input:focus-visible + .lumio-checkbox-box {
    box-shadow: 0 0 0 3px rgba(41, 70, 243, .12);
    border-color: var(--base-color);
}


.lumio-checkbox-text strong {
    display: block;

    color: #232323;

    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
}


.lumio-checkbox-text small {
    display: block;

    color: #717580;

    font-size: 12px;
    line-height: 19px;

    margin-top: 2px;
}


/* ==================================================
   ZURÜCK-BUTTON
================================================== */

.lumio-back {
    width: auto;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 0;
    margin: 0;

    border: 0;

    background: transparent;

    color: #232323;

    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
}


.lumio-back:hover {
    background: transparent;
    color: var(--base-color);
}


/* ==================================================
   MOBILE – SCHRITT 2
================================================== */

@media (max-width: 767px) {

    .lumio-tariff-card {
        border-radius: 12px;
    }


    .lumio-tariff-top {
        flex-direction: column;

        gap: 20px;

        padding: 25px 22px 20px;
    }


    .lumio-tariff-offer {
        width: 100%;
        max-width: none;
    }


    .lumio-tariff-prices {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 5px 22px 25px;
    }


    .lumio-price-item:first-child {
        border-right: 0;
        border-bottom: 1px solid #eceef1;

        padding-bottom: 20px;
    }


    .lumio-price strong {
        font-size: 31px;
        line-height: 38px;
    }


    .lumio-tariff-meta {
        flex-direction: column;

        gap: 15px;

        padding: 20px 22px;
    }


    .lumio-meta-divider {
        width: 100%;
        height: 1px;

        margin: 0;
    }


    .lumio-supply-info {
        padding: 20px;

        margin-bottom: 35px;
    }


    .lumio-document {
        padding: 14px 2px;
    }


    .lumio-document:hover {
        padding-left: 2px;
        padding-right: 2px;
    }


    .lumio-document-content span {
        display: none;
    }


    .lumio-document-action {
        font-size: 0;

        margin-left: 10px;
    }


    .lumio-document-action i {
        font-size: 16px;
    }


    .lumio-consents {
        padding: 20px;
    }

}

/* ==================================================
   SCHRITT 3 – KUNDENDATEN & ZAHLUNG
================================================== */

.lumio-form-section {
    padding: 28px 30px 5px;

    border: 1px solid #e8eaf0;
    border-radius: 14px;

    margin-bottom: 22px;

    background: #fff;
}


.lumio-form-section-head {
    position: relative;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}


.lumio-section-number {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 38px;

    background: #f5f6f8;
    color: var(--base-color);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;
}


.lumio-form-section-head h4 {
    color: #232323;

    font-size: 17px;
    line-height: 23px;
    font-weight: 700;

    margin: 0;
}


.lumio-form-section-head p {
    color: #8a8d94;

    font-size: 12px;
    line-height: 18px;

    margin: 1px 0 0;
}


/* OPTIONAL */

.lumio-optional {
    display: inline-block;

    color: #9a9da3;

    font-size: 10px;
    line-height: 16px;
    font-weight: 500;

    margin-left: 5px;

    vertical-align: 1px;
}


/* ==================================================
   ZAHLUNG
================================================== */

.lumio-payment-section {
    background: #fbfbfc;
}


.lumio-payment-badge {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-left: auto;

    padding: 7px 11px;

    background: #fff;

    border: 1px solid #e2e4e8;
    border-radius: 20px;

    color: #232323;

    font-size: 10px;
    line-height: 15px;
    font-weight: 700;

    letter-spacing: .5px;
}


.lumio-payment-badge i {
    color: var(--base-color);

    font-size: 13px;
}


/* ==================================================
   SEPA-HINWEIS
================================================== */

.lumio-sepa-info {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px 20px;

    margin: 0 0 20px;

    background: #f4f5f7;

    border-radius: 10px;
}


.lumio-sepa-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 36px;

    background: #fff;
    color: var(--base-color);

    border-radius: 50%;

    font-size: 15px;
}


.lumio-sepa-info strong {
    display: block;

    color: #232323;

    font-size: 13px;
    line-height: 19px;
    font-weight: 600;

    margin-bottom: 2px;
}


.lumio-sepa-info p {
    color: #717580;

    font-size: 12px;
    line-height: 19px;

    margin: 0;
}


.lumio-sepa-consent {
    margin-bottom: 24px;
	padding: 18px 20px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .lumio-form-section {
        padding: 22px 20px 2px;

        border-radius: 12px;
    }


    .lumio-form-section-head {
        align-items: flex-start;

        margin-bottom: 24px;
    }


    .lumio-payment-badge {
        position: absolute;

        top: 0;
        right: 0;
    }


    .lumio-sepa-info {
        padding: 17px;
    }

}

/* ==================================================
   SCHRITT 4 – PRÜFEN & ABSCHLIESSEN
================================================== */

.lumio-review {
    margin-top: 35px;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}


/* Einzelne Bereiche */

.lumio-review-section {
    padding: 30px 34px;
    border-bottom: 1px solid #e8eaf0;
}

.lumio-review-section:last-child {
    border-bottom: 0;
}


/* Überschrift */

.lumio-review-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.lumio-review-kicker {
    display: block;
    color: var(--base-color);
    font-size: 10px;
    line-height: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.lumio-review-title h5 {
    margin: 0;
    color: #232323;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
}


/* Bearbeiten */

.lumio-edit-step {
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--base-color);
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.lumio-edit-step:hover {
    background: transparent;
    color: #232323;
}


/* Daten */

.lumio-review-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 50px;
    row-gap: 18px;
}

.lumio-review-row {
    min-width: 0;
}

.lumio-review-row span {
    display: block;
    margin-bottom: 3px;
    color: #8a8d94;
    font-size: 11px;
    line-height: 17px;
}

.lumio-review-row strong {
    display: block;
    color: #232323;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    overflow-wrap: anywhere;
}


/* Abschlussbereich */

.lumio-final-order {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-top: 30px;
    padding: 22px 24px;

    background: #f7f8fa;
    border-radius: 12px;
}

.lumio-final-order-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;

    background: #ffd700;
    color: #232323;

    border-radius: 50%;
    font-size: 17px;
}

.lumio-final-order-content strong {
    display: block;
    color: #232323;
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    margin-bottom: 2px;
}

.lumio-final-order-content p {
    margin: 0;
    color: #717580;
    font-size: 12px;
    line-height: 19px;
}


/* Finaler Button */

.lumio-final-navigation {
    margin-top: 25px;
}

.lumio-submit {
    min-width: 280px !important;
}


/* Datenschutz-Hinweis */

.lumio-final-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;

    margin-top: 13px;

    color: #8a8d94;
    font-size: 11px;
    line-height: 17px;
}

.lumio-final-hint i {
    color: var(--base-color);
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

    .lumio-review {
        border-radius: 12px;
    }

    .lumio-review-section {
        padding: 24px 20px;
    }

    .lumio-review-data {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lumio-review-title {
        margin-bottom: 20px;
    }

    .lumio-final-order {
        padding: 20px;
    }

    .lumio-submit {
        width: 100%;
        min-width: 0 !important;
    }

    .lumio-final-hint {
        justify-content: flex-start;
    }
	
	/* ==================================================
   SCHRITT 4 – GRÖSSEN & TYPOGRAFIE
================================================== */

.lumio-review {
    margin-top: 45px;
    border: 1px solid #e1e4ea;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}


/* Bereiche */

.lumio-review-section {
    padding: 45px 55px;
    border-bottom: 1px solid #e1e4ea;
}

.lumio-review-section:last-child {
    border-bottom: 0;
}


/* Kopf des jeweiligen Bereichs */

.lumio-review-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.lumio-review-kicker {
    display: block;
    color: var(--base-color);
    font-size: 13px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 7px;
}

.lumio-review-title h5 {
    margin: 0;
    color: #232323;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}


/* Bearbeiten */

.lumio-edit-step {
    width: auto;
    padding: 5px 0;
    border: 0;
    background: transparent;
    color: var(--base-color);
    font-family: var(--primary-font);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    cursor: pointer;
}

.lumio-edit-step:hover {
    background: transparent;
    color: #232323;
}


/* Daten */

.lumio-review-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 30px;
}

.lumio-review-row {
    min-width: 0;
}

.lumio-review-row span {
    display: block;
    margin-bottom: 6px;
    color: #8a8d94;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.lumio-review-row strong {
    display: block;
    color: #232323;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    overflow-wrap: anywhere;
}


/* Abschlussbox */

.lumio-final-order {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 35px;
    padding: 28px 30px;
    background: #f7f8fa;
    border-radius: 14px;
}

.lumio-final-order-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    color: #232323;
    border-radius: 50%;
    font-size: 20px;
}

.lumio-final-order-content strong {
    display: block;
    color: #232323;
    font-size: 17px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lumio-final-order-content p {
    margin: 0;
    color: #717580;
    font-size: 14px;
    line-height: 22px;
}


/* MOBILE */

@media (max-width: 767px) {

    .lumio-review {
        margin-top: 30px;
        border-radius: 12px;
    }

    .lumio-review-section {
        padding: 30px 22px;
    }

    .lumio-review-title {
        gap: 15px;
        margin-bottom: 28px;
    }

    .lumio-review-kicker {
        font-size: 11px;
    }

    .lumio-review-title h5 {
        font-size: 19px;
        line-height: 25px;
    }

    .lumio-edit-step {
        font-size: 13px;
    }

    .lumio-review-data {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lumio-review-row span {
        font-size: 13px;
        line-height: 19px;
    }

    .lumio-review-row strong {
        font-size: 16px;
        line-height: 24px;
    }

    .lumio-final-order {
        padding: 22px;
    }
}
}
/* ==================================================
   FORTSCHRITT – ABGESCHLOSSENE SCHRITTE
================================================== */

.lumio-progress-item.completed .lumio-progress-number {
    background: #232323;
    color: #fff;
}

.lumio-progress-item.completed .lumio-progress-label {
    color: #232323;
}

.lumio-progress-item.completed + .lumio-progress-line {
    background: #232323;
}

/* ==================================================
   MOBILE FINAL – Lieferbeginn + Icon/Text
   Safari-sicher, ohne andere Formularfelder zu verschieben
================================================== */
@media (max-width: 767px) {

    .lumio-contract-form .lumio-delivery-start,
    .lumio-contract-form .lumio-delivery-start * {
        box-sizing: border-box;
    }

    .lumio-contract-form .lumio-delivery-start {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        overflow: hidden;
    }

    .lumio-contract-form .lumio-delivery-start-head {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .lumio-contract-form .lumio-delivery-start-head > div:last-child {
        flex: 1 1 0;
        min-width: 0;
        text-align: left;
    }

    .lumio-contract-form .lumio-delivery-start-head h4,
    .lumio-contract-form .lumio-delivery-start-head p {
        text-align: left;
    }

    .lumio-contract-form .lumio-delivery-start .lumio-delivery-date {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .lumio-contract-form .lumio-delivery-start .lumio-delivery-date label {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    /* Safari: native date controls can keep an intrinsic minimum width. */
    .lumio-contract-form .lumio-delivery-start .lumio-delivery-date input[type="date"] {
        display: block;
        inline-size: 100%;
        width: 100%;
        max-inline-size: 100%;
        max-width: 100%;
        min-inline-size: 0;
        min-width: 0;
        margin: 0;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    .lumio-contract-form .lumio-delivery-start .lumio-delivery-date input[type="date"]::-webkit-date-and-time-value {
        min-width: 0;
        text-align: left;
    }

    /* Textblöcke neben Formular-Icons bleiben linksbündig. */
    .lumio-contract-form .lumio-form-section-head > div:not([class*="icon"]),
    .lumio-contract-form .lumio-sepa-info > div:last-child,
    .lumio-contract-form .lumio-delivery-start-head > div:last-child,
    .lumio-contract-form .lumio-form-section-head h4,
    .lumio-contract-form .lumio-form-section-head p,
    .lumio-contract-form .lumio-sepa-info strong,
    .lumio-contract-form .lumio-sepa-info p {
        text-align: left;
    }
}

/* ==================================================
   MOBILE OPTIMIERUNGEN VERTRIEBSSTRECKE – 23.09.2026
   Ausschließlich Mobile, sofern nicht anders markiert.
================================================== */
@media (max-width: 767px) {

    /* SCHRITT 2 – Tarif: Preise + Vertragsdaten zentrieren */
    .lumio-tariff-prices,
    .lumio-price-item,
    .lumio-price-label,
    .lumio-price {
        text-align: center;
    }

    .lumio-price {
        justify-content: center;
    }

    .lumio-tariff-meta {
        align-items: center;
        text-align: center;
    }

    .lumio-meta-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Gut zu wissen: Icon oberhalb */
    .lumio-supply-info {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    .lumio-supply-info > div:last-child,
    .lumio-supply-info strong,
    .lumio-supply-info p {
        width: 100%;
        text-align: center !important;
    }

    /* Vertragsunterlagen komplett linksbündig */
    .lumio-documents,
    .lumio-documents .lumio-section-heading,
    .lumio-documents .lumio-section-heading p {
        text-align: left !important;
    }

    .lumio-document {
        text-align: left !important;
    }

    .lumio-document-content {
        min-width: 0;
        text-align: left !important;
    }

    .lumio-document-content strong {
        font-size: 12px;
        line-height: 18px;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: normal;
        text-align: left !important;
    }

    .lumio-document-icon {
        margin-right: 10px;
    }

    .lumio-document-action {
        flex: 0 0 auto;
        margin-left: 8px;
    }

    /* Zustimmungen Schritt 2 + SEPA Schritt 3 linksbündig */
    .lumio-consents .lumio-checkbox,
    .lumio-consents .lumio-checkbox-text,
    .lumio-consents .lumio-checkbox-text strong,
    .lumio-sepa-consent,
    .lumio-sepa-consent .lumio-checkbox-text,
    .lumio-sepa-consent .lumio-checkbox-text strong,
    .lumio-sepa-consent .lumio-checkbox-text small {
        text-align: left !important;
    }

    .lumio-checkbox-text {
        flex: 1 1 0;
        min-width: 0;
    }

    /* Navigation: Zurück auf allen Folgeschritten mittig unter Hauptbutton */
    .lumio-form-navigation .lumio-back {
        width: auto !important;
        min-width: 0 !important;
        align-self: center;
        justify-content: center;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    /* SCHRITT 4 – Überschriften volle Breite, Daten zentriert,
       Bearbeiten jeweils unter den Daten */
    .lumio-review-section {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .lumio-review-title {
        display: contents;
    }

    .lumio-review-title > div {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 28px;
    }

    .lumio-review-kicker,
    .lumio-review-title h5 {
        width: 100%;
        text-align: center;
    }

    .lumio-review-data {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .lumio-review-row,
    .lumio-review-row span,
    .lumio-review-row strong {
        text-align: center;
    }

    .lumio-edit-step {
        order: 3;
        align-self: center;
        width: auto !important;
        min-width: 0 !important;
        margin: 24px auto 0 !important;
        padding: 0 !important;
        text-align: center;
        white-space: nowrap;
    }

    /* Alles geprüft?: Icon oberhalb */
    .lumio-final-order {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    .lumio-final-order-content,
    .lumio-final-order-content strong,
    .lumio-final-order-content p {
        width: 100%;
        text-align: center;
    }
}

/* ==================================================
   ÄNDERUNGSRUNDE 2 – 23.09.2026
================================================== */

/* Erfolgsansicht – Desktop + Mobile */
/* Der Container, in dem die Erfolgsheadline erscheint, wird komplett zentriert. */
.lumio-contract-form :has(.lumio-success-highlight) {
    text-align: center !important;
}

.lumio-contract-form :has(.lumio-success-highlight) > * {
    margin-left: auto;
    margin-right: auto;
}

/* Hauptheadline: nur bold + lumio-Gelb. Keine Box, kein Schatten. */
.lumio-success-highlight {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 12px auto 26px;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: #ffd700 !important;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.6px;
    text-align: center !important;
}

/* Ruhigere Abstände innerhalb der Bestellbestätigung */
.lumio-contract-form :has(.lumio-success-highlight) p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
}

/* Datenschutz-Link im finalen Hinweis */
.lumio-final-hint a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.lumio-final-hint a:hover {
    color: var(--base-color);
}

@media (max-width: 767px) {

    /* SEPA-Badge sitzt auf der oberen Boxkante und blockiert die Überschrift nicht. */
    .lumio-payment-section {
        position: relative;
    }

    .lumio-payment-section .lumio-payment-badge {
        position: absolute;
        top: -17px;
        right: 20px;
        z-index: 2;
        margin: 0;
        background: #fff;
    }

    .lumio-payment-section .lumio-form-section-head {
        position: static;
        padding-right: 0;
    }

    /* Finaler Datenschutzhinweis: Icon direkt vor dem Text, Gesamtblock zentriert. */
    .lumio-final-hint {
        display: flex;
        align-items: flex-start;
        justify-content: center !important;
        gap: 7px;
        width: 100%;
        text-align: center;
    }

    .lumio-final-hint i {
        flex: 0 0 auto;
        margin-top: 2px;
    }

    .lumio-final-hint span {
        flex: 0 1 auto;
        width: auto;
        max-width: 470px;
        text-align: center;
    }

    .lumio-success-highlight {
        width: 100%;
        max-width: 100%;
        margin: 10px auto 22px;
        padding: 0;
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: -0.4px;
    }

    .lumio-contract-form :has(.lumio-success-highlight) p {
        max-width: 100%;
    }
}
