﻿.holland-wrapper {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: visible;
}

.holland-page {
    --primary: #1a2e5a;
    --primary-light: #2a4a8a;
    --accent: #ff6b2b;
    --accent-hover: #ff8c55;
    --bg: #0d1b2a;
    --bg-card: #152238;
    --bg-card-hover: #1c2d4a;
    --text: #ffffff;
    --text-muted: #8b9bb4;
    --text-dim: #5a6d87;
    --success: #00c9a7;
    --border: rgba(255,255,255,0.08);
    width: 100%;
    min-height: auto;
    background: var(--bg);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(42, 74, 138, 0.15) 0%, transparent 60%);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 40px 0 120px 0;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
}

.holland-container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

#hollandForm {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    overflow: visible;
}

/* =========================
   SCREEN
========================= */

.screen {
    display: none;
    width: 100%;
    position: relative;
}

    .screen.active {
        display: block;
    }

/* =========================
   START SCREEN
========================= */

#screen-start.screen.active {
    min-height: auto;
    display: block;
    text-align: center;
}

.hero {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 43, 0.08);
    border: 1px solid rgba(255, 107, 43, 0.15);
    color: var(--accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.hero-stats {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 44px auto;
    display: flex;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 0;
}

.hero-stat {
    flex: 1;
    text-align: center;
    position: relative;
}

    .hero-stat:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--border);
    }

.hero-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 4px;
}

/* =========================
   BUTTONS
========================= */

.holland-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 42px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    max-width: 340px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 107, 43, 0.25);
    transition: all 0.25s ease;
}

    .holland-btn:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
    }

/* =========================
   QUESTION SCREEN
========================= */

#screen-questions.screen.active,
#screen-lead.screen.active {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

#screen-lead.screen.active {
    padding-bottom: 40px;
}

.progress-wrap {
    padding: 16px 0;
}

.progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--success));
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 8px;
}

.question-card,
.locked-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.question-num {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.question-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 36px;
}

.rating-scale {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rating-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .rating-btn:hover,
    .rating-btn.selected {
        border-color: var(--accent);
        background: var(--accent);
        color: #fff;
        transform: scale(1.06);
    }

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 11px;
    color: var(--text-dim);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
}

.nav-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.nav-btn-back {
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.nav-btn-next {
    background: var(--accent);
    color: #fff;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =========================
   LEAD FORM
========================= */

.locked-section {
    text-align: center;
    overflow: visible;
}

.lock-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.locked-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.locked-section p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

        .form-group label span {
            color: var(--accent);
            font-weight: 700;
        }

    .form-group input {
        width: 100%;
        padding: 15px 16px;
        background: #081422;
        border: 1.5px solid var(--border);
        border-radius: 12px;
        color: var(--text);
        font-size: 16px;
        box-sizing: border-box;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group input::placeholder {
            color: var(--text-dim);
        }

/* =========================
   OTHER
========================= */

.hidden-option {
    display: none;
}

.back-link {
    display: block;
    margin-top: 18px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
}

.empty-message {
    padding: 40px 20px;
    text-align: center;
    color: var(--text);
    font-size: 20px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .holland-page {
        padding-top: 20px;
        padding-bottom: 90px;
    }

    .holland-container {
        padding: 0 14px;
    }

    #screen-start.screen.active {
        min-height: auto;
    }

    .hero {
        padding: 30px 10px;
    }

        .hero h1 {
            font-size: 34px;
        }

    .hero-sub {
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: row;
    }

    .question-card,
    .locked-section {
        padding: 22px 18px;
    }

    .question-text {
        font-size: 20px;
    }

    .rating-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .nav-buttons {
        flex-direction: column-reverse;
    }
}


/* =========================
   LANDING CONTENT FROM holland-test.html
========================= */

.divider {
    width: 40px;
    height: 2px;
    background: var(--border);
    margin: 0 auto;
}

.how-section {
    padding: 48px 0;
    text-align: center;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.how-steps {
    display: flex;
    gap: 16px;
}

.how-step {
    flex: 1;
    text-align: center;
    padding: 24px 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 43, 0.12);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.how-step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.how-step-desc {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

.types-section {
    padding: 48px 20px;
    text-align: center;
    background: #111e30;
    margin: 0 -20px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.type-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 8px 14px;
    text-align: center;
    transition: all 0.2s ease;
}

.type-card:hover {
    border-color: var(--type-color, var(--border));
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--type-color);
    margin: 0 auto 10px;
}

.type-letter {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.type-name {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.35;
}

.type-R { --type-color: #f59e0b; }
.type-I { --type-color: #3b82f6; }
.type-A { --type-color: #a855f7; }
.type-S { --type-color: #10b981; }
.type-E { --type-color: #ef4444; }
.type-C { --type-color: #6366f1; }

.bottom-cta {
    text-align: center;
    padding: 60px 0 40px;
}

.bottom-cta-sub {
    font-size: 13px;
    color: var(--text-dim);
    margin: 16px auto 0;
    line-height: 1.6;
    max-width: 760px;
}

.footer {
    text-align: center;
    padding: 28px 0 20px;
    border-top: 1px solid var(--border);
    margin-top: 32px;
}

.footer-logo {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-motto {
    margin: 8px 0 12px;
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
}

.social-btn {
    color: #2a6cb8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-btn:hover {
    color: var(--accent);
}

.footer-note {
    margin: 16px auto 0;
    max-width: 760px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .how-steps {
        flex-direction: column;
        gap: 10px;
    }

    .types-section {
        margin: 0 -14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-cta {
        padding: 44px 0 30px;
    }

    .social-row {
        flex-wrap: wrap;
    }
}
