.lrt-wrapper {
    max-width: 1040px;
    margin: 36px auto;
    background: #ffffff;
    border: 1px solid #e6e8ec;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(18, 24, 40, 0.08);
    color: #202532;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

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

.lrt-header {
    background: #0068fe;
    color: #ffffff;
    padding: 30px 34px;
    border-bottom: 5px solid #2c2f36;
}

.lrt-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #ffe7e9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lrt-header h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.lrt-header p {
    max-width: 680px;
    margin: 0;
    color: #fff3f4;
    font-size: 15px;
    line-height: 1.6;
}

.lrt-form {
    padding: 30px 34px 34px;
    background: #f7f8fa;
}

.lrt-stepper {
    --lrt-progress-width: 33.333%;
    margin-bottom: 22px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 8px;
}

.lrt-stepper-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.lrt-stepper-kicker {
    display: block;
    margin-bottom: 4px;
    color: #0068fe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lrt-stepper-head strong {
    color: #202532;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.lrt-progress {
    height: 8px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #e7e9ee;
    border-radius: 999px;
}

.lrt-progress span {
    display: block;
    width: var(--lrt-progress-width);
    height: 100%;
    background: #0068fe;
    border-radius: inherit;
    transition: width 0.22s ease;
}

.lrt-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lrt-steps li {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
    padding: 12px;
    background: #f7f8fa;
    border: 1px solid #e1e4ea;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.lrt-steps li.is-active {
    background: #fff5f5;
    border-color: #d8a4a8;
}

.lrt-steps li.is-complete {
    background: #fffafa;
    border-color: #0068fe;
}

.lrt-steps li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: #2c2f36;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.lrt-steps li.is-active > span {
    background: #0068fe;
}

.lrt-steps li.is-complete > span {
    background: #0068fe;
}

.lrt-steps div {
    min-width: 0;
}

.lrt-steps strong,
.lrt-steps small {
    display: block;
}

.lrt-steps strong {
    color: #202532;
    font-size: 14px;
    line-height: 1.25;
}

.lrt-steps small {
    margin-top: 2px;
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
}

.lrt-section {
    margin-bottom: 22px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 8px;
}

.lrt-section.is-hidden {
    display: none;
}

.lrt-section-title {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eceff3;
}

.lrt-section-title h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 6px;
    color: #202532;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.lrt-section-title h3 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: #0068fe;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
}

.lrt-section-title p {
    margin: 0 0 0 44px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

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

.lrt-field {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 18px;
}

.lrt-grid .lrt-field {
    margin-bottom: 0;
}

.lrt-field label,
.lrt-consent label {
    display: block;
    color: #303642;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.lrt-field label span,
.lrt-consent strong {
    color: #0068fe;
}

.lrt-wrapper input:not([type="checkbox"]):not([type="radio"]),
.lrt-wrapper select,
.lrt-wrapper textarea {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
    padding: 11px 13px;
    border: 1px solid #cfd5df;
    border-radius: 6px;
    background: #ffffff;
    color: #202532;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lrt-wrapper textarea {
    min-height: 112px;
    resize: vertical;
}

.lrt-wrapper select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #5f6673 50%), linear-gradient(135deg, #5f6673 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.lrt-wrapper input:not([type="checkbox"]):not([type="radio"]):focus,
.lrt-wrapper select:focus,
.lrt-wrapper textarea:focus {
    outline: none;
    border-color: #0068fe;
    box-shadow: 0 0 0 3px rgba(0, 104, 254, 0.14);
}

.lrt-help {
    display: block;
    margin-top: 6px;
    color: #737b8a;
    font-size: 12px;
    line-height: 1.4;
}

.lrt-consent {
    margin: 0 0 22px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e2e5ea;
    border-radius: 8px;
}

.lrt-consent label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 600;
    cursor: pointer;
}

.lrt-wrapper .lrt-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 2px 0 0;
    padding: 0;
    flex: 0 0 18px;
    accent-color: #0068fe;
}

.lrt-consent span {
    display: block;
    flex: 1 1 auto;
    margin: 0;
}

.lrt-actions {
    display: flex;
    justify-content: flex-end;
}

.lrt-actions-step {
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.lrt-wrapper button {
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: #0068fe;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.lrt-wrapper .lrt-btn-secondary {
    background: #ffffff;
    border: 1px solid #cfd5df;
    color: #303642;
}

.lrt-wrapper .lrt-btn-secondary:hover {
    background: #f4f5f7;
}

.lrt-wrapper button:hover {
    background: #0050c9;
}

.lrt-wrapper .lrt-btn-secondary:hover {
    background: #f4f5f7;
}

.lrt-wrapper button:active {
    transform: translateY(1px);
}

.lrt-success {
    max-width: 1040px;
    margin: 24px auto;
    padding: 20px 22px;
    background: #eef8f0;
    border: 1px solid #b8dfc0;
    border-radius: 8px;
    color: #175d2b;
}

.lrt-success h3 {
    margin: 0 0 8px;
    color: #175d2b;
    font-size: 18px;
}

.lrt-success p {
    margin: 0;
}

@media (max-width: 768px) {
    .lrt-wrapper {
        margin: 20px 12px;
    }

    .lrt-header,
    .lrt-form {
        padding: 24px 18px;
    }

    .lrt-header h2 {
        font-size: 24px;
    }

    .lrt-section {
        padding: 18px;
    }

    .lrt-stepper {
        padding: 18px;
    }

    .lrt-stepper-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .lrt-stepper-head strong {
        white-space: normal;
    }

    .lrt-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lrt-steps li {
        padding: 11px 12px;
    }

    .lrt-section-title h3 {
        align-items: flex-start;
    }

    .lrt-section-title p {
        margin-left: 0;
    }

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

    .lrt-actions,
    .lrt-wrapper button {
        width: 100%;
    }
}
