/*====================================================
Questionnaire
====================================================*/

.wh-questionnaire {
    --bg: #0d0c0c;
    --card: #1b1b1d;
    --card-border: #2d2d2d;
    --text: #ffffff;
    --muted: #9d9d9d;

    display: flex;
    overflow: hidden;

   /* background: var(--bg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    min-height: 650px;
    position: relative;*/
}

.wh-questionnaire .btn-fill {
    font-family: var(--fontfamily-archivo);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: var(--rounded-full);
    background: var(--green-200);
    display: flex;
    flex-flow: row;
    align-items: center;
    cursor: pointer;
    color: var(--black);
    line-height: 1.5;
    gap: 12px;
}

.wh-questionnaire .btn-fill img{
    width: 20px;
    height: 20px;
    margin-left: 12px;
}

/*====================================================
INTRO
====================================================*/

.questionnaire-intro {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: var(--rounded-xl);
    max-width: 867px;
    margin: auto;
    
}

.questionnaire-main {
    display: none;
    border-radius: var(--rounded-xl);
    background: var(--black-base);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 1002px;
    margin: auto;
}

.questionnaire-intro.active {
    display: block;
}

.questionnaire-main.active {
    display: flex;
}

.intro-background {
    position: absolute;
    inset: 0;
}

.intro-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 12, 12, 0.60) 0%, rgba(13, 12, 12, 0.30) 50%, rgba(13, 12, 12, 0.85) 100%);
}

.intro-content {
    position: relative;
    z-index: 5;
    max-width: 560px;
}

.intro-logo {
    margin-bottom: 25px;
}

.intro-eyebrow {
    display: block;
    color: var(--green-200);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 16px;
}

.intro-description {
    margin-bottom: 16px;
}

.intro-description p{
    color: rgba(255, 255, 255, 0.50);;
    line-height: 1.7;
    
}

.intro-description h2 {
    color: var(--white);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.intro-statistics {
    width: 100%;
    display: flex;
    background: rgba(255, 255, 255, 0.10);
    position: relative;
}

.intro-statistics .stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.intro-statistics .stat {
    display: flex;
    flex-flow: column;
    gap: 2px;
}

.intro-statistics strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-family: var(--fontfamily-archivo);
    line-height: 1;
}

.intro-statistics span {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}



/*====================================================
LEFT
====================================================*/

.questionnaire-left {
    width: 38%;
    position: relative;
    overflow: hidden;
}

.questionnaire-bg {
    position: absolute;
    inset: 0;
}

.questionnaire-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.questionnaire-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 12, 12, 0.60) 0%, rgba(13, 12, 12, 0.30) 50%, rgba(13, 12, 12, 0.85) 100%);
}

.questionnaire-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-title {
    display: block;
    color: var(--green-200);
    text-transform: uppercase;
    letter-spacing: 3.6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.total-stap,
.step-label,
.questionnaire-result__label {
    color: var(--green-200);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    display: block;
}

.total-stap{
    margin-bottom: 24px;
}


.questionnaire-statistics .stat {
    display: flex;
    flex-flow: column;
}
/*====================================================
STEP LIST
====================================================*/

.questionnaire-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.questionnaire-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.20);
    transition: 0.3s;
    font-size: 14px;
}

.questionnaire-steps li + li {
    margin-top: 12px;
}

.questionnaire-steps li span {
    width: 24px;
    height: 24px;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.questionnaire-steps li.active {
    color: white;
    font-weight: 600;
}

.questionnaire-steps li.active span {
    color: var(--green-200);
    border: 2px solid var(--green-200);
}

.questionnaire-steps li.completed {
    color: rgba(255, 255, 255, 0.50);
}

.questionnaire-steps li.completed span {
    background: var(--green-200);
    color: black;
    font-size: 0;
}

.questionnaire-steps li.completed span:before {
    content: '';
    width: 14px;
    height: 14px;
    background: url(/wp-content/uploads/2026/07/icon-circle-check.svg);
}

/*====================================================
STATISTICS
====================================================*/

.questionnaire-statistics {
    width: 100%;
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 32px;
}
/*
.questionnaire-statistics .stat {
    flex: 1;
}*/

.questionnaire-statistics strong {
    display: block;
    color: var(--white);
    font-family: var(--fontfamily-archivo);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.questionnaire-statistics span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/*====================================================
RIGHT
====================================================*/

.questionnaire-right {
    flex: 1;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.btn-back {
    border: 0;
    background: none;
    cursor: pointer;
    margin-bottom: 20px;
    width: max-content;
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    padding: 0;
    line-height: 1;
}

.step-label{
    margin-bottom: 8px;
}

.question-title {
    color: var(--white);
    font-family: var(--fontfamily-archivo);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quest-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
}

/*====================================================
ANSWERS
====================================================*/

.questionnaire-answers {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answer {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(163, 240, 41, 0.10);
    border-radius: var(--rounded-lg);
    padding: 16px;
    cursor: pointer;
    transition: 0.25s;
}

.answer:hover {
    border-color: var(--green-200);
}

.answer.selected {
    background: #1c2912;

    border-color: var(--green-200);
}

.answer-icon {
    display: flex;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    color: #969696;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
}

.answer.selected .answer-icon {
    background: var(--green-200);
    color: black;
}

.answer-content {
    flex: 1;
}

.answer-title {
    margin-bottom: 2px;
    color: #FFF;
    font-family: var(--fontfamily-archivo);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.answer-description {
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.answer-check {
    opacity: 0;
    visibility: hidden;
}

.answer.selected .answer-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    align-self: flex-start;
}

/*====================================================
NEXT
====================================================*/

.btn-next {
    justify-content: center;
    transition: 0.3s;
    width: 100%;
}

.btn-next:disabled {
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
}

/*====================================================
Progress bar
====================================================*/
.questionnaire-progress{

    display:flex;
    gap:6px;
    margin-bottom:20px;

}

.progress-item{

    flex:1;
    height:3px;
    border-radius: var(--rounded-full);
    background: rgba(255, 255, 255, 0.10);
    transition:background .3s ease;

}

.progress-item.active{

    background-color: var(--green-200);

}

/*
========================================
Questionnaire Result
========================================
*/

.questionnaire-result {
    display: none;
    max-width: 1021px;
    width: 100%;
    margin: auto;
    border-radius: 24px;
    background: var(--black-base);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.questionnaire-result__inner {
    display: flex;
    flex-flow: row;
    align-items: stretch;
}

.questionnaire-result__sidebar {
    width: 36%;
    background-color: #252523;
    padding: 32px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.questionnaire-result__title{
    color: var(--white);
    font-family: var(--fontfamily-archivo);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.6px;
}

.questionnaire-result__content{
    width: 64%;
    padding: 32px;
}

.questionnaire-result_image img {
    height: 220px;
    border-radius: var(--rounded-lg);
}

.questionnaire-result_image,
.questionnaire-review {
    margin-bottom: 50px;
}

.questionnaire-result__description p{
    color: rgba(255, 255, 255, 0.55);
}

.questionnaire-result__description {
    line-height: 1.65;
    font-size:14px;
    margin-bottom: 40px;
}

.questionnaire-result__label {
    margin-bottom: 8px;
}

.result__description + p {
    margin-top: 16px;
}

.questionnaire-result_header a.btn-again {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.questionnaire-result_header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-bottom: 43px;
}

#input_3_12, #field_3_12 {
    display: none!important;
}

/*====================================================
Review
====================================================*/

.questionnaire-review {
    padding: 16px;
    color: #fff;
    border-radius: var(--rounded-lg);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 32px!important;
}

.questionnaire-review__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.questionnaire-review__star {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,.20);
}

.questionnaire-review__star.is-active {
    color: var(--green-200);
}

.questionnaire-review__text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 12px;
}

.questionnaire-review__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.questionnaire-review__avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.questionnaire-review__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.questionnaire-review__name {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.questionnaire-review__extra {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}

.questionnaire-review__initial {
    width: 32px;
    height: 32px;
    border-radius: var(--rounded-full);
    background: rgba(163, 240, 41, 0.20);
    color: var(--green-200);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(163, 240, 41, 0.30);
    font-family: var(--fontfamily-archivo);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

/*RESULT Form*/
.questionnaire-result__contact {
    border-radius: var(--rounded-lg);
    border: 1px solid #3B3B39;
    background: #171616;
    padding: 24px 16px;
    margin-bottom: 24px;
}

.questionnaire-result__contact h3 {
    color: var(--white);
    font-family: var(--fontfamily-archivo);
    font-size: var(--text-lg);
    font-style: normal;
    font-weight: 600;
    line-height: .8;
    margin-bottom: 16px;
}

.questionnaire-result__contact p{
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.6;
}

.gform_fields .gfield.gfield--type-hidden {
    margin: 0;
}

.questionnaire-result__contact input {
    border-radius: 39px;
    border: 1px solid #9DA3AE;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 13px 20px;
}

.questionnaire-result__contact .gform_button {
    border-radius: var(--rounded-full);
    background-color: var(--green-200);
    border-color: var(--green-200);
    color: var(--black);
    font-weight: 600;
    justify-content: center;
    gap: 10px;
    text-align: left;
    padding-left: 24px;
}

.questionnaire-result__contact .gform_button::after {
    background-size: contain;
}

.questionnaire-result__contact .gform_button:hover{
    background-color: var(--green-200);
    border-color: var(--green-200);
}

.questionnaire-result__contact input::placeholder {
    color: var(--white);
    transition: opacity .2s ease;
    opacity: 1;
}

.questionnaire-result__contact input:focus::placeholder {
    opacity: 0;
}

/*====================================================
ANIMATION
====================================================*/

.questionnaire-header,
.questionnaire-answers {
    animation: fade 0.35s ease;
}

@keyframes fade {
    from {
        opacity: 0;

        transform: translateY(18px);
    }

    to {
        opacity: 1;

        transform: none;
    }
}

/*====================================================
RESPONSIVE
====================================================*/

@media all and (min-width: 601px){
    .intro-wrapper {
        padding: 40px;
    } 

    .intro-statistics .stat {
        flex: 1;
        padding: 28px 44px;
    }

    .intro-description h2 {
        --text-3xl: 36px;
    }

    .intro-description p {
        font-size: 20px;
    }

    .intro-statistics strong {
        font-size: 23px;
    }

    .intro-statistics span {
        font-size: 10px;
    }
}

@media all and (min-width: 901px){
    .questionnaire-main {
        min-height: 650px;
    }
    .mobile-only {
        display: none!important;
    }
}
@media (max-width: 1100px) {
    .wh-questionnaire {
        flex-direction: column;
    }

    .questionnaire-right {
        padding: 40px;
    }
}

@media all and (max-width: 900px){
    .questionnaire-left {
        display: none;
    }

    .questionnaire-right .site-title {
        margin-bottom: 32px;
    }

    .questionnaire-result__inner {
        flex-flow: column;
        justify-content: left;
        align-items: baseline;
    }

    .questionnaire-result__content,
    .questionnaire-result__sidebar{
        width: 100%;
        padding: 24px;
    }

    .questionnaire-right {
        padding: 28px;
    }

}

@media all and (max-width: 600px){
    .intro-wrapper {
        padding: 40px 24px;
    }

    .intro-statistics .stat {
        flex: 1;
        padding: 24px 7px;
        text-align: center;
    }

    .intro-description h2 {
        --text-3xl: 28px;
    }

    .intro-description p {
        font-size: 16px;
    }

    .intro-statistics strong {
        font-size: 20px;
    }

    .intro-statistics span,
    .questionnaire-statistics span {
        font-size: 8px;
    }

    .question-title {
        font-size: 18px;
    }

    .answer {
        padding: 10px;
        gap: 10px;
    }

    .wh-questionnaire .btn-fill {
        font-size: 14px;
        padding: 12px 24px;
    }

    .answer-title {
        font-size: 12px;
    }

    .answer-description{
        font-size: 10px;
    }

    .answer-icon {
        width: 30px;
        height: 30px;
    }
    .answer-icon svg {
        width: 15px;
        height: 15px;
    }

    .questionnaire-result__content, .questionnaire-result__sidebar {
        padding: 32px 20px;
    } 

    .questionnaire-statistics {
        gap: 5px;
        justify-content: space-between;
    }

    .questionnaire-statistics strong {
        text-align: center;
    }
}


@media all and (max-width: 480px){
    .questionnaire-result__contact .gform_button::after {
        display: none;
    }

    .questionnaire-result__contact .gform_button {
        font-size: 14px;
    }
}