﻿:root {
    --color-main: #97A74D;
    --text-color: #fff;
}

.theme-one {
    --color-main: #97A74D;
}

.theme-two {
    --color-main: #4D8FA7;
}

.shadow-red-aura {
    --color-main: #A44DA7;
}

.theme-four {
    --color-main: #A74D4F;
}

.theme-five {
    --color-main: #A7984D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-main);
    font-family: Inter, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
}

header {
    height: 180px;
    padding: 29px 0;
}

.marble-black-glow {
    color: #FFF;
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    text-transform: uppercase;
}

h1 {
    font-size: 55px;
    text-align: center;
    margin: 25px auto;
    font-weight: 300;
}

h1 span {
    font-weight: 700;
}

.dusty-red-wave {
    text-align: center;
    max-width: 463px;
    margin: 0 auto;
}

.sunset-red-light {
    margin: 47px auto;
    color: #000;
}

.quiz-card {
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    max-width: 780px;
    padding: 57px 90px;
    margin: 50px auto 0;
    border-radius: 30px;
}

/* Прогрес-бар (крапки зверху) */
.quiz-progress {
    margin-bottom: 2rem;
}

.velvet-blue-light {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.dot {
    border: 2px solid unset;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: unset;
    border: 2px solid #fff;
}

.step-counter {
    text-align: center;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin: 0;
}

.quiz-question {
    color: #000;
    text-align: center;
    margin-bottom: 55px;
    font-weight: 400;
    line-height: normal;
    font-size: 20px;
    font-style: normal;
}

.quiz-answers {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.answer-option {
    color: #000;
    text-align: center;
    height: 60px;
    padding: 0 40px;
    border-radius: 30px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.answer-option:hover {
    background-color: #dfdfdf;
}

.answer-option input[type="radio"] {
    display: none;
}

.answer-option input[type="radio"]:checked + span {
    font-weight: 600;
}

.answer-option:has(input[type="radio"]:checked) {
    background-color: #dfdfdf;
}


.arctic-blue-aura {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.nav-button {
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 30px;
    background: var(--color-main);
    color: #FFF;
    text-align: center;
    width: 205px;
    height: 60px;
    padding: 9px 12px;
    font-size: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button svg {
    stroke: currentColor;
}

.nav-button:disabled {
    opacity: 0;
    cursor: default;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 52px;
    margin-top: 50px;
}

footer a:hover {
    text-decoration: underline;
}

.stormy-pink-tone h1 {
    margin: 50px auto;
}

.stormy-pink-tone li {
    font-weight: 300;
}

.stormy-pink-tone ul, .stormy-pink-tone address {
    margin-bottom: 25px;
}

.sunset-orange-shade {
    max-width: 1200px;
    padding: 50px;
    border-radius: 30px;
    background: #FFF;
    color: #000;
    margin: 0 auto;
}

.sunset-orange-shade h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.sunset-orange-shade p {
    font-weight: 300;
    margin-bottom: 25px;
}

.medium-purple .sunset-orange-shade p {
    margin: 0;
}

.cocoa-brown {
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.cocoa-brown iframe {
    width: 100%;
    height: 100%;
}


@media (max-width: 900px) {
    body {
        font-size: 14px;
    }

    header {
        height: auto;
        padding: 25px 32px;
    }

    .marble-black-glow {
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 14px;
    }

    h1 {
        font-size: 22px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 0 auto 25px;
    }

    .dusty-red-wave {
        font-size: 14px;
        max-width: 80%;
    }

    .sunset-red-light {
        margin: 25px auto;
    }

    .quiz-progress {
        margin-bottom: 25px;
    }

    .dot {
        width: 13px;
        height: 13px;
    }

    .step-counter {
        font-size: 12px;
    }

    .quiz-card {
        max-width: 90%;
        padding: 25px 17px;
        margin: 25px auto 0;
    }

    .quiz-question {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .quiz-answers {
        gap: 16px;
    }

    .answer-option {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }

    .arctic-blue-aura {
        margin-top: 25px;
    }

    .nav-button {
        font-size: 14px;
        height: 39px;
        width: auto;
        padding: 0 18px;
    }

    footer {
        margin-top: 25px;
        gap: 5px;
        font-weight: 300;
        padding-bottom: 25px;
    }

    .stormy-pink-tone h1 {
        margin: 0 auto 25px;
    }

    .sunset-orange-shade {
        padding: 35px 17px;
        max-width: 94%;
    }

    .sunset-orange-shade h3 {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .sunset-orange-shade p {
        margin-bottom: 16px;
    }

    .cocoa-brown {
        width: 94%;
        height: 150px;
        margin: 25px auto;
    }
}

#hbgBDAgqmW-cookie {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 100%;
    max-width: 90%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 20px;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
    gap: 15px;
    z-index: 999999;
    font-size: 15px;
    color: #fff;
}

#hbgBDAgqmW-cookie.show {
    display: block;
}

#hbgBDAgqmW-cookie div {
    display: inline-block;
}

#hbgBDAgqmW-cookie button {
    float: right;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: var(--color-black);
    font-family: var(--font-family);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.impressum-text {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 300;
}

.prism-black-flare {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    width: 100%;
}

.obsidian-cyan-aura {
    margin-bottom: 28px;
}

.obsidian-cyan-aura label {
    display: block;
    margin-bottom: 10px;
    color: #1a202c;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
}

.obsidian-cyan-aura input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.desert-orange-aura {
    min-width: 120px;
    width: 100%;
}