:root {
    --charcoal: #111312;
    --dark: #191b1a;
    --green: #24301d;
    --lime: #b7d66a;
    --white: #ffffff;
    --gray: #9a9d96;
    --border: rgba(255,255,255,0.12);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: var(--charcoal);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}


button,
input {
    font-family: inherit;
}


/* NAVBAR */

.navbar {
    height: 82px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}


.navbar a {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}


.navbar .logo {
    font-size: 15px;
    letter-spacing: .15em;
}


.navbar .plans-link {
    color: var(--lime);
}


/* MAIN */

.assessment-section {
    min-height: calc(100vh - 82px);
    padding: 90px 20px 120px;
}


.container {
    width: 100%;
    max-width: 760px;
    margin: auto;
}


/* INTRO */

.intro {
    text-align: center;
    max-width: 700px;
    margin: 50px auto 0;
}


.eyebrow {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 20px;
}


.intro h1 {
    font-size: clamp(55px, 9vw, 95px);
    line-height: .88;
    letter-spacing: -.06em;
    margin-bottom: 30px;
}


.intro-text {
    max-width: 550px;
    margin: auto;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}


/* BUTTON */

.lime-button {
    border: 1px solid var(--lime);
    background: var(--lime);
    color: var(--charcoal);
    padding: 20px 32px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    cursor: pointer;
}


.lime-button:hover {
    background: var(--white);
    border-color: var(--white);
}


/* ASSESSMENT */

.assessment {
    display: none;
}


.assessment.show {
    display: block;
}


/* TOP */

.top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}


.top-row span:last-child {
    color: var(--lime);
}


/* PROGRESS */

.progress {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,.12);
    margin-bottom: 65px;
}


#progressBar {
    height: 100%;
    width: 12.5%;
    background: var(--lime);
    transition: width .3s ease;
}


/* QUESTIONS */

.question {
    display: none;
}


.question.active {
    display: block;
}


.question-number {
    color: var(--lime);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 17px;
}


.question h2,
.contact h2 {
    font-size: clamp(38px, 6vw, 58px);
    line-height: .98;
    letter-spacing: -.045em;
    margin-bottom: 35px;
}


/* OPTIONS */

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.options label {
    min-height: 65px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    background: var(--dark);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: .2s ease;
}


.options label:hover {
    border-color: var(--lime);
    transform: translateX(3px);
}


.options input {
    display: none;
}


.options label span {
    width: 100%;
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
}


.options label span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #747970;
    border-radius: 50%;
    margin-right: 15px;
    vertical-align: middle;
}


.options label:has(input:checked) {
    background: var(--green);
    border-color: var(--lime);
}


.options label:has(input:checked) span::before {
    border-color: var(--lime);
    background: var(--lime);
    box-shadow: inset 0 0 0 5px var(--green);
}


/* PACKAGE */

.options strong {
    display: block;
    font-size: 16px;
    margin-left: 35px;
}


.options small {
    display: block;
    color: var(--gray);
    font-size: 13px;
    margin-top: 4px;
    margin-left: 35px;
}


/* CONTACT */

.contact {
    display: none;
}


.contact.show {
    display: block;
}


.contact > p:not(.question-number) {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}


.contact input {
    display: block;
    width: 100%;
    height: 62px;
    margin-bottom: 12px;
    padding: 0 18px;
    background: var(--dark);
    color: var(--white);
    border: 1px solid var(--border);
    outline: none;
    font-size: 16px;
}


.contact input::placeholder {
    color: #777b74;
}


.contact input:focus {
    border-color: var(--lime);
}


/* NAVIGATION */

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}


.back,
.next {
    height: 58px;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    cursor: pointer;
}


.back {
    color: var(--gray);
    background: transparent;
    border: 1px solid var(--border);
}


.next {
    margin-left: auto;
    color: var(--charcoal);
    background: var(--lime);
    border: 1px solid var(--lime);
}


.next:hover {
    background: var(--white);
    border-color: var(--white);
}


/* FOOTER */

footer {
    padding: 35px 20px;
    text-align: center;
    background: #0c0d0c;
    border-top: 1px solid var(--border);
}


footer strong {
    font-size: 12px;
    letter-spacing: .14em;
}


footer p {
    color: #777b74;
    font-size: 11px;
    margin-top: 8px;
}


/* MOBILE */

@media (max-width: 650px) {

    .navbar {
        height: 70px;
        padding: 0 20px;
    }


    .navbar .logo {
        font-size: 13px;
    }


    .navbar a {
        font-size: 10px;
    }


    .assessment-section {
        padding: 60px 18px 90px;
    }


    .intro {
        margin-top: 30px;
    }


    .intro h1 {
        font-size: 54px;
    }


    .intro-text {
        font-size: 15px;
    }


    .lime-button {
        width: 100%;
    }


    .progress {
        margin-bottom: 45px;
    }


    .question h2,
    .contact h2 {
        font-size: 36px;
    }


    .options label {
        min-height: 60px;
        padding: 14px 15px;
    }


    .options label span {
        font-size: 15px;
    }


    .navigation {
        margin-top: 25px;
    }


    .back,
    .next {
        height: 54px;
        padding: 0 17px;
    }


    .contact input {
        height: 58px;
    }

}