/* --- Landscape Wizard Security Check (Premium) --- */

.security-check-section-landscape {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.03), transparent 60%);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

/* Left Column */
.sec-left-col {
    padding-right: 20px;
}

.sec-landscape-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.sec-landscape-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 480px;
    line-height: 1.7;
}

/* Right Column (Wizard Card) */
.quiz-wizard-card {
    background: rgba(2, 11, 20, 0.6);
    /* Very dark glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 24px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quiz-wizard-card:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 255, 136, 0.15);
}

/* Wizard Header */
.wizard-header {
    margin-bottom: 40px;
}

#step-count {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-neon);
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wizard-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.wizard-progress-fill {
    width: 20%;
    height: 100%;
    background: var(--accent-neon);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: fadeInSlide 0.5s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-label {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 32px;
    display: block;
    color: var(--text-main);
    line-height: 1.4;
}

.options-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-check {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.02);
}

.option-check:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateX(5px);
}

.option-check input {
    margin-right: 16px;
    accent-color: var(--accent-neon);
    transform: scale(1.2);
}

.option-check span {
    font-size: 1rem;
    color: var(--text-muted);
}

.option-check input:checked+span {
    color: var(--accent-neon);
    font-weight: 500;
}


/* Controls */
.wizard-controls {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    transition: all 0.3s;
    font-weight: 500;
    font-family: inherit;
}

.primary-small {
    background: var(--accent-neon);
    color: #000;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
}

.primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.secondary-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
}

.secondary-ghost:hover:not(:disabled) {
    color: #fff;
    border-color: var(--glass-border);
}

.secondary-ghost:disabled {
    opacity: 0.3;
    cursor: default;
}

.error-msg {
    color: #FF4D4D;
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 20px;
}

/* Result Card Styles (Simplified & Premium) */
.wizard-result-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: zoomIn 0.6s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.result-header-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.score-flash {
    margin-bottom: 40px;
}

#score-text-final {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-neon);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    display: block;
}

.recommendation-box {
    margin-bottom: 50px;
    padding: 20px;
    border-left: 3px solid var(--accent-neon);
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.05), transparent);
    text-align: left;
    width: 100%;
}

#final-recommendation {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
}

.single-result-cta {
    width: 100%;
    text-align: center;
    padding: 18px;
    font-size: 1.1rem;
}


/* Responsive */
@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sec-left-col {
        padding-right: 0;
        text-align: center;
    }

    .sec-landscape-title {
        font-size: 2.2rem;
    }

    .sec-landscape-sub {
        margin: 0 auto 30px;
    }
}