* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

abbr,
fieldset,
iframe,
img {
    border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: 400
}

ul li {
    list-style: none
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 400
}

sup {
    vertical-align: text-top
}

sub {
    vertical-align: text-bottom
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit
}

legend {
    color: #000
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block
}

/* Modal Dialog */
.viz-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}
.viz-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2001;
    width: 90%;
    max-width: 400px;
}
.viz-modal-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}
.viz-modal-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.5;
}
.viz-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.viz-modal-actions .btn {
    flex: 1;
    padding: 12px;
}
.quiz__navigation-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    outline: 0;
    border: none;
    background: 0 0
}

input,
textarea {
    outline: 0;
    border: none;
    background: 0 0
}

/* WooCommerce Gateway Fixes */
fieldset.wc-payment-form {
    border: none !important;
    padding: 0 !important;
    margin: 15px 0 !important;
}

fieldset.wc-payment-form .form-row {
    margin-bottom: 20px;
}

fieldset.wc-payment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

fieldset.wc-payment-form input.input-text {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.title {
    font-weight: 700;
    color: #11375c;
    font-size: clamp(24px, 12px + 2.5vw, 48px)
}

.simple-section {
    padding-top: clamp(100px, 70px + 6.25vw, 160px);
    padding-bottom: clamp(100px, 70px + 6.25vw, 160px)
}

.simple-section__title {
    font-size: clamp(26px, 3px + 4.7916666667vw, 72px);
    font-weight: 700;
    margin-bottom: 32px
}

.simple-section__desc {
    line-height: 150%;
    font-weight: 500;
    font-size: clamp(16px, 14px + .4166666667vw, 20px);
    max-width: 640px
}

.section__container {
    border-radius: 32px;
    background: #fff;
    padding: clamp(24px, 12px + 2.5vw, 48px)
}

.quiz {
    position: relative;
    min-height: 100vh;
    color: #fff;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: clamp(100px, 70px + 6.25vw, 160px);
    padding-bottom: 80px
}

.quiz__container {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.quiz__progress-wrapper {
    width: 100%;
    max-width: 1480px;
    margin: 2rem auto;
    padding: 0px 20px;
}

.quiz__progress {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    flex-wrap: wrap;
    min-width: 0;
}

.quiz__progress-item {
    flex: 1 1 0;
    min-width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
    max-width: 100%;
}

.quiz__progress-item span {
    position: absolute;
    top: -25px;
    left: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    white-space: nowrap;
    transition: all 0.3s ease;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quiz__progress-item.active {
    background: #209953;
    box-shadow: 0 0 10px rgba(32, 153, 83, 0.5)
}

.quiz__progress-item.active span {
    opacity: 1;
    color: #209953
}

.quiz__progress-item.completed {
    background: #209953
}

.quiz__progress-item.editable {
    cursor: pointer
}

.quiz__progress-item.editable:hover {
    background: rgba(255, 255, 255, 0.4)
}

@media (max-width: 900px) {
    .quiz__progress {
        gap: 6px;
    }
    .quiz__progress-item span {
        font-size: 11px;
        top: -22px;
    }
}

@media (max-width: 600px) {
    .quiz__progress-wrapper {
        padding: 0 2px;
    }
    .quiz__progress {
        gap: 1.5px;
        min-width: 0;
    }
    .quiz__progress-item {
        min-width: 14px;
        max-width: 100%;
        padding: 0;
    }
    .quiz__progress-item span {
        font-size: 9px;
        top: -14px;
        max-width: 40vw;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 2px;
    }
}

.quiz__slides {
    height: 100%
}

.quiz__slide {
    height: 100%;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.quiz__slide.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: .5s ease-in-out forwards fadeIn;
    animation: .5s ease-in-out forwards fadeIn
}

.quiz__content {
    margin-bottom: 32px;
    min-height: 562px;
}

.quiz__title {
    font-weight: 700;
    font-size: clamp(32px, 16px + 3.3333333333vw, 64px);
    margin-bottom: 32px
}

.quiz__desc {
    margin-bottom: 32px;
    font-size: clamp(16px, 14px + .4166666667vw, 20px)
}

.quiz__columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-bottom: 48px
}

.quiz__columns input[type=date] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000
}

.quiz__group,
.quiz__group .custom-input {
    width: 100%
}

.quiz__agrees {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.quiz__agree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    cursor: pointer
}

.quiz__agree input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.quiz__agree-text a {
    text-decoration: underline
}

.quiz__group-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px
}

.quiz__group-title b {
    color: #a83333
}

.quiz__labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.quiz__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    gap: 16px;
    cursor: pointer
}

.quiz__photo-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px
}

.quiz__photo-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 240px minmax(auto, 720px);
    grid-template-columns: 240px minmax(auto, 720px);
    gap: 32px;
    position: relative
}

.quiz__photo-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.quiz__photo-preview-wrapper .quiz__photo-image {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease-in-out;
}

.quiz__photo-preview-wrapper .quiz__photo-image.loading {
    opacity: 0.3;
}

.quiz__photo-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.quiz__photo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px
}

.quiz__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
    margin-left: auto;
    width: 100%
}

.quiz__navigation .btn {
    width: 100%
}

.quiz__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.quiz__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .5)));
    background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .5));
    backdrop-filter: blur(4px)
}

.quiz__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.quiz__applications {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.quiz__application {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: clamp(260px, 270px + -2.0833333333vw, 240px) 1fr;
    grid-template-columns: clamp(260px, 270px + -2.0833333333vw, 240px) 1fr;
    gap: 32px
}

.quiz__application:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 24px
}

.quiz__application-image {
    width: 100%;
    max-width: 460px
}

.quiz__application-image img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.quiz__application-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    color: #000;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.quiz__application-columns li {
    font-size: clamp(15px, 14px + .3125vw, 18px);
    font-weight: 600
}

.quiz__payment {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 460px;
    grid-template-columns: 1fr 460px;
    gap: clamp(16px, -8px + 5vw, 64px)
}

.quiz__payment-title,
.quiz__payment-value {
    padding: 16px 24px;
    background: #474747;
    font-size: 22px;
    font-weight: 700
}

.quiz__payment-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px
}

.quiz__payment-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #000
}

.quiz__applications--payment {
    padding: 12px 24px;
    gap: 8px;
    background: transparent;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0
}

.quiz__payment-applicant {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600
}

.quiz__payment-side {
    background: #fff;
    border-radius: 16px;
    color: #fff;
    overflow: hidden;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.quiz__payment-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden
}

.quiz__payment-frame span {
    display: block;
    width: 100%;
    height: 640px;
    background: #fff
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(48px, 40px + 1.6666666667vw, 64px);
    /* padding-bottom: clamp(48px, 40px + 1.6666666667vw, 64px) */
}
.faq.accordeons.section {
    margin-bottom: 60px;
}
.main_quiz {
    padding-bottom: 0
}

.header {
    background: #11375c;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px 0
}

.header__logo img {
    height: clamp(32px, 24px + 1.6666666667vw, 48px);
    -o-object-fit: contain;
    object-fit: contain
}

.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px
}

.header__list-item {
    font-weight: 500
}

.footer {
    background: #11375c;
    color: #fff
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 32px 0;
    font-size: 18px;
    gap: 24px
}

.footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px 24px
}

.footer__contact {
    font-weight: 700
}

.faq__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.faq__title {
    margin-bottom: clamp(24px, 20px + .8333333333vw, 32px)
}

.faq__items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.custom-input {
    background: #fff;
    font-size: clamp(16px, 15px + .2083333333vw, 18px);
    padding: clamp(12px, 10px + .4166666667vw, 16px) clamp(16px, 12px + .8333333333vw, 24px);
    border-radius: 8px;
    font-weight: 500
}

.custom-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    border-radius: 4px
}

.custom-checkbox:checked::after {
    opacity: 1
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #11375c;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 0;
    border-radius: 2px
}

.container {
    width: min(1440px, 100% - 32px);
    margin: 0 auto
}

.choose__title {
    margin-bottom: clamp(24px, 20px + .8333333333vw, 32px)
}

.choose__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-bottom: clamp(24px, 20px + .8333333333vw, 32px)
}

.choose__desc {
    font-size: clamp(16px, 14px + .4166666667vw, 20px)
}

.choose__btn {
    width: 100%;
    max-width: 390px
}

.choose__list {
    border-radius: 16px;
    background: #647b9c;
    padding: clamp(24px, 20px + .8333333333vw, 32px) clamp(16px, 12px + .8333333333vw, 24px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(16px, 12px + .8333333333vw, 24px);
    padding-left: 48px;
    color: #fff
}

.choose__list li {
    list-style-type: disc;
    font-size: clamp(16px, 14px + .4166666667vw, 20px);
    font-weight: 600
}

.choose__accordeons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px
}

.quiz__photo-preview-wrapper {
    position: relative;
    width: 240px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern Photo Loader styles */
.quiz__photo-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Shown via JS */
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: rgba(17, 55, 92, 0.2); 
    border-radius: 8px;
    backdrop-filter: blur(2px);
}



.spinner {
    animation: rotate 2s linear infinite;
    width: 40px;
    height: 40px;
}

.spinner .path {
    stroke: #209953;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.quiz__photo-label {
    cursor: pointer;
    display: inline-flex;
    margin-bottom: 24px;
    width: fit-content;
    transition: background 0.3s;
}

.quiz__photo-label:hover {
    background: #1a7d43;
}

.btn-green {
    background: #209953
}

.btn-blue {
    background: #11375c
}
.btn-red {
    background: #bb0303;
}
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 24px;
    color: #fff;
    font-weight: 700;
    border-radius: 12px
}

.btn:disabled {
    pointer-events: none;
    opacity: .5
}

.application {
    position: relative;
    padding-top: 180px;
    padding-bottom: 64px
}

.application__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.application__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .3)));
    background: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .3))
}

.application__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.application__container {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.application__title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(26px, 7px + 3.9583333333vw, 64px);
    text-align: center;
    margin-bottom: 64px
}

.application__btn {
    width: 100%;
    max-width: 465px;
    margin-bottom: clamp(32px, 20px + 2.5vw, 56px)
}

.application__guide {
    background: rgba(255, 255, 255, .65);
    padding: clamp(16px, 8px + 1.6666666667vw, 32px);
    border-radius: 24px;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 48px
}

.application__guide-title {
    font-size: clamp(20px, 18px + .4166666667vw, 24px);
    font-weight: 700;
    margin-bottom: 24px
}

.application__steps {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 8px + 1.6666666667vw, 32px);
    width: 100%
}

.application__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border-radius: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.application__step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 32px
}

.application__step-title {
    margin-bottom: 12px;
    font-size: clamp(16px, 13px + .625vw, 22px);
    font-weight: 700
}

.application__step-text {
    width: 100%;
    font-weight: 500;
    font-size: clamp(14px, 13px + .2083333333vw, 16px);
    line-height: 150%
}

.application__requirements {
    background: rgba(255, 255, 255, .65);
    padding: 32px;
    border-radius: 24px;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.application__requirements-title {
    font-size: clamp(20px, 18px + .4166666667vw, 24px);
    font-weight: 700;
    margin-bottom: 24px
}

.application__requirements-title b {
    color: #d33b3b
}

.application__requirements-desc {
    width: 100%;
    font-weight: 500;
    font-size: clamp(16px, 15px + .2083333333vw, 18px);
    line-height: 150%;
    margin-bottom: 24px
}

.application__requirements-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px
}

.application__requirements-list li {
    font-size: 18px;
    font-weight: 600;
    text-align: center
}

.application__requirements-list li a {
    text-decoration: underline
}

/* Application Summary Block */
.quiz__application {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(17, 55, 92, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quiz__application:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 55, 92, 0.06);
}

.quiz__application-image {
    flex-shrink: 0;
    width: 140px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.quiz__application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz__application-columns {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 24px;
}

.quiz__application-columns li {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.quiz__application-columns li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #11375c;
    border-radius: 2px;
    transform: rotate(45deg);
}

.quiz__application-columns li b {
    display: block;
    color: #111;
    font-size: 15px;
    margin-top: 2px;
    font-weight: 600;
}

.quiz__application-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

.quiz__application-actions .btn {
    min-width: 120px;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .quiz__application {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .quiz__application-columns {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .quiz__application-actions {
        width: 100%;
    }
}

/* Modern Checkout Styles */
.quiz__payment-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.quiz__payment-main {
    flex: 1;
}

.viz-checkout-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e0e6ed;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(17, 55, 92, 0.05);
}

@media screen and (max-width: 600px) {
    .viz-checkout-card {
       display: none;
    }
}

.viz-checkout-header {
    background: #f8fafc;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e6ed;
}

.viz-checkout-badge {
    background: #e1f5e9;
    color: #209953;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.viz-checkout-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #209953;
    border-radius: 50%;
}

.quiz__slide.active {
    display: block !important;
}

.viz-checkout-form {
    padding: 32px;
}

.viz-checkout-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #11375c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.viz-checkout-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 32px 0;
}

.viz-form-group {
    margin-bottom: 24px;
}

.viz-form-group label {
    display: block;
    font-weight: 600;
    color: #11375c;
    margin-bottom: 10px;
    font-size: 15px;
}

.viz-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.viz-input {
    width: 100%;
    background: #fdfdfe;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    color: #11375c;
    transition: all 0.3s;
}

.viz-input:focus {
    border-color: #11375c;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(17, 55, 92, 0.1);
}

.viz-checkout-footer {
    padding: 20px 32px;
    background: #f8fafc;
    border-top: 1px solid #e0e6ed;
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Sidebar Styles */
.quiz__payment-side {
    width: 400px;
    background: #11375cde;
    color: #fff;
    padding: 32px;
    border-radius: 20px;
    position: sticky;
    top: 24px;
}

.quiz__payment-title {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quiz__payment-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 24px 0;
}

.quiz__payment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.quiz__payment-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.8;
    color: #ffffff;
}

.quiz__payment-list li span {
    font-weight: 600;
    opacity: 1;
}

.quiz__payment-total-box {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.quiz__payment-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.quiz__payment-price {
    font-size: 36px;
    font-weight: 800;
}

.viz-pay-btn {
    width: 100%;
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
}

.viz-payment-trust {
    margin-top: 24px;
    text-align: center;
    opacity: 0.6;
}

.viz-payment-trust img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .quiz__payment-layout {
        flex-direction: column;
    }
    .quiz__payment-side {
        width: 100%;
        position: static;
    }
}

/* Email Verification Styles */
.viz-input-group {
    display: flex;
    gap: 12px;
}

.viz-input-group .viz-input {
    flex: 1;
}

.viz-input-group .btn {
    white-space: nowrap;
    min-width: 120px;
}

.viz-status-msg {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}

.viz-status-msg.error {
    color: #ef4444;
}

.viz-status-msg.success {
    color: #209953;
}

.viz-inline-error {
    display: none;
    background: #fff;
    border: 1.5px solid #e53935;
    border-left: 4px solid #e53935;
    border-radius: 8px;
    color: #e53935;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 14px;
    margin-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.08);
}

.viz-payment-locked-overlay {
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #64748b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.viz-payment-locked-overlay i {
    font-size: 24px;
    color: #94a3b8;
}

.viz-payment-locked-overlay.hidden {
    display: none;
}

.viz-payment-fields-container {
    transition: all 0.4s ease;
}

@keyframes viz-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.viz-input-error {
    animation: viz-shake 0.3s ease-in-out;
    border-color: #ef4444 !important;
}

.viz-cookie-notice {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: #11375cde;
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease;
    max-width: 1600px;
    margin: 0 auto;
}

.viz-cookie-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.viz-cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.viz-cookie-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.viz-cookie-close:hover {
    opacity: 1;
}

.viz-cookie-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.viz-cookie-content .btn {
    flex-shrink: 0;
    min-width: 120px;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .viz-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.accordeon-item {
    border-radius: 24px;
    -webkit-box-shadow: inset 0 0 0 2px #11375c;
    box-shadow: inset 0 0 0 2px #11375c;
    display: -ms-grid;
    display: grid;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -ms-grid-rows: -webkit-max-content 0fr;
    -ms-grid-rows: max-content 0fr;
    grid-template-rows: -webkit-max-content 0fr;
    grid-template-rows: max-content 0fr
}

.accordeon-item.active {
    -ms-grid-rows: -webkit-max-content 1fr;
    -ms-grid-rows: max-content 1fr;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr
}

.accordeon-item.active .accordeon-item__content {
    padding: 0px clamp(16px, 12px + .8333333333vw, 24px) clamp(24px, 20px + .8333333333vw, 32px)
}

.accordeon-item.active .accordeon-item__head::after {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg)
}

.accordeon-item__head {
    padding: clamp(24px, 20px + .8333333333vw, 32px) clamp(16px, 12px + .8333333333vw, 24px);
    font-size: clamp(16px, 13px + .625vw, 22px);
    font-weight: 700;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    padding-right: 48px
}

.accordeon-item__head::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: clamp(32px, 24px + 1.6666666667vw, 48px);
    font-weight: 500;
    color: #11375c;
    line-height: 90%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

.accordeon-item__content {
    overflow: hidden;
    font-size: clamp(16px, 15px + .2083333333vw, 18px);
    line-height: 150%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    padding: 0px 24px
}

.about__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, 640px);
    grid-template-columns: 1fr minmax(320px, 640px);
    gap: clamp(24px, 4px + 4.1666666667vw, 64px)
}

.about__title {
    margin-bottom: clamp(24px, 20px + .8333333333vw, 32px)
}

.about__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    font-size: clamp(16px, 15px + .2083333333vw, 18px)
}

.about__image {
    border-radius: clamp(24px, 20px + .8333333333vw, 32px);
    overflow: hidden;
    -o-object-fit: contain;
    object-fit: contain
}

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

input[type=radio]:checked::after {
    opacity: 1
}

input[type=radio]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #11375c;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 0
}

body,
html {
    background-color: #f0f2f5;
    font-size: 16px;
    color: #11375c;
    font-family: Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    min-height: 100vh
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-top: auto
}

.sprite {
    display: none
}

em {
    font-style: italic
}

strong {
    font-weight: 700
}

@media (max-width:1100px) {
    .about__container {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .about__image {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }
}

@media (max-width:960px) {

    .quiz__application,
    .quiz__payment {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .quiz__payment-side {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .application__steps {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {

    .quiz__columns,
    .quiz__photo-columns {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }

    .quiz__application-columns {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        gap: 16px
    }

    .application__steps {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }
}