:root {
    --ldq-blue: #4b9ff2;
    --ldq-blue-dark: #2f7fd0;
    --ldq-blue-soft: #eef6ff;
    --ldq-blue-line: #d7eafa;
    --ldq-gray: #5d6873;
    --ldq-ink: #2f3a45;
    --ldq-muted: #6f7a85;
    --ldq-line: #e5ebf0;
    --ldq-panel: #ffffff;
    --ldq-bg: #f4f8fb;
    --ldq-success: #2f9a6b;
    --ldq-error: #c94a4a;
    --ldq-shadow: 0 24px 70px rgba(47, 67, 86, 0.14);
    --ldq-radius: 28px;
    --ldq-radius-sm: 16px;
    --ldq-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ldq-fullscreen-body {
    margin: 0 !important;
    background: var(--ldq-bg) !important;
    overflow-x: hidden;
}

.ldq-fullscreen-body #wpadminbar {
    display: none !important;
}

.ldq-fullscreen-body.admin-bar {
    margin-top: 0 !important;
}

.ldq-app,
.ldq-app * {
    box-sizing: border-box;
}

.ldq-app [hidden] {
    display: none !important;
}

.ldq-app {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 28px;
    overflow: hidden;
    font-family: var(--ldq-font);
    color: var(--ldq-ink);
    background:
        radial-gradient(circle at 8% 10%, rgba(75, 159, 242, 0.14), transparent 32%),
        radial-gradient(circle at 92% 88%, rgba(93, 104, 115, 0.11), transparent 34%),
        linear-gradient(145deg, #f8fbfd 0%, #eef5fa 100%);
}

.ldq-app button,
.ldq-app input,
.ldq-app select,
.ldq-app textarea {
    font: inherit;
}

.ldq-app button,
.ldq-app label,
.ldq-app input[type="radio"],
.ldq-app input[type="checkbox"] {
    -webkit-tap-highlight-color: transparent;
}

.ldq-ambient {
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.ldq-ambient-one {
    width: 360px;
    height: 360px;
    top: -130px;
    left: -110px;
    background: rgba(75, 159, 242, 0.13);
    animation: ldqFloatOne 14s ease-in-out infinite alternate;
}

.ldq-ambient-two {
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -180px;
    background: rgba(93, 104, 115, 0.1);
    animation: ldqFloatTwo 16s ease-in-out infinite alternate;
}

@keyframes ldqFloatOne {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(35px, 22px, 0) scale(1.08); }
}

@keyframes ldqFloatTwo {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-28px, -24px, 0) scale(1.06); }
}

.ldq-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    min-height: calc(100vh - 56px);
    min-height: calc(100dvh - 56px);
    margin: 0 auto;
    padding: 0 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--ldq-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ldq-shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.ldq-header {
    display: grid;
    grid-template-columns: minmax(180px, 245px) 1fr;
    gap: 34px;
    align-items: center;
    padding: 22px 34px;
    border-bottom: 1px solid var(--ldq-line);
    background: rgba(255, 255, 255, 0.95);
}

.ldq-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.ldq-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
}

.ldq-progress-wrap {
    width: 100%;
    max-width: 560px;
    justify-self: end;
}

.ldq-progress-copy {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    color: var(--ldq-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.ldq-progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf2f6;
}

.ldq-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ldq-blue), #77bbfb);
    box-shadow: 0 3px 10px rgba(75, 159, 242, 0.32);
    transition: width 420ms cubic-bezier(.2,.75,.2,1);
}

.ldq-form {
    display: flex;
    min-height: calc(100vh - 178px);
    min-height: calc(100dvh - 178px);
    flex-direction: column;
}

.ldq-step {
    width: min(880px, calc(100% - 48px));
    margin: auto;
    padding: 42px 0 26px;
    opacity: 0;
    transform: translateY(14px);
}

.ldq-step.is-active {
    animation: ldqStepIn 430ms cubic-bezier(.2,.75,.2,1) forwards;
}

.ldq-step.is-leaving {
    animation: ldqStepOut 210ms ease forwards;
}

@keyframes ldqStepIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ldqStepOut {
    to { opacity: 0; transform: translateY(-8px); }
}

.ldq-step[data-step="intro"] {
    max-width: 760px;
    text-align: center;
    padding-top: 48px;
}

.ldq-intro-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    margin: 0 auto 18px;
    border-radius: 34px;
    color: var(--ldq-blue);
    background: linear-gradient(145deg, #f3f9ff, #e4f1ff);
    box-shadow: inset 0 0 0 1px #d9ebfb, 0 16px 34px rgba(75, 159, 242, 0.13);
}

.ldq-intro-visual svg {
    width: 68px;
    height: 68px;
}

.ldq-spark {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background: var(--ldq-blue);
    transform: rotate(45deg);
    animation: ldqTwinkle 2.4s ease-in-out infinite;
}

.ldq-spark-one { right: 4px; top: 10px; }
.ldq-spark-two { right: -10px; bottom: 22px; animation-delay: .6s; width: 7px; height: 7px; }
.ldq-spark-three { left: 2px; bottom: 7px; animation-delay: 1.1s; width: 6px; height: 6px; }

@keyframes ldqTwinkle {
    0%, 100% { opacity: .45; transform: rotate(45deg) scale(.85); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
}

.ldq-eyebrow,
.ldq-step-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ldq-blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ldq-step h1,
.ldq-step h2,
.ldq-step h3,
.ldq-step p {
    margin-top: 0;
}

.ldq-step h1 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--ldq-ink);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.07;
    letter-spacing: -0.035em;
}

.ldq-step h2 {
    margin-bottom: 10px;
    color: var(--ldq-ink);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.025em;
}

.ldq-step h3 {
    margin-bottom: 4px;
    color: var(--ldq-ink);
    font-size: 18px;
    line-height: 1.35;
}

.ldq-lead,
.ldq-step-heading > p,
.ldq-state-step > p {
    color: var(--ldq-muted);
    font-size: 17px;
    line-height: 1.65;
}

.ldq-lead {
    max-width: 650px;
    margin: 0 auto 25px;
}

.ldq-step-heading {
    max-width: 740px;
    margin-bottom: 28px;
}

.ldq-step-heading > p {
    margin-bottom: 0;
}

.ldq-feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin: 0 auto 30px;
    color: var(--ldq-gray);
    font-size: 14px;
    font-weight: 700;
}

.ldq-feature-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ldq-feature-row i {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--ldq-success);
    font-size: 12px;
    font-style: normal;
}

.ldq-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.ldq-button:hover {
    transform: translateY(-1px);
}

.ldq-button:focus-visible,
.ldq-choice-card:focus-within,
.ldq-pill-option:focus-within,
.ldq-day-option:focus-within,
.ldq-calendar-day:focus-visible,
.ldq-calendar-nav:focus-visible,
.ldq-app input:focus-visible,
.ldq-app select:focus-visible,
.ldq-app textarea:focus-visible {
    outline: 3px solid rgba(75, 159, 242, 0.22);
    outline-offset: 2px;
}

.ldq-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--ldq-blue), #3e8fe1);
    box-shadow: 0 10px 22px rgba(75, 159, 242, 0.26);
}

.ldq-button-primary:hover {
    color: #fff;
    box-shadow: 0 13px 26px rgba(75, 159, 242, 0.34);
}

.ldq-button-secondary {
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
    box-shadow: inset 0 0 0 1px var(--ldq-blue-line);
}

.ldq-button-ghost {
    color: var(--ldq-gray);
    background: transparent;
    box-shadow: inset 0 0 0 1px var(--ldq-line);
}

.ldq-button-large {
    min-height: 56px;
    padding-inline: 28px;
    font-size: 16px;
}

.ldq-button[disabled] {
    cursor: not-allowed;
    opacity: .62;
    transform: none;
}

.ldq-navigation[hidden],
.ldq-navigation [hidden] {
    display: none !important;
}

.ldq-navigation {
    position: fixed !important;
    z-index: 999999;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    display: flex;
    width: min(880px, calc(100vw - 96px));
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(215, 226, 235, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 38px rgba(41, 59, 75, 0.16);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.ldq-app.has-fixed-navigation .ldq-form {
    padding-bottom: 112px;
}

.ldq-navigation .ldq-button-primary {
    margin-left: auto;
}

.ldq-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ldq-choice-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 28px;
    gap: 14px;
    align-items: center;
    min-height: 116px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--ldq-line);
    border-radius: var(--ldq-radius-sm);
    cursor: pointer;
    background: #fff;
    box-shadow: 0 6px 18px rgba(39, 58, 76, 0.035);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.ldq-choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75, 159, 242, 0.09), rgba(75, 159, 242, 0.025));
    opacity: 0;
    transition: opacity 180ms ease;
}

.ldq-choice-card:hover {
    border-color: #c7e1f9;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(47, 76, 105, 0.08);
}

.ldq-choice-card:has(input:checked) {
    border-color: var(--ldq-blue);
    background: #fbfdff;
    box-shadow: 0 12px 26px rgba(75, 159, 242, 0.13), inset 0 0 0 1px rgba(75, 159, 242, 0.12);
}

.ldq-choice-card:has(input:checked)::before {
    opacity: 1;
}

.ldq-choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ldq-choice-card > * {
    position: relative;
    z-index: 1;
}

.ldq-choice-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.ldq-choice-card:has(input:checked) .ldq-choice-icon {
    color: #fff;
    background: var(--ldq-blue);
    transform: scale(1.03);
}

.ldq-choice-icon svg,
.ldq-service-notice svg,
.ldq-summary-heading svg,
.ldq-state-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ldq-choice-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.ldq-choice-copy strong {
    color: var(--ldq-ink);
    font-size: 16px;
    line-height: 1.25;
}

.ldq-choice-copy small {
    color: var(--ldq-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ldq-choice-check {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid #d8e0e7;
    border-radius: 50%;
    color: transparent;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ldq-choice-card:has(input:checked) .ldq-choice-check {
    border-color: var(--ldq-blue);
    color: #fff;
    background: var(--ldq-blue);
    transform: scale(1.04);
}

.ldq-mode-grid {
    max-width: 720px;
}

.ldq-mode-card {
    min-height: 138px;
}

.ldq-property-panel {
    padding: 22px 22px 4px;
    border: 1px solid var(--ldq-line);
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7fafc 100%);
    box-shadow: 0 10px 28px rgba(42, 61, 78, 0.055);
    animation: ldqReveal 320ms ease both;
}

.ldq-property-panel-heading {
    margin-bottom: 20px;
}

.ldq-property-panel-heading h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.ldq-property-panel-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--ldq-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ldq-property-panel .ldq-service-notice {
    margin-top: 2px;
}

.ldq-conditional-field {
    padding-top: 2px;
    animation: ldqReveal 260ms ease both;
}

.ldq-section-block {
    margin-bottom: 26px;
}

.ldq-field-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.ldq-field-heading > span {
    color: var(--ldq-muted);
    font-size: 12px;
    text-align: right;
}

.ldq-option-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ldq-option-pills-stacked {
    grid-template-columns: 1fr;
}

.ldq-pill-option {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--ldq-line);
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ldq-pill-option:hover {
    border-color: #c7e1f9;
    transform: translateY(-1px);
}

.ldq-pill-option:has(input:checked) {
    border-color: var(--ldq-blue);
    background: var(--ldq-blue-soft);
    box-shadow: inset 0 0 0 1px rgba(75, 159, 242, 0.1);
}

.ldq-pill-option input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--ldq-blue);
}

.ldq-pill-option > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ldq-pill-option strong {
    color: var(--ldq-ink);
    font-size: 15px;
}

.ldq-pill-option small {
    color: var(--ldq-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ldq-pill-compact {
    min-height: 54px;
}

.ldq-calendar-instructions,
.ldq-service-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid var(--ldq-blue-line);
    border-radius: 14px;
    color: #476078;
    background: var(--ldq-blue-soft);
}

.ldq-calendar-instructions p,
.ldq-service-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.ldq-info-icon {
    display: grid;
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ldq-blue);
    font-size: 13px;
    font-weight: 900;
}

.ldq-calendar-section {
    margin: 20px 0 28px;
    animation: ldqReveal 320ms ease both;
}

@keyframes ldqReveal {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.ldq-calendar {
    max-width: 520px;
    padding: 18px;
    border: 1px solid var(--ldq-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(49, 71, 92, 0.06);
}

.ldq-calendar-header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.ldq-calendar-header strong {
    color: var(--ldq-ink);
    font-size: 16px;
    text-transform: capitalize;
}

.ldq-calendar-nav {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--ldq-line);
    border-radius: 10px;
    cursor: pointer;
    color: var(--ldq-gray);
    background: #fff;
    font-size: 24px;
    line-height: 1;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ldq-calendar-nav:hover:not(:disabled) {
    border-color: var(--ldq-blue-line);
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
}

.ldq-calendar-nav:disabled {
    cursor: default;
    opacity: .35;
}

.ldq-calendar-weekdays,
.ldq-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
}

.ldq-calendar-weekdays {
    margin-bottom: 6px;
}

.ldq-calendar-weekdays span {
    padding: 5px 0;
    color: #8b959e;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.ldq-calendar-day,
.ldq-calendar-empty {
    aspect-ratio: 1;
}

.ldq-calendar-day {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    color: var(--ldq-ink);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    transition: color 150ms ease, background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.ldq-calendar-day:hover:not(:disabled) {
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
}

.ldq-calendar-day.is-today {
    box-shadow: inset 0 0 0 1px var(--ldq-blue);
}

.ldq-calendar-day.is-selected {
    color: #fff;
    background: var(--ldq-blue);
    box-shadow: 0 7px 14px rgba(75, 159, 242, 0.23);
    transform: scale(.97);
}

.ldq-calendar-day:disabled {
    cursor: not-allowed;
    color: #c2c9cf;
}

.ldq-selected-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.ldq-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #3f566b;
    background: var(--ldq-blue-soft);
    font-size: 12px;
    font-weight: 700;
}

.ldq-date-chip button {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ldq-gray);
    background: rgba(255,255,255,.75);
    line-height: 1;
}

.ldq-form-grid {
    display: grid;
    gap: 18px;
}

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

.ldq-field-group {
    position: relative;
    margin-bottom: 20px;
}

.ldq-field-group > label,
.ldq-field-group > .ldq-field-group > label {
    display: block;
    margin-bottom: 8px;
    color: var(--ldq-ink);
    font-size: 14px;
    font-weight: 800;
}

.ldq-optional {
    color: var(--ldq-muted);
    font-size: 11px;
    font-weight: 600;
}

.ldq-app input[type="text"],
.ldq-app input[type="email"],
.ldq-app input[type="tel"],
.ldq-app input[type="number"],
.ldq-app input[type="date"],
.ldq-app select,
.ldq-app textarea {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #dbe3e9;
    border-radius: 12px;
    color: var(--ldq-ink);
    background: #fff;
    box-shadow: 0 2px 5px rgba(34, 51, 67, 0.025);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ldq-app select {
    appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ldq-gray) 50%),
        linear-gradient(135deg, var(--ldq-gray) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) calc(50% - 2px),
        calc(100% - 14px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.ldq-app textarea {
    min-height: 128px;
    resize: vertical;
    line-height: 1.55;
}

.ldq-app input::placeholder,
.ldq-app textarea::placeholder {
    color: #a3adb6;
}

.ldq-app input:focus,
.ldq-app select:focus,
.ldq-app textarea:focus {
    border-color: var(--ldq-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(75, 159, 242, 0.1);
}

.ldq-app .has-error,
.ldq-app input.has-error,
.ldq-app select.has-error,
.ldq-app textarea.has-error {
    border-color: var(--ldq-error) !important;
    box-shadow: 0 0 0 3px rgba(201, 74, 74, 0.08) !important;
}

.ldq-field-error {
    min-height: 0;
    margin-top: 6px;
    color: var(--ldq-error);
    font-size: 12px;
    font-weight: 700;
}

.ldq-field-error:empty {
    display: none;
}

.ldq-help {
    display: block;
    margin-top: 6px;
    color: var(--ldq-muted);
    font-size: 11px;
    line-height: 1.45;
}

.ldq-number-wrap {
    position: relative;
}

.ldq-number-wrap input {
    padding-right: 74px !important;
}

.ldq-number-wrap > span {
    position: absolute;
    top: 50%;
    right: 14px;
    color: var(--ldq-muted);
    font-size: 12px;
    font-weight: 700;
    transform: translateY(-50%);
}

.ldq-day-selector {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 7px;
}

.ldq-day-option {
    position: relative;
    cursor: pointer;
}

.ldq-day-option input {
    position: absolute;
    opacity: 0;
}

.ldq-day-option span {
    display: grid;
    min-height: 45px;
    place-items: center;
    padding: 7px 4px;
    border: 1px solid var(--ldq-line);
    border-radius: 11px;
    color: var(--ldq-gray);
    background: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    transition: border-color 170ms ease, background 170ms ease, color 170ms ease, transform 170ms ease;
}

.ldq-day-option:hover span {
    border-color: var(--ldq-blue-line);
    color: var(--ldq-blue-dark);
}

.ldq-day-option input:checked + span {
    border-color: var(--ldq-blue);
    color: #fff;
    background: var(--ldq-blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(75, 159, 242, 0.2);
}

.ldq-day-selector.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.ldq-inline-check,
.ldq-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--ldq-gray);
    font-size: 13px;
    line-height: 1.5;
}

.ldq-inline-check {
    margin-top: 12px;
}

.ldq-inline-check input,
.ldq-privacy-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--ldq-blue);
}

.ldq-character-count {
    margin-top: 5px;
    color: var(--ldq-muted);
    font-size: 11px;
    text-align: right;
}

.ldq-service-notice {
    margin: 0 0 20px;
}

.ldq-service-notice > span {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--ldq-blue);
}

.ldq-service-notice svg {
    width: 18px;
    height: 18px;
}

.ldq-summary {
    margin: 5px 0 20px;
    padding: 18px;
    border: 1px solid var(--ldq-line);
    border-radius: 17px;
    background: #f9fbfc;
}

.ldq-summary-heading {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 14px;
}

.ldq-summary-heading > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
}

.ldq-summary-heading strong,
.ldq-summary-heading small {
    display: block;
}

.ldq-summary-heading strong {
    color: var(--ldq-ink);
    font-size: 14px;
}

.ldq-summary-heading small {
    margin-top: 2px;
    color: var(--ldq-muted);
    font-size: 11px;
}

.ldq-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ldq-summary-item {
    padding: 10px 12px;
    border-radius: 11px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #edf1f4;
}

.ldq-summary-item small,
.ldq-summary-item strong {
    display: block;
}

.ldq-summary-item small {
    margin-bottom: 3px;
    color: var(--ldq-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ldq-summary-item strong {
    color: var(--ldq-ink);
    font-size: 13px;
    line-height: 1.4;
}

.ldq-privacy-check {
    padding: 13px 14px;
    border: 1px solid var(--ldq-line);
    border-radius: 12px;
    background: #fff;
}

.ldq-privacy-check a {
    color: var(--ldq-blue-dark);
    font-weight: 800;
}

.ldq-submit-error {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #f0c7c7;
    border-radius: 12px;
    color: #9f3434;
    background: #fff2f2;
    font-size: 13px;
    font-weight: 700;
}

.ldq-state-step {
    max-width: 660px;
    padding-top: 72px;
    text-align: center;
}

.ldq-state-icon {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 28px;
}

.ldq-state-icon svg {
    width: 39px;
    height: 39px;
}

.ldq-state-icon-soft {
    color: var(--ldq-blue-dark);
    background: var(--ldq-blue-soft);
    box-shadow: inset 0 0 0 1px var(--ldq-blue-line);
}

.ldq-state-icon-success {
    color: #fff;
    background: linear-gradient(145deg, #43ac7d, #2d9568);
    box-shadow: 0 15px 30px rgba(47, 154, 107, 0.24);
    font-size: 38px;
    font-weight: 900;
}

.ldq-state-step > p {
    max-width: 570px;
    margin: 0 auto 24px;
}

.ldq-success-reference {
    display: inline-block;
    margin: 0 0 24px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #3f566b;
    background: var(--ldq-blue-soft);
    font-size: 13px;
    font-weight: 800;
}

.ldq-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ldqSpin .75s linear infinite;
}

.is-submitting .ldq-spinner {
    display: inline-block;
}

@keyframes ldqSpin {
    to { transform: rotate(360deg); }
}

.ldq-honeypot {
    position: fixed !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ldq-noscript {
    margin: 20px;
    padding: 14px;
    border-radius: 12px;
    color: #8f3434;
    background: #fff0f0;
    text-align: center;
}

@media (max-width: 820px) {
    .ldq-app {
        padding: 0;
        background: #fff;
    }

    .ldq-ambient {
        display: none;
    }

    .ldq-panel {
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .ldq-header {
        position: sticky;
        top: 0;
        z-index: 15;
        grid-template-columns: 145px 1fr;
        gap: 18px;
        padding: 15px 18px;
        box-shadow: 0 5px 18px rgba(42, 59, 75, 0.04);
    }

    .ldq-brand img {
        width: 145px;
    }

    .ldq-progress-copy {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .ldq-progress-track {
        height: 5px;
    }

    .ldq-form {
        min-height: calc(100dvh - 85px);
    }

    .ldq-step {
        width: calc(100% - 34px);
        padding: 31px 0 20px;
    }

    .ldq-step[data-step="intro"] {
        padding-top: 34px;
    }

    .ldq-intro-visual {
        width: 96px;
        height: 96px;
        border-radius: 28px;
    }

    .ldq-intro-visual svg {
        width: 56px;
        height: 56px;
    }

    .ldq-step h1 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .ldq-step h2 {
        font-size: clamp(27px, 8vw, 36px);
    }

    .ldq-lead,
    .ldq-step-heading > p,
    .ldq-state-step > p {
        font-size: 15px;
    }

    .ldq-navigation {
        position: fixed !important;
        inset: auto 0 0 0 !important;
        z-index: 999999 !important;
        width: 100vw !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 13px 17px calc(13px + env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid var(--ldq-line);
        border-radius: 0;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -8px 22px rgba(41, 59, 75, 0.09);
        backdrop-filter: blur(12px);
        transform: none !important;
    }

    .ldq-app.has-fixed-navigation .ldq-form {
        padding-bottom: calc(94px + env(safe-area-inset-bottom));
    }

    .ldq-choice-grid,
    .ldq-form-grid-two,
    .ldq-summary-grid {
        grid-template-columns: 1fr;
    }

    .ldq-choice-card {
        min-height: 102px;
    }

    .ldq-option-pills {
        grid-template-columns: 1fr;
    }

    .ldq-day-selector {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ldq-field-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .ldq-field-heading > span {
        text-align: left;
    }

    .ldq-calendar {
        max-width: 100%;
    }

    .ldq-property-panel {
        padding: 18px 17px 2px;
        border-radius: 17px;
    }

    .ldq-property-panel-heading h3 {
        font-size: 18px;
    }

    .ldq-state-step {
        padding-top: 48px;
    }
}

@media (max-width: 480px) {
    .ldq-header {
        grid-template-columns: 120px 1fr;
        gap: 12px;
        padding: 12px 14px;
    }

    .ldq-brand img {
        width: 120px;
    }

    .ldq-progress-copy span:last-child {
        display: none;
    }

    .ldq-step {
        width: calc(100% - 28px);
    }

    .ldq-choice-card {
        grid-template-columns: 46px minmax(0, 1fr) 24px;
        gap: 11px;
        padding: 15px;
    }

    .ldq-choice-icon {
        width: 45px;
        height: 45px;
        border-radius: 13px;
    }

    .ldq-choice-copy strong {
        font-size: 15px;
    }

    .ldq-choice-copy small {
        font-size: 12px;
    }

    .ldq-calendar {
        padding: 13px;
    }

    .ldq-calendar-weekdays,
    .ldq-calendar-grid {
        gap: 3px;
    }

    .ldq-navigation .ldq-button {
        min-height: 46px;
        padding-inline: 15px;
        font-size: 13px;
    }

    .ldq-day-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ldq-app *,
    .ldq-app *::before,
    .ldq-app *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
