:root {
    --drq-primary: #0070e0;
    --drq-primary-dark: #0058b3;
    --drq-text: #1f2a3d;
    --drq-text-muted: #60708a;
    --drq-border: #d7e1ef;
    --drq-bg: #ffffff;
    --drq-surface: #f5f9ff;
    --drq-danger: #dc2626;
}

.debt-relief-quiz-wrapper {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid var(--drq-border);
    border-radius: 18px;
    background: var(--drq-bg);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    color: var(--drq-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.debt-relief-quiz-wrapper * {
    box-sizing: border-box;
}

.drq-step {
    display: none;
}

.drq-step.active {
    display: block;
    animation: drqFadeIn 0.25s ease-out;
}

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

.drq-title {
    margin: 0 0 14px;
    text-align: center;
    color: #0f2444;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.drq-subtitle {
    margin: 0 0 18px;
    text-align: center;
    color: var(--drq-text-muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.drq-benefits {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.drq-benefits li {
    position: relative;
    padding-left: 30px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: #22314b;
}

.drq-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 112, 224, 0.12);
    color: var(--drq-primary);
    font-size: 14px;
    font-weight: 800;
}

.drq-options {
    display: grid;
    gap: 10px;
}

.drq-option-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid #bfd0e4;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.drq-option-card:hover {
    border-color: #8eb3e1;
}

.drq-option-card.selected {
    border-color: var(--drq-primary);
    background: #eff6ff;
    box-shadow: 0 0 0 1px rgba(0, 112, 224, 0.18);
}

.drq-option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.drq-option-label {
    width: 100%;
    font-size: 1.06rem;
    font-weight: 600;
    color: #1f2d44;
    text-align: left;
}

.drq-options--amount-buttons .drq-option-card {
    justify-content: center;
}

.drq-options--amount-buttons .drq-option-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.drq-options--amount-buttons .drq-option-label::before {
    content: "$";
    position: absolute;
    left: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--drq-primary);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drq-form-grid {
    display: grid;
    gap: 12px;
}

.drq-form-field input,
.drq-form-field select,
.drq-form-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid #bfd0e4;
    border-radius: 10px;
    background: #fff;
    color: #162946;
    font-size: 1.02rem;
}

.drq-form-field textarea {
    min-height: 120px;
    padding: 12px 14px;
}

.drq-form-field input::placeholder,
.drq-form-field textarea::placeholder {
    color: #627590;
}

.drq-form-field input:focus,
.drq-form-field select:focus,
.drq-form-field textarea:focus {
    border-color: var(--drq-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 112, 224, 0.14);
}

.drq-form-field .drq-error,
.drq-form-field input.drq-error,
.drq-form-field select.drq-error,
.drq-form-field textarea.drq-error {
    border-color: var(--drq-danger);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.drq-step-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.drq-btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    min-height: 54px;
    padding: 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drq-btn-primary {
    flex: 1;
    background: var(--drq-primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 112, 224, 0.24);
}

.drq-btn-primary:hover {
    background: var(--drq-primary-dark);
    transform: translateY(-1px);
}

.drq-btn-primary:disabled {
    background: #9dc3eb;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.drq-btn-secondary {
    width: 40%;
    background: #fff;
    border: 1px solid #c7d5e7;
    color: #3f536f;
}

.drq-btn-secondary:hover {
    background: #f7faff;
}

.drq-interstitial {
    padding: 14px;
    border: 1px solid #dce8f7;
    border-radius: 12px;
    background: var(--drq-surface);
    color: #2a3d58;
    font-size: 0.98rem;
    line-height: 1.6;
}

.drq-success-wrap {
    text-align: center;
}

.drq-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 2px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--drq-primary);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.drq-call-now:hover {
    background: var(--drq-primary-dark);
}

.drq-countdown-wrap {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #d7e5f7;
    border-radius: 12px;
    background: #f4f8ff;
}

.drq-countdown-wrap p {
    margin: 0 0 4px;
    color: #35527d;
    font-size: 0.9rem;
}

.drq-countdown {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #0d3268;
    letter-spacing: 0.04em;
}

.drq-global-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.drq-global-disclaimer svg {
    flex-shrink: 0;
}

.drq-disclaimer-text p {
    margin: 0;
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
}

.drq-disclaimer-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Step 2 Specific Overrides */
.drq-step[data-step-id="step_2"] {
    position: relative;
    padding-top: 40px;
}

/* Badge */
.drq-step2-badge {
    position: absolute;
    top: 0;
    left: -24px;
    background: #1A56DB;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

/* Phone Block */
.drq-step2-phone {
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.drq-step2-phone-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.drq-step2-phone-text strong {
    color: #0f2444;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}
.drq-step2-phone-text span {
    color: #64748b;
    font-size: 11px;
}

/* Progress Bar */
.drq-step2-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 20px;
    max-width: 80%;
}
.drq-prog-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}
.drq-prog-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.drq-prog-step.completed .drq-prog-icon,
.drq-prog-step.active .drq-prog-icon {
    background: #1A56DB;
}
.drq-prog-step span {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}
.drq-prog-step.completed span,
.drq-prog-step.active span {
    color: #1A56DB;
}
.drq-prog-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: -16px 8px 0;
    z-index: 1;
}
.drq-prog-line.completed {
    background: #1A56DB;
}

/* Inner Card */
.drq-inner-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 24px;
    background: #fff;
    position: relative;
}
.drq-avatar-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* 6-Column CSS Grid */
.drq-form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.drq-form-field {
    grid-column: span 6;
}
.drq-field-first_name, .drq-field-last_name {
    grid-column: span 3;
}
.drq-field-city, .drq-field-state, .drq-field-zip_code {
    grid-column: span 2;
}
@media (max-width: 600px) {
    .drq-field-first_name, .drq-field-last_name, .drq-field-city, .drq-field-state, .drq-field-zip_code {
        grid-column: span 6;
    }
}

/* Input Overrides */
.drq-field-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0f2444;
    margin-bottom: 6px;
}
.drq-form-field input,
.drq-form-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 14px;
}
.drq-select-wrapper {
    position: relative;
}
.drq-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #64748b;
    pointer-events: none;
}
.drq-form-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}

/* TCPA Checkbox */
.drq-tcpa-block {
    margin-top: 16px;
}
.drq-tcpa-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.drq-tcpa-label input {
    display: none;
}
.drq-tcpa-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
}
.drq-tcpa-label input:checked + .drq-tcpa-checkbox {
    background: #1A56DB;
    border-color: #1A56DB;
}
.drq-tcpa-label input:not(:checked) + .drq-tcpa-checkbox svg {
    display: none;
}
.drq-tcpa-text {
    font-size: 11px;
    line-height: 1.4;
    color: #0f2444;
    font-weight: 500;
}

/* Custom Submit Button */
.drq-btn-step2 {
    background: #1A56DB !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
}
.drq-btn-step2 span {
    flex: 1;
    text-align: center;
}
.drq-btn-lock { stroke: #fff; opacity: 0.8; }
.drq-btn-arrow { stroke: #fff; }

.drq-step2-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    color: #64748b;
}

/* Trust Footer */
.drq-trust-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.drq-trust-col {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.center-col {
    justify-content: center;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0 15px;
}
.drq-trust-icon-users {
    width: 38px;
    height: 38px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drq-trust-text, .drq-tp-rating, .drq-bbb-text {
    font-size: 10px;
    color: #64748b;
    line-height: 1.3;
}
.drq-trust-text strong, .drq-tp-rating strong, .drq-bbb-text strong {
    color: #0f2444;
    font-size: 12px;
    font-weight: 800;
}
.drq-tp-wrap, .drq-bbb-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.drq-tp-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}
.drq-bbb-wrap {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

@media (max-width: 782px) {
    .debt-relief-quiz-wrapper {
        padding: 18px;
        border-radius: 14px;
    }

    .drq-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 520px) {
    .drq-title {
        font-size: 1.64rem;
    }

    .drq-subtitle {
        font-size: 1rem;
    }

    .drq-benefits li {
        font-size: 0.98rem;
    }

    .drq-option-label,
    .drq-btn,
    .drq-form-field input,
    .drq-form-field select,
    .drq-form-field textarea {
        font-size: 0.98rem;
    }

    .drq-step-actions {
        flex-direction: column;
    }

    .drq-btn-secondary {
        width: 100%;
    }
}
:root {
    --drq-primary: #0070e0;
    --drq-primary-dark: #0058b3;
    --drq-text: #1f2a3d;
    --drq-text-muted: #60708a;
    --drq-border: #d7e1ef;
    --drq-bg: #ffffff;
    --drq-surface: #f5f9ff;
    --drq-danger: #dc2626;
}

.debt-relief-quiz-wrapper {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid var(--drq-border);
    border-radius: 18px;
    background: var(--drq-bg);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    color: var(--drq-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.debt-relief-quiz-wrapper * {
    box-sizing: border-box;
}

.drq-step {
    display: none;
}

.drq-step.active {
    display: block;
    animation: drqFadeIn 0.25s ease-out;
}

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

.drq-title {
    margin: 0 0 14px;
    text-align: center;
    color: #0f2444;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.drq-subtitle {
    margin: 0 0 18px;
    text-align: center;
    color: var(--drq-text-muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.drq-benefits {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.drq-benefits li {
    position: relative;
    padding-left: 30px;
    font-size: 1.08rem;
    line-height: 1.35;
    color: #22314b;
}

.drq-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 112, 224, 0.12);
    color: var(--drq-primary);
    font-size: 14px;
    font-weight: 800;
}

.drq-options {
    display: grid;
    gap: 10px;
}

.drq-option-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid #bfd0e4;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.drq-option-card:hover {
    border-color: #8eb3e1;
}

.drq-option-card.selected {
    border-color: var(--drq-primary);
    background: #eff6ff;
    box-shadow: 0 0 0 1px rgba(0, 112, 224, 0.18);
}

.drq-option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.drq-option-label {
    width: 100%;
    font-size: 1.06rem;
    font-weight: 600;
    color: #1f2d44;
    text-align: left;
}

.drq-options--amount-buttons .drq-option-card {
    justify-content: center;
}

.drq-options--amount-buttons .drq-option-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.drq-options--amount-buttons .drq-option-label::before {
    content: "$";
    position: absolute;
    left: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--drq-primary);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drq-form-grid {
    display: grid;
    gap: 12px;
}

.drq-form-field input,
.drq-form-field select,
.drq-form-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid #bfd0e4;
    border-radius: 10px;
    background: #fff;
    color: #162946;
    font-size: 1.02rem;
}

.drq-form-field textarea {
    min-height: 120px;
    padding: 12px 14px;
}

.drq-form-field input::placeholder,
.drq-form-field textarea::placeholder {
    color: #627590;
}

.drq-form-field input:focus,
.drq-form-field select:focus,
.drq-form-field textarea:focus {
    border-color: var(--drq-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 112, 224, 0.14);
}

.drq-form-field .drq-error,
.drq-form-field input.drq-error,
.drq-form-field select.drq-error,
.drq-form-field textarea.drq-error {
    border-color: var(--drq-danger);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.drq-step-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.drq-btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    min-height: 54px;
    padding: 0 16px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.drq-btn-primary {
    flex: 1;
    background: var(--drq-primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0, 112, 224, 0.24);
}

.drq-btn-primary:hover {
    background: var(--drq-primary-dark);
    transform: translateY(-1px);
}

.drq-btn-primary:disabled {
    background: #9dc3eb;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.drq-btn-secondary {
    width: 40%;
    background: #fff;
    border: 1px solid #c7d5e7;
    color: #3f536f;
}

.drq-btn-secondary:hover {
    background: #f7faff;
}

.drq-interstitial {
    padding: 14px;
    border: 1px solid #dce8f7;
    border-radius: 12px;
    background: var(--drq-surface);
    color: #2a3d58;
    font-size: 0.98rem;
    line-height: 1.6;
}

.drq-success-wrap {
    text-align: center;
}

.drq-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 2px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--drq-primary);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.drq-call-now:hover {
    background: var(--drq-primary-dark);
}

.drq-countdown-wrap {
    margin-top: 16px;
    padding: 12px;
    border: 1px solid #d7e5f7;
    border-radius: 12px;
    background: #f4f8ff;
}

.drq-countdown-wrap p {
    margin: 0 0 4px;
    color: #35527d;
    font-size: 0.9rem;
}

.drq-countdown {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #0d3268;
    letter-spacing: 0.04em;
}

.drq-global-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.drq-global-disclaimer svg {
    flex-shrink: 0;
}

.drq-disclaimer-text p {
    margin: 0;
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
}

.drq-disclaimer-text strong {
    color: #1e293b;
    font-weight: 700;
}

/* Step 2 Specific Overrides */
.drq-step[data-step-id="step_2"] {
    position: relative;
    padding-top: 40px;
}

/* Badge */
.drq-step2-badge {
    position: absolute;
    top: 0;
    left: -24px;
    background: #1A56DB;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

/* Phone Block */
.drq-step2-phone {
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.drq-step2-phone-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.drq-step2-phone-text strong {
    color: #0f2444;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}
.drq-step2-phone-text span {
    color: #64748b;
    font-size: 11px;
}

/* Progress Bar */
.drq-step2-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px auto 20px;
    max-width: 80%;
}
.drq-prog-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}
.drq-prog-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.drq-prog-step.completed .drq-prog-icon,
.drq-prog-step.active .drq-prog-icon {
    background: #1A56DB;
}
.drq-prog-step span {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
}
.drq-prog-step.completed span,
.drq-prog-step.active span {
    color: #1A56DB;
}
.drq-prog-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: -16px 8px 0;
    z-index: 1;
}
.drq-prog-line.completed {
    background: #1A56DB;
}

/* Inner Card */
.drq-inner-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 24px;
    background: #fff;
    position: relative;
}
.drq-avatar-icon {
    width: 52px;
    height: 52px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* 6-Column CSS Grid */
.drq-form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.drq-form-field {
    grid-column: span 6;
}
.drq-field-first_name, .drq-field-last_name {
    grid-column: span 3;
}
.drq-field-city, .drq-field-state, .drq-field-zip_code {
    grid-column: span 2;
}
@media (max-width: 600px) {
    .drq-field-first_name, .drq-field-last_name, .drq-field-city, .drq-field-state, .drq-field-zip_code {
        grid-column: span 6;
    }
}

/* Input Overrides */
.drq-field-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0f2444;
    margin-bottom: 6px;
}
.drq-form-field input,
.drq-form-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 14px;
}
.drq-select-wrapper {
    position: relative;
}
.drq-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #64748b;
    pointer-events: none;
}
.drq-form-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}

/* TCPA Checkbox */
.drq-tcpa-block {
    margin-top: 16px;
}
.drq-tcpa-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.drq-tcpa-label input {
    display: none;
}
.drq-tcpa-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
}
.drq-tcpa-label input:checked + .drq-tcpa-checkbox {
    background: #1A56DB;
    border-color: #1A56DB;
}
.drq-tcpa-label input:not(:checked) + .drq-tcpa-checkbox svg {
    display: none;
}
.drq-tcpa-text {
    font-size: 11px;
    line-height: 1.4;
    color: #0f2444;
    font-weight: 500;
}

/* Custom Submit Button */
.drq-btn-step2 {
    background: #1A56DB !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
}
.drq-btn-step2 span {
    flex: 1;
    text-align: center;
}
.drq-btn-lock { stroke: #fff; opacity: 0.8; }
.drq-btn-arrow { stroke: #fff; }

.drq-step2-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    color: #64748b;
}

/* Trust Footer */
.drq-trust-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.drq-trust-col {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.center-col {
    justify-content: center;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    padding: 0 15px;
}
.drq-trust-icon-users {
    width: 38px;
    height: 38px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drq-trust-text, .drq-tp-rating, .drq-bbb-text {
    font-size: 10px;
    color: #64748b;
    line-height: 1.3;
}
.drq-trust-text strong, .drq-tp-rating strong, .drq-bbb-text strong {
    color: #0f2444;
    font-size: 12px;
    font-weight: 800;
}
.drq-tp-wrap, .drq-bbb-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.drq-tp-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}
.drq-bbb-wrap {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

@media (max-width: 782px) {
    .debt-relief-quiz-wrapper {
        padding: 18px;
        border-radius: 14px;
    }

    .drq-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 520px) {
    .drq-title {
        font-size: 1.64rem;
    }

    .drq-subtitle {
        font-size: 1rem;
    }

    .drq-benefits li {
        font-size: 0.98rem;
    }

    .drq-option-label,
    .drq-btn,
    .drq-form-field input,
    .drq-form-field select,
    .drq-form-field textarea {
        font-size: 0.98rem;
    }

    .drq-step-actions {
        flex-direction: column;
    }

    .drq-btn-secondary {
        width: 100%;
    }
}
:root {
    --drq-primary: #0070e0;
    --drq-primary-dark: #0058b3;
    --drq-text: #1f2937;
    --drq-text-muted: #5f6c80;
    --drq-border: #dce4ef;
    --drq-bg: #ffffff;
    --drq-surface: #f8fbff;
}

.debt-relief-lead-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid var(--drq-border);
    border-radius: 18px;
    background: var(--drq-bg);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    color: var(--drq-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.debt-relief-lead-form * {
    box-sizing: border-box;
}

.drq-step {
    display: none;
}

.drq-step.active {
    display: block;
    animation: drqFadeIn 0.25s ease-out;
}

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

.drq-title {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    color: #0f2444;
}

.drq-subtitle {
    margin: 0 0 18px;
    text-align: center;
    color: var(--drq-text-muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.drq-benefits {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.drq-benefits li {
    position: relative;
    padding-left: 32px;
    font-size: 1.13rem;
    line-height: 1.35;
    color: #1f2d44;
}

.drq-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 112, 224, 0.12);
    color: var(--drq-primary);
    font-weight: 800;
    font-size: 14px;
}

.drq-field-label {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #35445f;
}

.drq-amount-buttons {
    display: grid;
    gap: 10px;
}

.drq-amount-btn {
    width: 100%;
    min-height: 56px;
    border: 1px solid #bdcbe0;
    border-radius: 12px;
    background: #fff;
    color: #1f2d44;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.drq-amount-btn:hover {
    border-color: #8eb3e1;
}

.drq-amount-btn.active {
    border-color: var(--drq-primary);
    background: #f0f7ff;
    box-shadow: 0 0 0 1px rgba(0, 112, 224, 0.2);
}

.drq-primary-btn,
.drq-secondary-btn {
    appearance: none;
    width: 100%;
    border: 0;
    border-radius: 12px;
    min-height: 54px;
    padding: 0 18px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.drq-primary-btn {
    margin-top: 14px;
    background: var(--drq-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 112, 224, 0.24);
}

.drq-primary-btn:hover {
    background: var(--drq-primary-dark);
    transform: translateY(-1px);
}

.drq-primary-btn[disabled] {
    cursor: not-allowed;
    background: #9dc3eb;
    box-shadow: none;
    transform: none;
}

.drq-social-proof {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e5edf7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    text-align: center;
}

.drq-proof-brand {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #16243f;
}

.drq-proof-stars {
    margin: 4px 0 0;
    color: #0b5cc0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.drq-proof-meta {
    margin: 2px 0 0;
    font-size: 0.74rem;
    color: #5d6f8d;
}

.drq-form-grid,
.form-grid {
    display: grid;
    gap: 12px;
}

.drq-form-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #bfcddd;
    border-radius: 10px;
    background: #fff;
    color: #10223e;
    font-size: 1.12rem;
}

.drq-form-field input::placeholder {
    color: #596a84;
}

.drq-form-field input:focus {
    outline: none;
    border-color: var(--drq-primary);
    box-shadow: 0 0 0 3px rgba(0, 112, 224, 0.14);
}

.drq-form-field input.drq-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.12);
}

.drq-details-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.drq-details-actions .drq-primary-btn,
.drq-details-actions .drq-secondary-btn {
    margin-top: 0;
}

.drq-secondary-btn {
    width: 38%;
    background: #fff;
    border: 1px solid #c8d5e6;
    color: #41526f;
}

.drq-secondary-btn:hover {
    background: #f7faff;
}

.drq-submit-btn {
    width: 62%;
}

.drq-disclaimer {
    margin: 16px 0 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: #5f6f89;
}

.drq-disclaimer a {
    color: var(--drq-primary);
    text-decoration: underline;
}

.drq-step-success {
    text-align: center;
}

.drq-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 4px;
    padding: 0 24px;
    border-radius: 12px;
    background: var(--drq-primary);
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
}

.drq-call-now:hover {
    background: var(--drq-primary-dark);
}

.drq-countdown-wrap {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid #d5e4f7;
    border-radius: 12px;
    background: #f5f9ff;
}

.drq-countdown-wrap p {
    margin: 0 0 4px;
    color: #35527d;
    font-size: 0.9rem;
}

.drq-countdown {
    font-size: 2rem;
    font-weight: 800;
    color: #0d3268;
    letter-spacing: 0.04em;
}

.drq-global-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.drq-global-disclaimer svg {
    flex-shrink: 0;
}

.drq-disclaimer-text p {
    margin: 0;
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
}

.drq-disclaimer-text strong {
    color: #1e293b;
    font-weight: 700;
}

@media (max-width: 782px) {
    .debt-relief-lead-form {
        padding: 18px;
        border-radius: 14px;
    }

    .drq-title {
        font-size: 1.95rem;
    }
}

@media (max-width: 520px) {
    .drq-title {
        font-size: 1.72rem;
    }

    .drq-benefits li {
        font-size: 1rem;
    }

    .drq-amount-btn,
    .drq-primary-btn,
    .drq-secondary-btn,
    .drq-form-field input {
        font-size: 1rem;
    }

    .drq-social-proof {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .drq-details-actions {
        flex-direction: column;
    }

    .drq-secondary-btn,
    .drq-submit-btn {
        width: 100%;
    }
}

/* Step-by-step flow overrides (scoped to this wrapper). */
.debt-relief-quiz-wrapper .drq-title {
    font-size: 2rem;
    line-height: 1.2;
}

.debt-relief-quiz-wrapper .drq-subtitle {
    font-size: 1.08rem;
    line-height: 1.55;
}

.debt-relief-quiz-wrapper .drq-option-label {
    font-size: 1.06rem;
}

.debt-relief-quiz-wrapper .drq-form-field input,
.debt-relief-quiz-wrapper .drq-form-field select,
.debt-relief-quiz-wrapper .drq-form-field textarea {
    font-size: 1.02rem;
}

.debt-relief-quiz-wrapper .drq-step-actions {
    display: flex;
    gap: 10px;
}

.drq-global-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}

.drq-global-disclaimer svg {
    flex-shrink: 0;
}

.drq-disclaimer-text p {
    margin: 0;
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
}

.drq-disclaimer-text strong {
    color: #1e293b;
    font-weight: 700;
}

@media (max-width: 782px) {
    .debt-relief-quiz-wrapper .drq-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 520px) {
    .debt-relief-quiz-wrapper .drq-title {
        font-size: 1.64rem;
    }

    .debt-relief-quiz-wrapper .drq-subtitle {
        font-size: 1rem;
    }

    .debt-relief-quiz-wrapper .drq-option-label,
    .debt-relief-quiz-wrapper .drq-form-field input,
    .debt-relief-quiz-wrapper .drq-form-field select,
    .debt-relief-quiz-wrapper .drq-form-field textarea {
        font-size: 0.98rem;
    }

    .debt-relief-quiz-wrapper .drq-step-actions {
        flex-direction: column;
    }
}
/* ==========================================================================
   STEP 3: SUCCESS DASHBOARD STYLES
   ========================================================================== */

/* Expand wrapper when success step is active */
.debt-relief-quiz-wrapper[data-active-step="success_step"] {
    max-width: 1040px;
    background: #ffffff;
    padding: 10px;
}

/* Success Step Base */
.drq-success-wrap {
    display: flex;
    text-align: left;
    flex-direction: column;
    gap: 0;
}

/* Top Bar */
.drq-s3-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 16px 24px;
    box-shadow: none;
    border-bottom: 1px solid #e2e8f0;
}

.drq-s3-badge {
    background: #e0f2fe;
    color: #0284c7;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.drq-s3-green-alert {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 16px;
    border-radius: 8px;
}

.drq-s3-alert-text {
    font-size: 13px;
    color: #166534;
    line-height: 1.4;
}

/* Main Dashboard Card */
.drq-s3-main-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.01);
    overflow: hidden;
}

/* Header Section */
.drq-s3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-bottom: 1px solid #e2e8f0;
}

.drq-s3-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #0f2444;
    line-height: 1.2;
}

.drq-s3-hero-text {
    text-align: center;
}

.drq-s3-hero-title {
    font-size: 18px;
    color: #475569;
    font-weight: 500;
}

.drq-s3-hero-amount {
    font-size: 48px;
    font-weight: 800;
    color: #00b67a;
    line-height: 1;
    margin: 8px 0;
}

.drq-s3-hero-sub {
    font-size: 13px;
    color: #94a3b8;
}

.drq-s3-phone-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eff6ff;
    padding: 12px 20px;
    border-radius: 12px;
}

.drq-s3-phone-text {
    display: flex;
    flex-direction: column;
}

.drq-s3-phone-text strong {
    font-size: 18px;
    color: #1A56DB;
}

.drq-s3-phone-text span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* 3-Column Grid */
.drq-s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px;
}

.drq-s3-col {
    display: flex;
    flex-direction: column;
}

.drq-s3-box {
    flex-grow: 1;
}
.drq-s3-box.drq-s3-box-divider {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.drq-s3-box-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f2444;
    margin: 0 0 16px 0;
    padding-bottom: 0;
    border-bottom: none;
}

.drq-s3-box-sub {
    font-size: 13px;
    color: #64748b;
    margin-top: -8px;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Lists inside boxes */
.drq-s3-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drq-s3-list-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    gap: 16px;
}

.drq-s3-list-item span {
    color: #64748b;
    flex-shrink: 0;
}

.drq-s3-list-item strong {
    color: #0f2444;
    text-align: right;
}

.drq-blue-text {
    color: #1A56DB !important;
}

.drq-green-text {
    color: #00b67a !important;
}

/* Highlight Boxes */
.drq-s3-highlight-box {
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.drq-green-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.drq-blue-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.drq-hl-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drq-icon-green {
    background: #dcfce7;
    color: #166534;
}

.drq-icon-blue {
    background: #dbeafe;
    color: #1A56DB;
}

.drq-hl-text {
    display: flex;
    flex-direction: column;
}

.drq-hl-text span {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drq-hl-text strong {
    font-size: 20px;
    margin: 4px 0;
}

.drq-hl-text small {
    font-size: 11px;
    color: #94a3b8;
}

.drq-s3-fine-print {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 12px;
    line-height: 1.4;
}

/* Timeline */
.drq-s3-timeline {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drq-tl-line {
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #e2e8f0;
}

.drq-tl-step {
    position: relative;
    display: flex;
    text-align: left;
    flex-direction: column;
}

.drq-tl-dot {
    position: absolute;
    left: -20px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid;
    z-index: 1;
}

.drq-tl-blue .drq-tl-dot { border-color: #1A56DB; }
.drq-tl-green .drq-tl-dot { border-color: #00b67a; background: #00b67a; }

.drq-tl-step strong {
    font-size: 14px;
    color: #0f2444;
}

.drq-tl-step span {
    font-size: 13px;
    color: #64748b;
}

/* Use Icons List */
.drq-s3-use-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drq-use-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

.drq-use-icon {
    width: 36px;
    height: 36px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step 3 CTA Button */
.drq-btn-step3 {
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Features Row */
.drq-s3-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.drq-feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.drq-feat-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.drq-feat-icon.drq-icon-green {
    background: #f0fdf4;
}

.drq-feat-text {
    display: flex;
    flex-direction: column;
}

.drq-feat-text strong {
    font-size: 14px;
    color: #0f2444;
}

.drq-feat-text span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.3;
    margin-top: 2px;
}

/* Bottom Trust Footer - Step 3 */
.drq-s3-trust-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: #fff;
}

.drq-s3-trust-footer .drq-trust-col {
    padding: 0 15px;
}

.drq-s3-trust-footer .drq-trust-col:first-child {
    padding-left: 0;
}

.drq-s3-trust-footer .drq-trust-col:last-child {
    padding-right: 0;
    border-left: 1px solid #e2e8f0;
}

/* Responsive Overrides for Step 3 */
@media (max-width: 900px) {
    .drq-s3-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .drq-s3-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .drq-s3-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .drq-s3-top-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .drq-s3-green-alert {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .drq-s3-features {
        grid-template-columns: 1fr;
    }
    
    .drq-s3-trust-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .drq-s3-trust-footer .drq-trust-col {
        border: none !important;
        padding: 0 !important;
        flex-direction: column;
    }
}


/* Fix for Step 2 Mobile Layout (Zoom / Fit issue) */
@media (max-width: 650px) {
    .drq-step.active[data-step-id="step_2"] {
        padding-top: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .drq-step2-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 12px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    .drq-step2-phone {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-bottom: 24px;
        justify-content: center;
        width: 100%;
    }
    .drq-step2-phone-text {
        text-align: left;
    }
}

/* Global Box Sizing Fix for the entire Quiz */
.debt-relief-quiz-wrapper, .debt-relief-quiz-wrapper * {
    box-sizing: border-box !important;
}
