/* ============================================
   WIZARD - Hasta Ön Değerlendirme
   Multi-Step Form Styles
   ============================================ */

/* === Page Hero === */
.wizard-hero {
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.wizard-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.15);
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.wizard-hero__title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.wizard-hero__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Wizard Wrapper === */
.wizard {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}
.wizard__wrapper {
    max-width: 740px;
    margin: 0 auto;
    border-radius: var(--radius-3xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.wizard__wrapper.glass-card:hover {
    transform: none;
}

/* === Progress Bar === */
.wizard__progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    overflow: hidden;
}
.wizard__progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    border-radius: var(--radius-full);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

/* === Step Dots === */
.wizard__dots {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}
.wizard__dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.wizard__dot-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.wizard__dot-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.wizard__dot--active .wizard__dot-circle {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.3);
}
.wizard__dot--active .wizard__dot-label {
    color: var(--cyan);
}
.wizard__dot--completed .wizard__dot-circle {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    border-color: var(--cyan);
    color: var(--bg-body);
}
.wizard__dot--completed .wizard__dot-label {
    color: var(--text-secondary);
}

/* === Steps === */
.wizard__step {
    display: none;
}
.wizard__step--active {
    display: block;
    animation: wizardFadeIn 0.4s ease-out;
}
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Step Header === */
.wizard__step-header {
    text-align: center;
    margin-bottom: 32px;
}
.wizard__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.1);
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.wizard__step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.wizard__step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Cards Grid === */
.wizard__cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.wizard__cards-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto;
}

/* === Selection Card === */
.wizard__card {
    cursor: pointer;
    display: block;
}
.wizard__card-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.wizard__card-inner {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.5), rgba(4, 11, 22, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.wizard__card-inner:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.wizard__card-input:checked + .wizard__card-inner {
    border-color: var(--cyan);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.15), inset 0 0 0 1px rgba(56, 189, 248, 0.2);
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0.6));
}
.wizard__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--cyan);
    font-size: 1.15rem;
    transition: var(--transition);
}
.wizard__card-input:checked + .wizard__card-inner .wizard__card-icon {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}
.wizard__card-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}
.wizard__card-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--bg-body);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}
.wizard__card-input:checked + .wizard__card-inner .wizard__card-check {
    display: flex;
}

/* === Form Fields === */
.wizard__field {
    margin-bottom: 24px;
}
.wizard__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.wizard__input,
.wizard__select,
.wizard__textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}
.wizard__input:focus,
.wizard__select:focus,
.wizard__textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}
.wizard__input::placeholder,
.wizard__textarea::placeholder {
    color: var(--text-muted);
}
.wizard__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 42px;
    cursor: pointer;
}
.wizard__select option {
    background: #0d1f3c;
    color: var(--text-primary);
}
.wizard__textarea {
    min-height: 100px;
    resize: vertical;
}

/* === Pain Slider === */
.wizard__slider {
    padding: 8px 0;
}
.wizard__slider-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.wizard__slider-desc {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}
.wizard__slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--green) 0%, var(--amber) 50%, var(--red) 100%);
    outline: none;
    cursor: pointer;
}
.wizard__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--text-white);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}
.wizard__slider input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
}
.wizard__slider input[type="range"]::-moz-range-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--text-white);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
    cursor: pointer;
}
.wizard__slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === Conditional Fields === */
.wizard__conditional {
    display: none;
    margin-top: 24px;
}
.wizard__conditional--visible {
    display: block;
    animation: wizardFadeIn 0.3s ease-out;
}

/* === Divider === */
.wizard__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 28px 0;
}

/* === Navigation === */
.wizard__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
}
.wizard__nav-prev {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.wizard__nav-prev:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}
.wizard__nav-prev[disabled] {
    opacity: 0;
    pointer-events: none;
}
.wizard__nav-next,
.wizard__nav-submit {
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.wizard__nav-next {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25);
    margin-left: auto;
}
.wizard__nav-next:hover {
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}
.wizard__nav-submit {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
    margin-left: auto;
    font-size: 0.9rem;
    padding: 14px 36px;
}
.wizard__nav-submit:hover {
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    transform: translateY(-2px);
}

/* === Validation Error === */
.wizard__error {
    color: var(--red);
    font-size: 0.78rem;
    margin-top: 8px;
    display: none;
}
.wizard__error--visible {
    display: block;
    animation: wizardFadeIn 0.2s ease;
}
.wizard__field--error .wizard__input,
.wizard__field--error .wizard__select {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* === KVKK Checkbox === */
.wizard__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.wizard__checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin-top: 2px;
}
.wizard__checkbox input[type="checkbox"]:checked {
    background: var(--cyan);
    border-color: var(--cyan);
}
.wizard__checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-body);
    font-size: 0.7rem;
    font-weight: 800;
}
.wizard__checkbox-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.wizard__checkbox-text a {
    color: var(--cyan);
    text-decoration: underline;
}

/* === Success Panel === */
.wizard__success {
    display: none;
    text-align: center;
    padding: 40px 0;
}
.wizard__success--visible {
    display: block;
    animation: wizardFadeIn 0.5s ease-out;
}
.wizard__success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    animation: wizardSuccessPulse 2s ease infinite;
}
@keyframes wizardSuccessPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 0 60px rgba(34, 197, 94, 0.5); }
}
.wizard__success-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}
.wizard__success-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.wizard__success-reset {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.wizard__success-reset:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* === Wizard CTA Widget === */
.wizard-cta {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.wizard-cta__card {
    border-radius: var(--radius-3xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.wizard-cta__card.glass-card:hover {
    transform: none;
}
.wizard-cta__glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.wizard-cta__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}
.wizard-cta__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.wizard-cta__quick-select {
    margin-bottom: 32px;
}
.wizard-cta__quick-select .wizard__cards-grid {
    max-width: 560px;
    margin: 0 auto;
    gap: 12px;
}
.wizard-cta__quick-select .wizard__card-inner {
    padding: 16px 12px;
}
.wizard-cta__quick-select .wizard__card-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.wizard-cta__quick-select .wizard__card-label {
    font-size: 0.75rem;
}
.wizard-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.wizard-cta__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.wizard-cta__trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.wizard-cta__trust i {
    color: var(--cyan);
    font-size: 0.72rem;
}

/* === Landing Page: Benefits Section === */
.wizard-benefits {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.wizard-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.wizard-benefits__item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
}
.wizard-benefits__item.glass-card:hover {
    transform: translateY(-4px);
}
.wizard-benefits__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(37, 99, 235, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--cyan);
    font-size: 1.2rem;
}
.wizard-benefits__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.wizard-benefits__text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Landing Page: How It Works Section === */
.wizard-steps-info {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}
.wizard-steps-info__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}
.wizard-steps-info__item {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
    position: relative;
}
.wizard-steps-info__number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}
.wizard-steps-info__item h3 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}
.wizard-steps-info__item p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === FAQ Section (wizard page) === */
.wizard-faq {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

/* ============================================
   WIZARD MODAL
   ============================================ */
.wizard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.wizard-modal--open {
    display: flex;
}
.wizard-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}
.wizard-modal__container {
    position: relative;
    width: 100%;
    max-width: 780px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #0a1628, #040b16);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: var(--radius-3xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(56, 189, 248, 0.05);
    animation: wizardModalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 16px;
    overflow: hidden;
}
@keyframes wizardModalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.wizard-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.wizard-modal__header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: 0.88rem;
    font-weight: 600;
}
.wizard-modal__header-left i {
    font-size: 0.85rem;
}
.wizard-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}
.wizard-modal__close:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(239, 68, 68, 0.1);
}
.wizard-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px 32px;
    -webkit-overflow-scrolling: touch;
}
.wizard-modal__body .wizard__wrapper {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}
body.wizard-modal-open {
    overflow: hidden;
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(4, 11, 22, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}
.mobile-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 8px;
    border-radius: var(--radius);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}
.mobile-bar__btn i {
    font-size: 1.1rem;
}
.mobile-bar__btn:active {
    transform: scale(0.95);
}
.mobile-bar__btn--primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--text-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25);
}
.mobile-bar__btn--green {
    color: var(--green);
}
.mobile-bar__btn--green i {
    font-size: 1.2rem;
}

/* === Responsive === */
@media (max-width: 1023px) {
    .wizard-hero__title {
        font-size: 2rem;
    }
    .wizard__wrapper {
        padding: 36px 28px;
    }
    .wizard-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* Show mobile bottom bar */
    .mobile-bar {
        display: grid;
    }
    /* Add bottom padding for mobile bar */
    body {
        padding-bottom: 72px;
    }
    /* Modal fullscreen on mobile */
    .wizard-modal__container {
        max-height: 100vh;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }
    .wizard-modal__body {
        padding: 20px 16px 24px;
    }
    .wizard-hero {
        padding: 80px 0 24px;
    }
    .wizard-hero__title {
        font-size: 1.6rem;
    }
    .wizard-hero__desc {
        font-size: 0.92rem;
    }
    .wizard__wrapper {
        padding: 24px 16px;
        border-radius: var(--radius-xl);
    }
    .wizard__dots {
        gap: 16px;
        margin-bottom: 28px;
    }
    .wizard__dot-circle {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    .wizard__dot-label {
        display: none;
    }
    .wizard__cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wizard__cards-grid--two {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    .wizard__card-inner {
        padding: 18px 12px;
    }
    .wizard__card-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .wizard__step-title {
        font-size: 1.25rem;
    }
    .wizard__slider-value {
        font-size: 2.5rem;
    }
    .wizard__nav {
        flex-direction: column;
    }
    .wizard__nav-prev,
    .wizard__nav-next,
    .wizard__nav-submit {
        width: 100%;
        justify-content: center;
    }
    .wizard__nav-prev {
        order: 2;
    }
    .wizard__nav-next,
    .wizard__nav-submit {
        order: 1;
        margin-left: 0;
    }
    .wizard-cta__card {
        padding: 32px 20px;
    }
    .wizard-cta__title {
        font-size: 1.4rem;
    }
    .wizard-cta__quick-select .wizard__cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wizard-cta__actions {
        flex-direction: column;
        align-items: center;
    }
    .wizard-cta__actions .btn {
        width: 100%;
    }
    .wizard-benefits__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .wizard-benefits__item {
        padding: 24px 16px;
    }
    .wizard-steps-info__grid {
        gap: 16px;
    }
    .wizard-steps-info__item {
        min-width: 130px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .wizard__cards-grid {
        grid-template-columns: 1fr;
    }
    .wizard__cards-grid--two {
        grid-template-columns: repeat(2, 1fr);
    }
    .wizard-cta__quick-select .wizard__cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}
