:root {
    --ocean-blue: #d62828;
    --ocean-blue-light: #fbe9e9;
    --ocean-blue-dark: #961c1c;
    --forest-green: #2d5a3d;
    --sunset-orange: #ff6b35;
    --midnight-navy: #1a3c6b;
    --cream-white: #faf8f5;
    --charcoal-gray: #2c2c2c;
    --silver-mist: #e8e8e8;
    --warm-gold: #f4a261;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-subtle: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream-white);
    overflow-x: hidden;
}

.wrapper_container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 23px;
}

.primary_navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(11px);
    z-index: 1000;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand_logo img {
    height: 47px;
    width: auto;
    filter: brightness(0.2);
}

.mobile_menu_toggle {
    display: none;
}

.toggle_button_label {
    display: none;
}

.hamburger_icon {
    width: 28px;
    height: 3px;
    background: var(--charcoal-gray);
    position: relative;
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.hamburger_icon:before,
.hamburger_icon:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--charcoal-gray);
    transition: cubic-bezier(0.23, 1, 0.32, 1) 0.4s;
}

.hamburger_icon:before {
    top: -9px;
}

.hamburger_icon:after {
    top: 9px;
}

.navigation_wrapper {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu_item {
    list-style: none;
}

.menu_link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    position: relative;
}

.menu_link:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.menu_link:hover:after {
    width: 100%;
}

.hero_showcase_area {
    padding-top: 127px;
    padding-bottom: 89px;
    background: linear-gradient(147deg, var(--cream-white) 0%, var(--ocean-blue-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.headline_section h1 {
    font-family: 'Georgia', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ocean-blue-dark);
    margin-bottom: 29px;
    letter-spacing: -0.5px;
}

.intro_paragraph {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 41px;
}

.benefits_overview {
    margin-bottom: 47px;
}

.benefits_overview h3 {
    font-size: 24px;
    color: var(--ocean-blue-dark);
    margin-bottom: 23px;
    font-weight: 600;
}

.benefit_points {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.single_benefit {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.marker_dot {
    width: 8px;
    height: 8px;
    background: var(--ocean-blue);
    border-radius: 50%;
    margin-top: 9px;
    flex-shrink: 0;
}

.single_benefit p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.action_button_section {
    text-align: left;
}

.primary_cta_button {
    display: inline-block;
    background: var(--ocean-blue);
    color: white;
    padding: 19px 37px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    box-shadow: 0 7px 21px rgba(214, 40, 40, 0.3);
}

.primary_cta_button:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 31px rgba(214, 40, 40, 0.4);
}

.duration_info {
    margin-top: 13px;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.visual_content_block {
    position: relative;
}

.image_showcase {
    position: relative;
    height: 520px;
}

.main_visual {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 17px;
    box-shadow: 0 23px 47px rgba(0, 0, 0, 0.15);
}

.floating_element {
    position: absolute;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 17px 34px rgba(0, 0, 0, 0.2);
}

.card_element {
    width: 140px;
    height: 90px;
    top: 23px;
    right: -29px;
    animation: float_animation 6s ease-in-out infinite;
}

.security_element {
    width: 120px;
    height: 80px;
    bottom: 47px;
    left: -23px;
    animation: float_animation 8s ease-in-out infinite reverse;
}

.floating_element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float_animation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-17px) rotate(2deg); }
}

.site_footer {
    background: var(--midnight-navy);
    padding: 73px 0 41px;
    color: #ffffff;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 47px;
    margin-bottom: 53px;
}

.footer_brand_logo {
    height: 93px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 23px;
}

.company_description {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 31px;
}

.contact_details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 29px;
}

.contact_details h4 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 11px;
    font-weight: 600;
}

.contact_details p {
    font-size: 15px;
    color: #bbbbbb;
    line-height: 1.5;
}

.footer_section_title {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 27px;
    font-weight: 600;
}

.footer_section_title span {
    border-bottom: 3px solid var(--ocean-blue);
    padding-bottom: 5px;
}

.footer_links_list {
    list-style: none;
}

.footer_links_list li {
    margin-bottom: 13px;
}

.footer_links_list a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.footer_links_list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer_bottom_section {
    border-top: 1px solid #444444;
    padding-top: 31px;
    text-align: center;
}

.copyright_area p {
    color: #888888;
    font-size: 14px;
}

.copyright_area a {
    color: #cccccc;
    text-decoration: none;
}

.copyright_area a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media screen and (max-width: 890px) {
    .toggle_button_label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigation_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
        padding-top: 97px;
        flex-direction: column;
        align-items: center;
    }

    .menu_item {
        width: 100%;
        text-align: center;
        margin: 19px 0;
    }

    .menu_link {
        display: inline-block;
        padding: 13px 23px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .mobile_menu_toggle:checked ~ .navigation_wrapper {
        left: 0;
    }

    .mobile_menu_toggle:checked ~ .toggle_button_label .hamburger_icon {
        background: transparent;
    }

    .mobile_menu_toggle:checked ~ .toggle_button_label .hamburger_icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile_menu_toggle:checked ~ .toggle_button_label .hamburger_icon:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .content_grid {
        grid-template-columns: 1fr;
        gap: 43px;
        text-align: center;
    }

    .headline_section h1 {
        font-size: 42px;
    }

    .intro_paragraph {
        font-size: 17px;
    }

    .image_showcase {
        height: 380px;
    }

    .main_visual {
        height: 300px;
    }

    .card_element {
        width: 100px;
        height: 67px;
        right: -19px;
    }

    .security_element {
        width: 90px;
        height: 60px;
        left: -17px;
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: 37px;
        text-align: center;
    }

    .contact_details {
        grid-template-columns: 1fr;
        gap: 19px;
    }
}

@media screen and (max-width: 640px) {
    .wrapper_container {
        padding: 0 17px;
    }

    .headline_section h1 {
        font-size: 34px;
    }

    .intro_paragraph {
        font-size: 16px;
    }

    .primary_cta_button {
        padding: 17px 29px;
        font-size: 16px;
    }

    .image_showcase {
        height: 280px;
    }

    .main_visual {
        height: 220px;
    }

    .floating_element {
        display: none;
    }
}

.quiz_container_area {
    padding-top: 127px;
    padding-bottom: 67px;
    background: linear-gradient(143deg, var(--cream-white) 0%, var(--ocean-blue-light) 100%);
    min-height: 100vh;
}

.quiz_header_section {
    text-align: center;
    margin-bottom: 53px;
}

.quiz_header_section h1 {
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ocean-blue-dark);
    margin-bottom: 19px;
}

.quiz_intro_text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 37px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.progress_indicator {
    max-width: 480px;
    margin: 0 auto;
}

.progress_track {
    width: 100%;
    height: 8px;
    background: rgba(214, 40, 40, 0.2);
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 11px;
}

.progress_fill {
    height: 100%;
    background: var(--ocean-blue);
    width: 20%;
    border-radius: 13px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.progress_text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.quiz_form_wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.question_card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    border-radius: 17px;
    padding: 43px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1);
    display: none;
    animation: slide_in_effect 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.question_card.active {
    display: block;
}

@keyframes slide_in_effect {
    from {
        opacity: 0;
        transform: translateX(31px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question_content h3 {
    font-size: 24px;
    color: var(--ocean-blue-dark);
    margin-bottom: 31px;
    line-height: 1.4;
    font-weight: 600;
}

.answer_options {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.option_wrapper {
    display: flex;
    align-items: center;
    padding: 19px 23px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    position: relative;
}

.option_wrapper:hover {
    background: rgba(214, 40, 40, 0.05);
    border-color: var(--ocean-blue);
}

.option_wrapper input[type="radio"] {
    display: none;
}

.custom_radio {
    width: 19px;
    height: 19px;
    border: 2px solid var(--silver-mist);
    border-radius: 50%;
    margin-right: 17px;
    position: relative;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    flex-shrink: 0;
}

.custom_radio:after {
    content: '';
    width: 9px;
    height: 9px;
    background: var(--ocean-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.option_wrapper input[type="radio"]:checked ~ .custom_radio {
    border-color: var(--ocean-blue);
}

.option_wrapper input[type="radio"]:checked ~ .custom_radio:after {
    transform: translate(-50%, -50%) scale(1);
}

.option_wrapper input[type="radio"]:checked {
    background: rgba(214, 40, 40, 0.1);
}

.option_text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.5;
}

.quiz_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 720px;
    margin: 37px auto 0;
    padding: 0 23px;
}

.nav_button {
    padding: 15px 29px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.prev_button {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--silver-mist);
}

.prev_button:hover:not(:disabled) {
    background: var(--silver-mist);
    color: var(--text-primary);
}

.prev_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next_button, .submit_button {
    background: var(--ocean-blue);
    color: white;
    box-shadow: 0 7px 21px rgba(214, 40, 40, 0.3);
}

.next_button:hover, .submit_button:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 31px rgba(214, 40, 40, 0.4);
}

.completion_animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success_animation {
    text-align: center;
    max-width: 480px;
    padding: 43px;
}

.checkmark_circle {
    width: 89px;
    height: 89px;
    border: 3px solid var(--ocean-blue);
    border-radius: 50%;
    margin: 0 auto 29px;
    position: relative;
    animation: circle_scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes circle_scale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
    height: 43px;
    border: solid var(--ocean-blue);
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: checkmark_draw 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

@keyframes checkmark_draw {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 43px;
        opacity: 1;
    }
}

.success_animation h2 {
    font-size: 32px;
    color: var(--ocean-blue-dark);
    margin-bottom: 17px;
    font-weight: 700;
}

.success_animation p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 13px;
    line-height: 1.6;
}

.score_text {
    font-weight: 600;
    color: var(--ocean-blue);
}

.loading_dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 23px 0;
}

.loading_dots span {
    width: 8px;
    height: 8px;
    background: var(--ocean-blue);
    border-radius: 50%;
    animation: loading_bounce 1.4s infinite ease-in-out both;
}

.loading_dots span:nth-child(1) { animation-delay: -0.32s; }
.loading_dots span:nth-child(2) { animation-delay: -0.16s; }
.loading_dots span:nth-child(3) { animation-delay: 0s; }

@keyframes loading_bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.completion_actions {
    display: flex;
    gap: 19px;
    justify-content: center;
    margin-top: 37px;
}

.results_button, .home_button {
    padding: 15px 29px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.results_button {
    background: var(--ocean-blue);
    color: white;
    box-shadow: 0 7px 21px rgba(214, 40, 40, 0.3);
}

.results_button:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
}

.home_button {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--silver-mist);
}

.home_button:hover {
    background: var(--silver-mist);
    color: var(--text-primary);
}

@media screen and (max-width: 890px) {
    .quiz_header_section h1 {
        font-size: 36px;
    }

    .question_card {
        padding: 29px;
    }

    .question_content h3 {
        font-size: 21px;
    }

    .completion_actions {
        flex-direction: column;
        align-items: center;
    }

    .results_button, .home_button {
        width: 200px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .quiz_header_section h1 {
        font-size: 28px;
    }

    .quiz_intro_text {
        font-size: 16px;
    }

    .question_card {
        padding: 23px;
        margin: 0 17px;
    }

    .option_wrapper {
        padding: 15px 17px;
    }

    .quiz_navigation {
        flex-direction: column;
        gap: 17px;
    }

    .nav_button {
        width: 100%;
        max-width: 280px;
    }
}

.results_hero_section {
    padding-top: 127px;
    padding-bottom: 73px;
    background: linear-gradient(137deg, var(--cream-white) 0%, var(--ocean-blue-light) 100%);
}

.results_content_layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 67px;
    align-items: start;
}

.achievement_display {
    position: sticky;
    top: 147px;
}

.score_badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(11px);
    border-radius: 19px;
    padding: 37px;
    text-align: center;
    box-shadow: 0 23px 47px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(214, 40, 40, 0.1);
}

.badge_inner h2 {
    font-size: 28px;
    color: var(--ocean-blue-dark);
    margin-bottom: 13px;
    font-weight: 700;
}

.achievement_text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.offer_presentation h1 {
    font-family: 'Georgia', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--ocean-blue-dark);
    margin-bottom: 27px;
    line-height: 1.2;
}

.offer_description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 47px;
}

.video_benefits_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-bottom: 53px;
}

.benefit_card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 31px 23px;
    border-radius: 13px;
    text-align: center;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.benefit_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 34px rgba(0, 0, 0, 0.15);
}

.benefit_icon {
    width: 67px;
    height: 67px;
    margin: 0 auto 21px;
    border-radius: 50%;
    position: relative;
}

.benefit_icon.educational {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 100%);
}

.benefit_icon.practical {
    background: linear-gradient(135deg, var(--forest-green) 0%, #1e3a29 100%);
}

.benefit_icon.updated {
    background: linear-gradient(135deg, var(--warm-gold) 0%, #e09351 100%);
}

.benefit_icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 29px;
    height: 29px;
    background: white;
    border-radius: 3px;
}

.benefit_card h3 {
    font-size: 19px;
    color: var(--ocean-blue-dark);
    margin-bottom: 11px;
    font-weight: 600;
}

.benefit_card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.video_preview_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 41px;
    align-items: center;
}

.preview_thumbnail {
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.2);
}

.preview_thumbnail img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.play_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.play_overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.play_button {
    width: 73px;
    height: 73px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.play_button:hover {
    transform: scale(1.1);
}

.play_button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 17px solid var(--ocean-blue);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.preview_details h4 {
    font-size: 21px;
    color: var(--ocean-blue-dark);
    margin-bottom: 19px;
    font-weight: 600;
}

.video_topics {
    list-style: none;
    padding: 0;
}

.video_topics li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    position: relative;
    padding-left: 27px;
}

.video_topics li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: var(--ocean-blue);
    border-radius: 50%;
}

.video_topics li:last-child {
    border-bottom: none;
}

.registration_form_area {
    padding: 89px 0;
    background: var(--cream-white);
}

.form_container_layout {
    max-width: 680px;
    margin: 0 auto;
}

.form_header_content {
    text-align: center;
    margin-bottom: 53px;
}

.form_header_content h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    color: var(--ocean-blue-dark);
    margin-bottom: 19px;
    font-weight: 700;
}

.form_intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.registration_form_wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(13px);
    border-radius: 19px;
    padding: 47px;
    box-shadow: 0 23px 47px rgba(0, 0, 0, 0.1);
}

.form_field_group {
    margin-bottom: 29px;
}

.field_label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 9px;
}

.form_input_field {
    width: 100%;
    padding: 17px 19px;
    border: 2px solid var(--border-subtle);
    border-radius: 9px;
    font-size: 16px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    background: rgba(255, 255, 255, 0.8);
}

.form_input_field:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.validation_message {
    display: block;
    font-size: 14px;
    color: #e74c3c;
    margin-top: 7px;
    min-height: 20px;
}

.privacy_agreement {
    margin-bottom: 37px;
}

.checkbox_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    cursor: pointer;
}

.checkbox_wrapper input[type="checkbox"] {
    display: none;
}

.custom_checkbox {
    width: 21px;
    height: 21px;
    border: 2px solid var(--border-subtle);
    border-radius: 5px;
    position: relative;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.custom_checkbox:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.checkbox_wrapper input[type="checkbox"]:checked ~ .custom_checkbox {
    background: var(--ocean-blue);
    border-color: var(--ocean-blue);
}

.checkbox_wrapper input[type="checkbox"]:checked ~ .custom_checkbox:after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.agreement_text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.agreement_text a {
    color: var(--ocean-blue);
    text-decoration: none;
}

.agreement_text a:hover {
    text-decoration: underline;
}

.form_submit_button {
    width: 100%;
    padding: 19px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    position: relative;
    overflow: hidden;
}

.form_submit_button:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 31px rgba(214, 40, 40, 0.4);
}

.loading_spinner {
    width: 23px;
    height: 23px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spinner_rotation 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spinner_rotation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.thankyou_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popup_fade_in 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes popup_fade_in {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(5px);
    }
}

.popup_content_wrapper {
    background: white;
    border-radius: 19px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: popup_slide_up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes popup_slide_up {
    from {
        transform: translateY(47px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup_header {
    padding: 19px 23px 0;
    text-align: right;
}

.popup_close_button {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.popup_close_button:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.popup_body {
    padding: 23px 47px 47px;
    text-align: center;
}

.success_checkmark {
    margin-bottom: 27px;
}

.checkmark_animation {
    width: 83px;
    height: 83px;
    border: 3px solid var(--forest-green);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    animation: checkmark_circle_grow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes checkmark_circle_grow {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark_animation:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 37px;
    border: solid var(--forest-green);
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    animation: checkmark_tick_draw 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

@keyframes checkmark_tick_draw {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 37px;
        opacity: 1;
    }
}

.popup_body h3 {
    font-size: 29px;
    color: var(--ocean-blue-dark);
    margin-bottom: 17px;
    font-weight: 700;
}

.thank_message {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 31px;
}

.next_steps_info {
    background: var(--ocean-blue-light);
    padding: 23px;
    border-radius: 11px;
    margin-bottom: 31px;
    text-align: left;
}

.next_steps_info h4 {
    font-size: 18px;
    color: var(--ocean-blue-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.steps_list {
    list-style: none;
    padding: 0;
}

.steps_list li {
    padding: 7px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 23px;
}

.steps_list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--ocean-blue);
    border-radius: 50%;
}

.popup_actions {
    display: flex;
    gap: 17px;
    justify-content: center;
}

.continue_button {
    padding: 15px 29px;
    background: var(--ocean-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.continue_button:hover {
    background: var(--ocean-blue-dark);
    transform: translateY(-2px);
}

.home_link {
    padding: 15px 29px;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.home_link:hover {
    background: var(--border-subtle);
    color: var(--text-primary);
}

@media screen and (max-width: 890px) {
    .results_content_layout {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .achievement_display {
        position: static;
        order: 2;
    }

    .offer_presentation {
        order: 1;
    }

    .offer_presentation h1 {
        font-size: 38px;
    }

    .video_benefits_grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .video_preview_area {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .registration_form_wrapper {
        padding: 31px;
    }

    .form_header_content h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .offer_presentation h1 {
        font-size: 29px;
    }

    .offer_description {
        font-size: 17px;
    }

    .registration_form_wrapper {
        padding: 23px;
    }

    .popup_body {
        padding: 19px 29px 37px;
    }

    .popup_actions {
        flex-direction: column;
        align-items: center;
    }

    .continue_button, .home_link {
        width: 200px;
        text-align: center;
    }
}

