/* Wizard Container - Positioning carefully within the window frame */
.wizard-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden !important;
    min-height: 500px;
    padding-top: 1rem;
    margin-top: -3rem;
    /* Move content up to avoid mountain peak */
}

/* STRICT SCROLL LOCK FOR LANDING PAGE */
html,
body {
    overflow: hidden !important;
    height: 100% !important;
    width: 100% !important;
    position: fixed !important;
    /* Forces iOS to lock too */
}


.wizard-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 400%;
}

.wizard-step {
    width: 25%;
    flex-shrink: 0;
    padding: 2rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
    box-sizing: border-box;
}

/* Active step is visible - stronger selectors */
.wizard-track[data-step="0"] .wizard-step:nth-child(1) {
    opacity: 1 !important;
    pointer-events: auto;
}

.wizard-track[data-step="1"] .wizard-step:nth-child(2) {
    opacity: 1 !important;
    pointer-events: auto;
}

.wizard-track[data-step="2"] .wizard-step:nth-child(3) {
    opacity: 1 !important;
    pointer-events: auto;
}

.wizard-track[data-step="3"] .wizard-step:nth-child(4) {
    opacity: 1 !important;
    pointer-events: auto;
}


/* Typography from Mockup */
.mockup-headline {
    font-family: 'Playfair Display', serif;
    color: #1e293b;
    /* Darker for better visibility */
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
    /* Regular/Medium for Serif */
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    /* Stronger text shadow for visibility */
}

/* Custom Input Styles matching Mockup */
.big-input {
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    border-radius: 200px !important;
    -webkit-border-radius: 200px !important;
    -moz-border-radius: 200px !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.3);
    /* Very transparent to show background */
    box-shadow: none !important;
    /* No shadow */
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: #475569;
    outline: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    /* Input remains clean sans */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.big-input:focus {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.big-input::placeholder {
    color: #64748b;
    font-weight: 400;
}

.option-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.option-btn.selected {
    background: #3B6EA8;
    color: white;
    border-color: #3B6EA8;
}

.nav-btn {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 10;
    padding: 0.5rem 1rem;
}

.nav-btn:hover {
    color: #475569;
}