body.lerws-quote-route {
    --lerws-quote-bg: #f6f5f2;
    --lerws-quote-surface: #ffffff;
    --lerws-quote-surface-strong: #f1f0ec;
    --lerws-quote-line: rgba(18, 18, 18, 0.08);
    --lerws-quote-line-strong: rgba(18, 18, 18, 0.12);
    --lerws-quote-text: #121212;
    --lerws-quote-muted: #61646b;
    --lerws-quote-secondary: #73767d;
    --lerws-quote-accent-soft: rgba(18, 18, 18, 0.06);
    --lerws-quote-button-bg: #121212;
    --lerws-quote-button-text: #f6f5f2;
    --lerws-quote-button-hover-bg: #222222;
    --lerws-quote-button-disabled-bg: #9ca3af;
    --lerws-quote-button-disabled-text: #ffffff;
    --lerws-quote-step-active-bg: #121212;
    --lerws-quote-step-active-text: #f6f5f2;
    background: var(--lerws-quote-bg);
    color: var(--lerws-quote-text);
    color-scheme: light;
}

.lerws-portal .lerws-quote-page.lerws-sites-shell.is-quote-request {
    --lerws-quote-bg: var(--lerws-portal-bg);
    --lerws-quote-surface: var(--lerws-portal-surface);
    --lerws-quote-surface-strong: var(--lerws-portal-surface-alt);
    --lerws-quote-line: var(--lerws-portal-line);
    --lerws-quote-line-strong: var(--lerws-portal-line-soft);
    --lerws-quote-text: var(--lerws-portal-text);
    --lerws-quote-muted: var(--lerws-portal-text-secondary);
    --lerws-quote-secondary: var(--lerws-portal-text-muted);
    --lerws-quote-accent-soft: var(--lerws-portal-accent-soft);
    --lerws-quote-button-bg: var(--lerws-portal-accent);
    --lerws-quote-button-text: var(--lerws-portal-on-accent);
    --lerws-quote-button-hover-bg: var(--lerws-portal-accent-hover);
    --lerws-quote-button-disabled-bg: var(--lerws-portal-line-soft);
    --lerws-quote-button-disabled-text: var(--lerws-portal-text-muted);
    --lerws-quote-step-active-bg: var(--lerws-portal-accent);
    --lerws-quote-step-active-text: var(--lerws-portal-on-accent);
}

.lerws-quote-route .lerws-core-shell {
    min-height: 100vh;
    background: var(--lerws-quote-bg);
}

.lerws-quote-page.lerws-sites-shell.is-quote-request {
    width: 100%;
    max-width: var(--lerws-shell-max-width, 1275px);
    margin: 0 auto;
    padding: 1.5rem 0 4rem;
    gap: 1.5rem;
}

.lerws-portal .lerws-page-frame > .lerws-quote-page.lerws-sites-shell.is-quote-request {
    max-width: none;
    margin-inline: 0;
}
.lerws-quote-shell {
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 1.5rem;
}

.lerws-sites-shell.is-quote-request .lerws-sites-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.lerws-sites-shell.is-quote-request .lerws-sites-hero {
    display: grid;
    gap: 0.35rem;
    align-content: start;
}

.lerws-sites-shell.is-quote-request .lerws-sites-hero h1 {
    margin: 0;
    font-size: 24px;
    line-height: normal;
    letter-spacing: normal;
    font-weight: 400;
    color: var(--lerws-quote-text);
}

.lerws-sites-shell.is-quote-request .lerws-sites-hero p,
.lerws-quote-panel__header p,
.lerws-quote-confirmation p,
.lerws-quote-admin__header p,
.lerws-quote-admin__panel-header p {
    margin: 0;
    color: var(--lerws-quote-muted);
    font-size: 14px;
    line-height: 1.7;
}

.lerws-quote-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin-top: 0.8rem;
}

.lerws-quote-hero-actions .lerws-quote-btn {
    min-height: 42px;
    border-radius: var(--lerws-radius-md, 12px);
}

.lerws-quote-hero-actions__note {
    color: var(--lerws-quote-muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.lerws-quote-confirmation__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #71717a;
}

@media (min-width: 1024px) {
    .lerws-sites-shell.is-quote-request .lerws-sites-hero h1 {
        font-size: 28px;
    }
}

.lerws-quote-form,
.lerws-quote-confirmation,
.lerws-quote-alert {
    background: var(--lerws-quote-surface);
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    box-shadow: var(--shadow-sm, none);
}

.lerws-quote-alert {
    padding: 1rem 1.25rem;
}

.lerws-quote-alert--error strong {
    display: block;
    margin-bottom: 0.5rem;
}

.lerws-quote-alert ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #d4d4d8;
}

.lerws-quote-form {
    padding: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.lerws-quote-progress {
    display: grid;
    gap: 0.95rem;
    padding: 1rem 1.1rem 1.05rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 34%, var(--lerws-quote-surface));
}

.lerws-quote-progress__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lerws-quote-progress__eyebrow {
    color: var(--lerws-quote-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lerws-quote-progress__summary {
    color: var(--lerws-quote-muted);
    font-size: 0.82rem;
}

.lerws-quote-progress__summary strong {
    color: var(--lerws-quote-text);
    font-weight: 600;
}

.lerws-quote-progress__bar {
    width: 100%;
    height: 0.35rem;
    overflow: hidden;
    border-radius: var(--lerws-radius-pill, 999px);
    background: color-mix(in srgb, var(--lerws-quote-text) 10%, var(--lerws-quote-line));
}

.lerws-quote-progress__bar-fill {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: var(--lerws-quote-button-bg);
    transition: width 220ms ease;
}

.lerws-quote-panel {
    display: none;
    gap: 1.25rem;
}

.lerws-quote-panel[hidden] {
    display: none !important;
}

.lerws-quote-panel.is-active {
    display: grid;
}

.lerws-quote-panel__header {
    display: grid;
    gap: 0.35rem;
}

.lerws-quote-panel__header h2,
.lerws-quote-confirmation h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 400;
    color: var(--lerws-quote-text);
}

.lerws-quote-grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.lerws-quote-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lerws-quote-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lerws-quote-field,
.lerws-quote-fieldset {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    align-items: start;
}

.lerws-quote-field span,
.lerws-quote-fieldset legend {
    color: var(--lerws-quote-text);
    font-size: 14px;
    font-weight: 500;
}

.lerws-quote-field small {
    color: var(--lerws-quote-secondary);
    font-size: 0.9em;
    font-weight: 500;
}

.lerws-quote-field__helper {
    color: var(--lerws-quote-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.lerws-quote-field-help {
    display: block;
    color: var(--lerws-quote-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.lerws-quote-upload-field {
    display: grid;
    gap: 0.55rem;
}

.lerws-quote-route .lerws-quote-upload-field input[type="file"] {
    min-height: auto;
    padding: 0.7rem 0.8rem;
    cursor: pointer;
}

.lerws-quote-upload-list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lerws-quote-upload-list[hidden] {
    display: none !important;
}

.lerws-quote-upload-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    min-width: 0;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 28%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    font-size: 0.82rem;
}

.lerws-quote-upload-list__name {
    min-width: 0;
    overflow: hidden;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lerws-quote-upload-list__size {
    flex: 0 0 auto;
    color: var(--lerws-quote-muted);
    white-space: nowrap;
}

.lerws-quote-upload-list__warning {
    color: #b45309;
    font-weight: 600;
}

.lerws-quote-field.is-hidden {
    display: none;
}

.lerws-quote-route .lerws-quote-field input,
.lerws-quote-route .lerws-quote-field select,
.lerws-quote-route .lerws-quote-field textarea {
    width: 100%;
    border-radius: var(--lerws-radius-md, 12px) !important;
    border: 1px solid var(--lerws-quote-line) !important;
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface)) !important;
    color: var(--lerws-quote-text) !important;
    padding: 0.9rem 1rem;
    min-height: 48px;
    font: inherit;
    box-sizing: border-box;
    box-shadow: none !important;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--with-prefix {
    padding-left: 2.75rem !important;
    background-repeat: no-repeat !important;
    background-position: left 1rem center !important;
    background-size: 1rem 1rem !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--pen {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--globe {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20'/%3E%3Cpath d='M2 12h20'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--user {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field .lerws-quote-input--building {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/%3E%3Cpath d='M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2'/%3E%3Cpath d='M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M10 6h4'/%3E%3Cpath d='M10 10h4'/%3E%3Cpath d='M10 14h4'/%3E%3Cpath d='M10 18h4'/%3E%3C/svg%3E") !important;
}

.lerws-quote-route .lerws-quote-field select option {
    background: var(--lerws-quote-surface-strong);
    color: var(--lerws-quote-text);
}

.lerws-quote-route .lerws-quote-field input::placeholder,
.lerws-quote-route .lerws-quote-field textarea::placeholder {
    color: color-mix(in srgb, var(--lerws-quote-muted) 92%, transparent);
}

.lerws-quote-route .lerws-quote-field textarea {
    min-height: 104px;
    line-height: 1.55;
    resize: vertical;
}

.lerws-quote-route .lerws-quote-field textarea.lerws-quote-textarea--medium {
    min-height: 144px;
}

.lerws-quote-route .lerws-quote-field textarea.lerws-quote-textarea--long {
    min-height: 176px;
}

.lerws-quote-route .lerws-quote-field input:focus,
.lerws-quote-route .lerws-quote-field select:focus,
.lerws-quote-route .lerws-quote-field textarea:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--lerws-quote-text) 20%, var(--lerws-quote-line)) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08) !important;
}

.lerws-quote-route .lerws-quote-field select {
    min-height: var(--lerws-control-height-large, 48px);
    padding-right: 2.85rem;
    border-radius: var(--lerws-control-radius-standard, 12px) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    background-size: 18px 18px;
}

.lerws-quote-route .lerws-quote-field select:focus {
    border-color: var(--lerws-control-border-focus, var(--lerws-quote-line)) !important;
    box-shadow: var(--lerws-control-focus-ring, 0 0 0 3px color-mix(in srgb, var(--lerws-quote-text) 10%, transparent)) !important;
}

.lerws-quote-field.is-invalid input,
.lerws-quote-field.is-invalid select,
.lerws-quote-field.is-invalid textarea,
.lerws-quote-checkbox.is-invalid {
    border-color: rgba(248, 113, 113, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.08) !important;
}

.lerws-quote-fieldset.is-invalid,
.lerws-quote-service-grid.is-invalid {
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.55), 0 0 0 4px rgba(248, 113, 113, 0.08);
    border-radius: var(--lerws-radius-md, 12px);
    padding: 0.85rem;
}

.lerws-quote-field.is-invalid span,
.lerws-quote-fieldset.is-invalid legend,
.lerws-quote-checkbox.is-invalid span {
    color: var(--lerws-quote-text);
}

.lerws-quote-field-error {
    color: #fda4af;
    font-size: 0.82rem;
    line-height: 1.45;
}

.lerws-quote-route .lerws-quote-field input:-webkit-autofill,
.lerws-quote-route .lerws-quote-field textarea:-webkit-autofill,
.lerws-quote-route .lerws-quote-field select:-webkit-autofill {
    -webkit-text-fill-color: var(--lerws-quote-text) !important;
    box-shadow: 0 0 0 1000px color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface)) inset !important;
    border: 1px solid var(--lerws-quote-line) !important;
}

.lerws-quote-route .lerws-quote-field__control {
    display: block;
    min-width: 0;
}

.lerws-quote-route .lerws-quote-field__control--prefix {
    position: relative;
}

.lerws-quote-route .lerws-quote-field__control--prefix > input {
    padding-left: 2.75rem !important;
}

.lerws-quote-route .lerws-quote-field__prefix-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
    pointer-events: none;
    z-index: 2;
    transform: translateY(-50%);
}

.lerws-quote-route .lerws-quote-field__prefix-icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
    stroke: currentColor;
}

.lerws-quote-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lerws-quote-service-card {
    appearance: none;
    border: 1px solid var(--lerws-quote-line);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 66%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    border-radius: var(--lerws-radius-md, 12px);
    padding: 1.1rem;
    display: grid;
    gap: 0.55rem;
    text-align: left;
    cursor: pointer;
    min-height: 150px;
    position: relative;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lerws-quote-service-card strong {
    font-size: 1.05rem;
    font-weight: 500;
}

.lerws-quote-service-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 2.25rem;
}

.lerws-quote-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid color-mix(in srgb, var(--lerws-quote-button-bg) 18%, var(--lerws-quote-line));
    border-radius: 0.7rem;
    background: color-mix(in srgb, var(--lerws-quote-button-bg) 7%, var(--lerws-quote-surface));
    color: var(--lerws-quote-secondary);
}

.lerws-quote-service-card__icon svg {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.lerws-quote-service-card__description {
    color: var(--lerws-quote-muted);
    line-height: 1.6;
}

.lerws-quote-service-card__selected {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    width: fit-content;
    min-height: 1.9rem;
    padding: 0 0.7rem;
    border-radius: var(--lerws-radius-pill, 999px);
    border: 1px solid color-mix(in srgb, var(--lerws-quote-text) 12%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface) 92%, transparent);
    color: var(--lerws-quote-secondary);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}

.lerws-quote-service-card__selected svg {
    width: 0.8rem;
    height: 0.8rem;
}

.lerws-quote-service-card.is-selected {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 18%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 88%, var(--lerws-quote-surface));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--lerws-quote-text) 5%, transparent);
    transform: translateY(-1px);
}

.lerws-quote-service-card.is-selected .lerws-quote-service-card__selected {
    opacity: 1;
    transform: translateY(0);
}

.lerws-quote-service-card.is-selected .lerws-quote-service-card__icon {
    border-color: color-mix(in srgb, var(--lerws-quote-button-bg) 38%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-button-bg) 14%, var(--lerws-quote-surface));
    color: var(--lerws-quote-button-bg);
}

.lerws-quote-service-card.is-selected strong {
    color: var(--lerws-quote-text);
}

.lerws-quote-service-card.is-selected .lerws-quote-service-card__description {
    color: color-mix(in srgb, var(--lerws-quote-text) 74%, var(--lerws-quote-muted));
}

.lerws-quote-service-fields {
    display: none;
    gap: 1rem;
}

.lerws-quote-service-fields.is-active {
    display: grid;
}

.lerws-quote-service-fields__header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.1rem 0 0.25rem;
}

.lerws-quote-service-fields__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--lerws-radius-md, 12px);
    border: 1px solid var(--lerws-quote-line);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 52%, var(--lerws-quote-surface));
    color: color-mix(in srgb, var(--lerws-quote-text) 88%, var(--lerws-quote-secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.lerws-quote-service-fields__icon svg {
    width: 1rem;
    height: 1rem;
}

.lerws-quote-service-fields__copy {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.lerws-quote-service-fields__header:not(:has(.lerws-quote-service-fields__icon)) {
    grid-template-columns: 1fr;
    gap: 0.35rem;
}

.lerws-quote-service-fields__header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--lerws-quote-text);
}

.lerws-quote-service-fields__header p {
    margin: 0;
    color: var(--lerws-quote-secondary);
    line-height: 1.6;
}

.lerws-quote-note-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: var(--lerws-radius-md, 12px);
    border: 1px solid var(--lerws-quote-line);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 50%, var(--lerws-quote-surface));
    color: var(--lerws-quote-secondary);
}

.lerws-quote-note-card--info {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 10%, var(--lerws-quote-line));
}

.lerws-quote-note-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--lerws-radius-pill, 999px);
    border: 1px solid var(--lerws-quote-line);
    background: color-mix(in srgb, var(--lerws-quote-surface) 92%, transparent);
    color: color-mix(in srgb, var(--lerws-quote-text) 86%, var(--lerws-quote-secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.lerws-quote-note-card__icon svg {
    width: 1rem;
    height: 1rem;
}

.lerws-quote-note-card p {
    margin: 0;
    line-height: 1.6;
}

.lerws-quote-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.lerws-quote-fieldset legend small {
    color: var(--lerws-quote-secondary);
    font-weight: 500;
}

.lerws-quote-choice-grid {
    align-items: start;
}

.lerws-quote-choice-fieldset {
    gap: 0.65rem;
}

.lerws-quote-choice-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.lerws-quote-choice {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--lerws-quote-line-strong);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lerws-quote-choice input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.lerws-quote-choice span {
    color: inherit;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.35;
}

.lerws-quote-choice:hover,
.lerws-quote-choice:focus-within {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 24%, var(--lerws-quote-line));
}

.lerws-quote-choice:has(input:checked) {
    border-color: var(--lerws-quote-button-bg);
    background: color-mix(in srgb, var(--lerws-quote-button-bg) 9%, var(--lerws-quote-surface));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lerws-quote-button-bg) 10%, transparent);
}

.lerws-quote-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.lerws-quote-checkbox-grid--features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lerws-quote-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: var(--lerws-radius-md, 12px);
    border: 1px solid var(--lerws-quote-line-strong);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 58%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lerws-quote-checkbox input {
    margin-top: 0.15rem;
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    accent-color: var(--lerws-quote-text);
}

.lerws-quote-checkbox span {
    color: inherit;
    font-weight: 500;
    line-height: 1.5;
}

.lerws-quote-checkbox:hover {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 18%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 70%, var(--lerws-quote-surface));
}

.lerws-quote-checkbox:has(input:checked) {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 22%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 82%, var(--lerws-quote-surface));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lerws-quote-text) 5%, transparent);
}

.lerws-quote-checkbox--consent {
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface));
}

.lerws-quote-checkbox--consent small {
    display: block;
    margin-top: 0.2rem;
    color: var(--lerws-quote-muted);
    font-size: 0.86em;
    font-weight: 400;
}

.lerws-quote-review {
    display: grid;
    gap: 1rem;
}

.lerws-quote-review-section {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface));
}

.lerws-quote-review-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lerws-quote-review-section__header h3 {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--lerws-quote-secondary);
}

.lerws-quote-review-section__edit {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--lerws-quote-muted);
    font: inherit;
    font-size: 0.82rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, color 180ms ease;
}

.lerws-quote-review-section:hover .lerws-quote-review-section__edit,
.lerws-quote-review-section:focus-within .lerws-quote-review-section__edit {
    opacity: 1;
    pointer-events: auto;
}

.lerws-quote-review-section__edit:hover,
.lerws-quote-review-section__edit:focus-visible {
    color: var(--lerws-quote-text);
}

.lerws-quote-review-section__rows {
    display: grid;
    gap: 0.7rem;
}

.lerws-quote-review-section__row {
    display: grid;
    grid-template-columns: minmax(0, 160px) 1fr;
    gap: 1rem;
    align-items: start;
}

.lerws-quote-review-section__label {
    color: var(--lerws-quote-secondary);
    font-weight: 500;
}

.lerws-quote-review-section__value {
    color: var(--lerws-quote-text);
    line-height: 1.6;
}

.lerws-quote-review-note {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 24%, var(--lerws-quote-surface));
    color: var(--lerws-quote-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.lerws-quote-checklist {
    display: grid;
    gap: 0.6rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 28%, var(--lerws-quote-surface));
}

.lerws-quote-checklist[hidden] {
    display: none !important;
}

.lerws-quote-checklist__summary {
    color: var(--lerws-quote-text);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.lerws-quote-checklist__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

.lerws-quote-checklist__item {
    appearance: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: var(--lerws-radius-md, 12px);
    border: 1px solid color-mix(in srgb, var(--lerws-quote-text) 8%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 46%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lerws-quote-checklist__item:hover,
.lerws-quote-checklist__item:focus-visible {
    border-color: color-mix(in srgb, var(--lerws-quote-text) 18%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 66%, var(--lerws-quote-surface));
    transform: translateY(-1px);
}

.lerws-quote-checklist__status {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: var(--lerws-radius-pill, 999px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid currentColor;
}

.lerws-quote-checklist__status svg {
    width: 0.78rem;
    height: 0.78rem;
}

.lerws-quote-checklist__pending-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: var(--lerws-radius-pill, 999px);
    background: currentColor;
    display: block;
}

.lerws-quote-checklist__label {
    color: var(--lerws-quote-text);
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.92rem;
    min-width: 0;
}

.lerws-quote-checklist__item.is-pending {
    border-color: color-mix(in srgb, #ef4444 35%, var(--lerws-quote-line));
}

.lerws-quote-checklist__item.is-pending .lerws-quote-checklist__status {
    color: #ef4444;
}

.lerws-quote-checklist__item.is-complete {
    border-color: color-mix(in srgb, #22c55e 34%, var(--lerws-quote-line));
}

.lerws-quote-checklist__item.is-complete .lerws-quote-checklist__status {
    color: #22c55e;
    background: color-mix(in srgb, #22c55e 10%, transparent);
}

.lerws-quote-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--lerws-quote-line);
}

.lerws-quote-form__footer .lerws-quote-btn {
    min-width: 132px;
}

.lerws-quote-form__footer-meta {
    color: var(--lerws-quote-secondary);
    text-align: center;
}

.lerws-quote-btn {
    appearance: none;
    border: 1px solid var(--lerws-quote-button-bg);
    background: var(--lerws-quote-button-bg);
    color: var(--lerws-quote-button-text) !important;
    border-radius: var(--lerws-radius-md, 12px);
    min-height: 44px;
    padding: 0 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none !important;
}

.lerws-quote-btn span,
.lerws-quote-btn svg {
    color: inherit !important;
}

.lerws-quote-btn svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    stroke: currentColor;
}

.lerws-quote-btn__icon-rotated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}

.lerws-quote-btn__icon-rotated svg {
    width: 1rem;
    height: 1rem;
}

.lerws-quote-btn[hidden] {
    display: none !important;
}

.lerws-quote-btn[disabled],
.lerws-quote-btn[aria-disabled="true"] {
    opacity: 1;
    background: var(--lerws-quote-button-disabled-bg);
    border-color: var(--lerws-quote-button-disabled-bg);
    color: var(--lerws-quote-button-disabled-text) !important;
}

.lerws-quote-btn[aria-disabled="true"] {
    cursor: pointer;
}

.lerws-quote-btn--ghost {
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 42%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text) !important;
    border-color: var(--lerws-quote-line);
}

.lerws-quote-btn:hover,
.lerws-quote-btn:focus-visible {
    background: var(--lerws-quote-button-hover-bg);
    border-color: var(--lerws-quote-button-hover-bg);
    color: var(--lerws-quote-button-text) !important;
}

.lerws-quote-btn--ghost:hover,
.lerws-quote-btn--ghost:focus-visible {
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 62%, var(--lerws-quote-surface));
    border-color: color-mix(in srgb, var(--lerws-quote-text) 18%, var(--lerws-quote-line));
    color: var(--lerws-quote-text);
}

.lerws-quote-confirmation {
    max-width: 760px;
    margin: 0 auto;
    padding: 1rem 0 0;
    display: grid;
    gap: 1.35rem;
    justify-items: center;
    text-align: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lerws-quote-confirmation__icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--lerws-radius-pill, 999px);
    border: 1px solid color-mix(in srgb, var(--lerws-quote-text) 16%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 72%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lerws-quote-confirmation__icon svg {
    width: 1.55rem;
    height: 1.55rem;
}

.lerws-quote-confirmation__card {
    width: min(100%, 660px);
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: var(--lerws-quote-surface);
    box-shadow: var(--shadow-sm, none);
    text-align: left;
}

.lerws-quote-confirmation__row {
    display: grid;
    grid-template-columns: minmax(0, 160px) 1fr;
    gap: 1rem;
    align-items: center;
}

.lerws-quote-confirmation__row > span {
    color: var(--lerws-quote-secondary);
}

.lerws-quote-confirmation__row strong {
    color: var(--lerws-quote-text);
    font-weight: 500;
}

.lerws-quote-confirmation__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: 0 0.7rem;
    border-radius: var(--lerws-radius-pill, 999px);
    border: 1px solid color-mix(in srgb, var(--lerws-quote-text) 12%, var(--lerws-quote-line));
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 48%, var(--lerws-quote-surface));
    color: var(--lerws-quote-text);
    font-size: 0.84rem;
    font-weight: 600;
}

.lerws-quote-confirmation__note {
    max-width: 620px;
}

.lerws-quote-confirmation__next-steps {
    width: min(100%, 660px);
    display: grid;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-md, 12px);
    background: color-mix(in srgb, var(--lerws-quote-surface-strong) 35%, var(--lerws-quote-surface));
    text-align: left;
}

.lerws-quote-confirmation__next-links,
.lerws-quote-confirmation__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.lerws-quote-confirmation__next-links a,
.lerws-quote-confirmation__socials a {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--lerws-quote-line);
    border-radius: var(--lerws-radius-pill, 999px);
    background: var(--lerws-quote-surface);
    color: var(--lerws-quote-text);
    font-size: 0.86rem;
    line-height: 1.2;
    text-decoration: none;
}

.lerws-quote-confirmation__next-links a:hover,
.lerws-quote-confirmation__next-links a:focus-visible,
.lerws-quote-confirmation__socials a:hover,
.lerws-quote-confirmation__socials a:focus-visible {
    border-color: var(--lerws-quote-text);
    background: var(--lerws-quote-text);
    color: var(--lerws-quote-surface);
}

.lerws-quote-confirmation__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--lerws-quote-secondary);
    text-decoration: none;
    font-weight: 500;
}

.lerws-quote-confirmation__back:hover,
.lerws-quote-confirmation__back:focus-visible {
    color: var(--lerws-quote-text);
}

/* Confirmation actions now have one clear primary action and icon-only social links. */
.lerws-quote-confirmation__next-links a {
    gap: 0.45rem;
    font-weight: 500;
}

.lerws-quote-confirmation__next-links a:nth-child(2) {
    background: var(--lerws-quote-button-bg);
    border-color: var(--lerws-quote-button-bg);
    color: var(--lerws-quote-button-text);
    font-weight: 600;
}

.lerws-quote-confirmation__next-links a:nth-child(2):hover,
.lerws-quote-confirmation__next-links a:nth-child(2):focus-visible {
    background: var(--lerws-quote-button-hover-bg);
    border-color: var(--lerws-quote-button-hover-bg);
    color: var(--lerws-quote-button-text);
}

.lerws-quote-confirmation__link-icon {
    display: inline-flex;
    align-items: center;
}

.lerws-quote-confirmation__link-icon svg {
    width: 1rem;
    height: 1rem;
}

.lerws-quote-confirmation__socials {
    gap: 0.5rem;
}

.lerws-quote-confirmation__socials a {
    width: 2.5rem;
    min-height: 2.5rem;
    justify-content: center;
    padding: 0;
}

.lerws-quote-confirmation__social-icon {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    object-fit: contain;
}

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

.lerws-quote-confirmation__socials a:hover .lerws-quote-confirmation__social-icon,
.lerws-quote-confirmation__socials a:focus-visible .lerws-quote-confirmation__social-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 960px) {
    .lerws-sites-shell.is-quote-request .lerws-sites-topbar,
    .lerws-quote-form__footer {
        grid-template-columns: 1fr;
    }

    .lerws-quote-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .lerws-quote-service-grid,
    .lerws-quote-grid--three,
    .lerws-quote-checklist__items {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    .lerws-quote-page {
        padding-top: 1rem;
    }

    .lerws-quote-page.lerws-sites-shell.is-quote-request {
        padding: 1rem 0 3rem;
    }

    .lerws-quote-form,
    .lerws-quote-confirmation,
    .lerws-quote-alert {
        padding: 1rem;
        border-radius: var(--lerws-radius-md, 12px);
    }

    .lerws-sites-shell.is-quote-request .lerws-sites-topbar {
        padding: 0;
        border-radius: 0;
    }

    .lerws-quote-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .lerws-quote-hero-actions .lerws-quote-btn {
        width: 100%;
    }

    .lerws-quote-progress {
        padding: 0.9rem;
    }

    .lerws-quote-progress__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.3rem;
    }

    .lerws-quote-grid--two,
    .lerws-quote-checkbox-grid,
    .lerws-quote-review-section__row,
    .lerws-quote-confirmation__row {
        grid-template-columns: 1fr;
    }

    .lerws-quote-review-section__edit {
        opacity: 1;
        pointer-events: auto;
    }

    .lerws-quote-service-fields__header,
    .lerws-quote-note-card {
        grid-template-columns: 1fr;
    }
}
