/* ============================================
   FINANCING FORM STYLES
   ============================================ */

/* Page Header */
.page-header--financing {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    padding: var(--space-16) 0;
    text-align: center;
}

.page-header--financing .page-header__title {
    color: #fff;
}

.page-header--financing .page-header__subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-top: var(--space-2);
}

.page-header--financing .page-header__breadcrumb a,
.page-header--financing .page-header__breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.page-header--financing .page-header__breadcrumb a:hover {
    color: #fff;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.financing-main {
    padding: var(--space-12, 3rem) 0;
    background: var(--brand-bg-alt, #f9fafb);
}

.financing-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-8, 2rem);
    align-items: start;
}

.financing-layout__info {
    position: sticky;
    top: var(--space-8, 2rem);
}

.financing-layout__form {
    min-width: 0;
}

/* Financing Intro */
.financing-intro__content {
    margin-bottom: var(--space-8, 2rem);
}

.financing-intro__content h2 {
    font-size: var(--text-2xl, 1.5rem);
    margin-bottom: var(--space-4, 1rem);
    color: var(--brand-text-primary, #1f2937);
}

.financing-intro__content .lead {
    font-size: var(--text-base, 1rem);
    color: var(--brand-text-secondary, #6b7280);
    margin-bottom: var(--space-6, 1.5rem);
    line-height: 1.6;
}

/* Benefits List */
.financing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financing-benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3, 0.75rem);
    padding: var(--space-2, 0.5rem) 0;
    font-size: var(--text-sm, 0.875rem);
    color: var(--brand-text-primary, #1f2937);
}

.financing-benefits-list svg {
    flex-shrink: 0;
    color: var(--brand-success, #22c55e);
}

/* Steps - Vertical List */
.financing-steps {
    background: var(--brand-surface, #fff);
    padding: var(--space-6, 1.5rem);
    border-radius: var(--radius-xl, 0.75rem);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

.financing-steps h3 {
    font-size: var(--text-lg, 1.125rem);
    margin-bottom: var(--space-4, 1rem);
    color: var(--brand-text-primary, #1f2937);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4, 1rem);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3, 0.75rem);
}

.step-item__number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--brand-accent, #dc3545);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm, 0.875rem);
    font-weight: 700;
}

.step-item__content h4 {
    font-size: var(--text-sm, 0.875rem);
    font-weight: 600;
    margin: 0 0 var(--space-1, 0.25rem) 0;
    color: var(--brand-text-primary, #1f2937);
}

.step-item__content p {
    font-size: var(--text-xs, 0.75rem);
    color: var(--brand-text-secondary, #6b7280);
    margin: 0;
    line-height: 1.5;
}

/* Form Container - Remove separate section padding */
.financing-form-section {
    background: var(--brand-bg-alt);
    padding: var(--space-16) 0;
}

.financing-form-container {
    background: var(--brand-surface, #fff);
    border-radius: var(--radius-2xl, 1rem);
    box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04));
}

.financing-form-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #fff;
    padding: var(--space-8);
    text-align: center;
    border-radius: var(--radius-2xl, 1rem) var(--radius-2xl, 1rem) 0 0;
}

.financing-form-header h2 {
    color: #fff;
    margin-bottom: var(--space-2);
}

.financing-form-header p {
    opacity: 0.9;
    margin: 0;
}

/* FAQ Section */
.financing-faq {
    padding: var(--space-16) 0;
}

.financing-faq .section-title {
    margin-bottom: var(--space-10);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--brand-surface);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--brand-text-primary);
}

.faq-item p {
    color: var(--brand-text-secondary);
    margin: 0;
    font-size: var(--text-sm);
}

/* Form Wrapper */
.financing-form-wrapper {
    padding: 0;
}

/* ============================================
   WIZARD PROGRESS INDICATOR
   ============================================ */
.wizard-progress {
    padding: var(--space-6) var(--space-8);
    background: var(--brand-bg-alt);
    position: relative;
}

.wizard-progress__track {
    position: absolute;
    top: calc(var(--space-6) + 20px);
    left: var(--space-12);
    right: var(--space-12);
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-progress__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--brand-accent);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

.wizard-progress__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.wizard-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-step-indicator:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.wizard-step-indicator__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-base);
    color: #6b7280;
    transition: all 0.3s ease;
}

.wizard-step-indicator__label {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--brand-text-secondary);
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Active step */
.wizard-step-indicator.active .wizard-step-indicator__number {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.wizard-step-indicator.active .wizard-step-indicator__label {
    color: var(--brand-accent);
    font-weight: 600;
}

/* Completed step */
.wizard-step-indicator.completed .wizard-step-indicator__number {
    background: #fff;
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.wizard-step-indicator.completed .wizard-step-indicator__number::after {
    content: '✓';
    font-size: var(--text-sm);
}

.wizard-step-indicator.completed .wizard-step-indicator__label {
    color: var(--brand-accent);
}

/* ============================================
   WIZARD STEP CONTENT
   ============================================ */
#financing-form {
    padding: var(--space-8);
    border-radius: 0 0 var(--radius-2xl, 1rem) var(--radius-2xl, 1rem);
    background: var(--brand-surface, #fff);
}

.wizard-steps-container {
    position: relative;
}

.wizard-step {
    display: none;
    animation: wizardFadeIn 0.4s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wizard-step__header h2 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-text-primary);
    margin: 0 0 var(--space-2) 0;
}

.wizard-step__header p {
    color: var(--brand-text-secondary);
    margin: 0;
    font-size: var(--text-sm);
}

.wizard-step__content {
    margin-top: var(--space-6);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-row {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group--half {
    flex: 1;
    min-width: 0;
}

.form-group--third {
    flex: 1;
    min-width: 0;
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--brand-text-primary);
    margin-bottom: var(--space-2);
}

.form-label__optional {
    font-weight: 400;
    color: var(--brand-text-secondary);
    font-size: var(--text-xs);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid #d1d5db;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: all 0.2s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.is-invalid {
    border-color: #ef4444;
}

.form-control:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}

.form-hint {
    font-size: var(--text-xs);
    color: var(--brand-text-secondary);
    margin-top: var(--space-1);
}

.invalid-feedback {
    color: #ef4444;
    font-size: var(--text-sm);
    margin-top: var(--space-1);
}

/* Input with prefix (currency) */
.input-with-prefix {
    position: relative;
}

.input-with-prefix .input-prefix {
    position: absolute;
    left: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-text-secondary);
    font-weight: 500;
}

.input-with-prefix .form-control {
    padding-left: var(--space-8);
}

/* Form Sections */
.form-section {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid #e5e7eb;
}

.form-section__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--brand-text-primary);
}

.form-section__desc {
    font-size: var(--text-sm);
    color: var(--brand-text-secondary);
    margin-bottom: var(--space-4);
}

/* ============================================
   VEHICLE TYPE SELECTION (Step 1)
   ============================================ */
.vehicle-type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    align-items: stretch;
}

.vehicle-type-option {
    cursor: pointer;
    display: flex;
}

.vehicle-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vehicle-type-option__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: var(--space-6);
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.vehicle-type-option:hover .vehicle-type-option__card {
    border-color: var(--brand-accent);
    background: #fafafa;
}

.vehicle-type-option input:checked ~ .vehicle-type-option__card {
    border-color: var(--brand-accent);
    background: rgba(220, 53, 69, 0.05);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.vehicle-type-option__card svg {
    color: var(--brand-text-secondary);
    margin-bottom: var(--space-3);
    transition: color 0.3s ease;
}

.vehicle-type-option input:checked ~ .vehicle-type-option__card svg {
    color: var(--brand-accent);
}

.vehicle-type-option__title {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--brand-text-primary);
    margin-bottom: var(--space-1);
}

.vehicle-type-option__desc {
    font-size: var(--text-xs);
    color: var(--brand-text-secondary);
}

/* Vehicle Selection Containers */
.vehicle-selection {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid #e5e7eb;
    overflow: visible;
    position: relative;
}

/* ============================================
   INVENTORY SEARCH
   ============================================ */
.search-input-wrapper {
    position: relative;
    z-index: 10;
}

/* Ensure search results appear above other form elements */
.vehicle-selection--inventory .form-group {
    position: relative;
    z-index: 10;
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-text-secondary);
    pointer-events: none;
}

.search-input-wrapper .form-control {
    padding-right: var(--space-10);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-md, 0.375rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 99999;
}

.search-results__loading,
.search-results__empty,
.search-results__error {
    padding: var(--space-4);
    text-align: center;
    color: var(--brand-text-secondary);
    font-size: var(--text-sm);
}

.search-results__error {
    color: #ef4444;
}

.search-result-item {
    padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
    background: #fff;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-item__title {
    font-weight: 600;
    font-size: var(--text-base, 1rem);
    color: var(--brand-text-primary, #1f2937);
}

.search-result-item__details {
    display: flex;
    gap: var(--space-3, 0.75rem);
    font-size: var(--text-sm, 0.875rem);
    color: var(--brand-text-secondary, #6b7280);
    margin-top: var(--space-1, 0.25rem);
}

.search-result-item__details span {
    display: inline-flex;
    align-items: center;
}

/* Selected Vehicle Display */
.selected-vehicle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    background: rgba(220, 53, 69, 0.05);
    border: 2px solid var(--brand-accent);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
}

.selected-vehicle__info h4 {
    font-weight: 600;
    font-size: var(--text-base);
    margin: 0 0 var(--space-1) 0;
}

.selected-vehicle__info p {
    font-size: var(--text-sm);
    color: var(--brand-text-secondary);
    margin: 0;
}

.selected-vehicle__remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.selected-vehicle__remove:hover {
    background: #ef4444;
    color: #fff;
}

/* ============================================
   INFO BOX (No Vehicle Message)
   ============================================ */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--radius-lg);
    color: #0369a1;
}

.info-box svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    margin: 0;
    font-size: var(--text-sm);
}

/* ============================================
   REVIEW STEP (Step 5)
   ============================================ */
.review-summary {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.review-section {
    background: #f9fafb;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.review-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid #e5e7eb;
}

.review-section__header h3 {
    font-size: var(--text-base);
    font-weight: 600;
    margin: 0;
    color: var(--brand-text-primary);
}

.review-section__edit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--brand-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.review-section__edit:hover {
    background: rgba(220, 53, 69, 0.1);
}

.review-section__content {
    font-size: var(--text-sm);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.review-item--full {
    grid-column: span 2;
}

.review-item__label {
    font-size: var(--text-xs);
    color: var(--brand-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-item__value {
    font-weight: 500;
    color: var(--brand-text-primary);
}

.review-placeholder {
    color: var(--brand-text-secondary);
    font-style: italic;
}

/* ============================================
   CONSENT SECTION
   ============================================ */
.consent-section {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: #f9fafb;
    border-radius: var(--radius-lg);
}

.consent-section__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.consent-checkbox {
    margin-bottom: var(--space-3);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: var(--radius-sm);
    background: #fff;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-label input:checked ~ .checkbox-custom {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: var(--brand-text-primary);
}

.required-indicator {
    color: #ef4444;
}

/* ============================================
   PRIVACY NOTICE
   ============================================ */
.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: #f3f4f6;
    border-radius: var(--radius-lg);
    margin-top: var(--space-6);
}

.privacy-notice svg {
    flex-shrink: 0;
    color: var(--brand-text-secondary);
}

.privacy-notice p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--brand-text-secondary);
    line-height: 1.5;
}

/* ============================================
   WIZARD NAVIGATION BUTTONS
   ============================================ */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid #e5e7eb;
    gap: var(--space-4);
}

.wizard-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wizard-nav__btn--prev {
    background: var(--brand-surface);
    border-color: #e5e7eb;
    color: var(--brand-text-secondary);
}

.wizard-nav__btn--prev:hover:not(:disabled) {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.wizard-nav__btn--next,
.wizard-nav__btn--submit {
    background: var(--brand-accent);
    color: #fff;
    margin-left: auto;
}

.wizard-nav__btn--next:hover:not(:disabled),
.wizard-nav__btn--submit:hover:not(:disabled) {
    background: var(--brand-primary);
    transform: translateX(4px);
}

.wizard-nav__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-nav__btn svg {
    width: 20px;
    height: 20px;
}

.wizard-nav__btn .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.wizard-success {
    text-align: center;
    padding: var(--space-12) var(--space-8);
    display: none;
}

.wizard-success__icon {
    color: var(--brand-success, #22c55e);
    margin-bottom: var(--space-6);
}

.wizard-success h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--brand-text-primary);
}

.wizard-success p {
    color: var(--brand-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-success .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    background: var(--brand-accent);
    color: #fff;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wizard-success .btn:hover {
    background: var(--brand-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .financing-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6, 1.5rem);
    }

    .financing-layout__info {
        position: static;
    }

    .financing-layout__form {
        order: -1;
    }
}

@media (max-width: 767px) {
    .financing-main {
        padding: var(--space-8, 2rem) 0;
    }

    #financing-form {
        padding: var(--space-6);
    }

    .financing-form-header {
        padding: var(--space-6);
    }

    .wizard-progress {
        padding: var(--space-4);
    }

    .wizard-progress__track {
        left: var(--space-6);
        right: var(--space-6);
    }

    .wizard-step-indicator__number {
        width: 32px;
        height: 32px;
        font-size: var(--text-sm);
    }

    .wizard-step-indicator__label {
        font-size: 10px;
    }

    .wizard-nav {
        flex-wrap: wrap;
    }

    .wizard-nav__btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group--half,
    .form-group--third {
        flex: none;
        width: 100%;
    }

    .vehicle-type-options {
        grid-template-columns: 1fr;
    }

    .vehicle-type-option__card {
        flex-direction: row;
        text-align: left;
        gap: var(--space-4);
        padding: var(--space-4);
    }

    .vehicle-type-option__card svg {
        margin-bottom: 0;
    }

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

    .review-item--full {
        grid-column: span 1;
    }

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

@media (max-width: 480px) {
    .wizard-step-indicator__label {
        display: none;
    }

    .wizard-progress__track {
        left: var(--space-4);
        right: var(--space-4);
    }

    .selected-vehicle {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .consent-section {
        padding: var(--space-4);
    }
}
