/* Landing Page Styles based on Figma */

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

body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
    transform: scale(0.67);
    transform-origin: top left;
    width: 149.25%;
    height: 100vh;
    overflow-y: auto;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Main Screen */
.main_screen {
    width: 1440px;
    height: 813px;
    background-color: #FFFDF6;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 68px 100px 0 100px;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    width: 193px;
    height: 67px;
}

.logo_image {
    width: 45px;
    height: 66px;
}

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

.logo_text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.083;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #3B162F;
    margin-left: 0;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu_link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.21;
    color: #272728;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu_link:hover {
    color: #E23771;
}

.auth_buttons {
    display: flex;
    gap: 0;
    align-items: center;
    background-color: #E23771;
    border-radius: 9999px;
    padding: 0;
    height: 49px;
    width: 200px;
}

.auth_btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #FFFFFF;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 15px 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}


.registration_btn {
    background-color: #E23771;
    border-radius: 9999px;
    padding: 15px 22px;
    z-index: 2;
    white-space: nowrap;
    width: 100%;
    height: 100%;
}

/* Header Controls */
.header_controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language_switcher {
    position: relative;
}

.language_btn {
    background-color: #E23771;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language_btn:hover {
    background-color: #d1216a;
    transform: translateY(-2px);
}

.language_dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 60px;
    display: none;
    margin-top: 4px;
}

.language_dropdown.show {
    display: block;
}

.language_option {
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.language_option:hover {
    background-color: #F3F4F6;
}

.language_option.active {
    background-color: #E23771;
    color: #FFFFFF;
}

/* Hero Content */
.hero_content {
    position: absolute;
    left: 100px;
    top: 214px;
    width: 722px;
    height: 270px;
    z-index: 5;
}

.hero_title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 88px;
    line-height: 1.0227272727272727;
    letter-spacing: -0.03em;
    color: #272728;
    margin-bottom: 30px;
    width: 722px;
    height: 270px;
}

.hero_subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2102272727272727;
    color: #272728;
    margin-bottom: 102px;
    position: absolute;
    top: 300px;
    width: 621px;
    height: 72px;
}

.main_cta_button {
    background-color: #E23771;
    border: none;
    border-radius: 100px;
    padding: 13px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 402px;
    left: 0;
    width: 280px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_cta_button span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    white-space: nowrap;
}

.main_cta_button:hover {
    background-color: #d1216a;
    transform: translateY(-2px);
}

/* Main Image */
.main_image {
    position: absolute;
    right: 70px;
    top: 174px;
    width: 554px;
    height: 636px;
    z-index: 3;
}

.main_img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* How It Works */
.how_it_works {
    padding: 0;
    margin-top: 50px;
    background-color: #FFFFFF;
}

.section_title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.21;
    text-align: left;
    color: #272728;
    margin-bottom: 30px;
    margin-left: 2px;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(3, 387px);
    gap: 0 39px;
    justify-content: flex-start;
    width: 1240px;
}

.step_card {
    background-color: #FFF9FB;
    border-radius: 40px;
    width: 387px;
    height: 387px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0;
}

.step_content {
    position: absolute;
    top: 255px;
    left: 38px;
    right: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step_icon {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 83px;
}

.step_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step_title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.21;
    color: #111827;
    text-align: center;
    margin-bottom: 10px;
    max-width: 244px;
}

.step_description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4B5563;
    text-align: center;
    max-width: 301px;
}

/* Social Proof */
.social_proof {
    background-color: #FFFFFF;
    padding: 0;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
}

.social_proof_content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 0;
    align-items: flex-start;
    width: 1240px;
}

.social_proof_image {
    width: 600px;
    height: 560px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social_proof_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFE2EF;
    border-radius: 40px;
    z-index: 1;
}

.social_proof_image img {
    width: 100%;
    height: 120%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: translateY(20%);
}

.social_proof_text {
    padding-left: 50px;
    padding-top: 30px;
}

.social_proof_title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.33;
    color: #111827;
    margin-bottom: 40px;
}

.social_proof_features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social_proof_feature {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.feature_check {
    width: 24px;
    height: 24px;
    background-color: #95CC30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature_text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
    color: #111827;
}

/* How QR Works */
.how_qr_works {
    padding: 100px 100px;
    background-color: #FFFFFF;
}

.how_qr_works .section_title {
    text-align: left;
    margin-bottom: 20px;
}

.section_subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.21;
    text-align: left;
    color: #111827;
    margin-bottom: 60px;
}

.qr_process_images {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 40px;
    justify-content: center;
}

.process_image {
    width: 280px;
    height: 517px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.image_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image_background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image_content {
    position: absolute;
    top: 90px;
    left: 55px;
    width: 171px;
    height: 370px;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #111827;
}

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


/* Additional Features */
.additional_features {
    padding: 0 100px 100px 100px;
    background-color: #FFFFFF;
}

.additional_grid {
    display: grid;
    grid-template-columns: repeat(2, 600px);
    gap: 40px;
    justify-content: center;
}

.additional_card {
    background-color: #E3FFAD;
    border-radius: 40px;
    padding: 50px;
    height: 214px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.additional_card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card_title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 0.8;
    color: #111827;
    margin-bottom: 22px;
}

.card_description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #4B5563;
}

/* New Features */
.new_features {
    padding: 0 100px 100px 100px;
    background-color: #FFFFFF;
}

.new_features_grid {
    display: grid;
    grid-template-columns: repeat(2, 600px);
    gap: 30px 40px;
    justify-content: center;
    margin-top: 50px;
}

.new_feature_card {
    background-color: #FFF9FB;
    border-radius: 40px;
    padding: 50px;
    height: 194px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.feature_icon {
    position: absolute;
    top: 60px;
    right: 50px;
    width: 68px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature_title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.21;
    color: #111827;
    margin-bottom: 22px;
    max-width: 300px;
}

.feature_description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #4B5563;
    max-width: 369px;
}

/* Global Goal */
.global_goal {
    padding: 0 100px 100px 100px;
    background-color: #FFFFFF;
}

.goal_images {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 40px;
    justify-content: center;
}

.goal_image {
    width: 280px;
    height: 521px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.goal_image .image_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.goal_image .image_background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goal_image .image_content {
    position: absolute;
    top: 90px;
    left: 55px;
    width: 171px;
    height: 370px;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #111827;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal_image .image_content img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* Goal Text Styles */
.goal_title {
    position: absolute;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.21;
    color: #272728;
    top: 120px;
    left: 71px;
    width: 139px;
    height: 80px;
}

.goal_description {
    position: absolute;
    z-index: 3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 1.27;
    color: #4B5563;
    top: 364px;
    left: 71px;
    width: 145px;
    height: 70px;
}


/* Background Colors */
.goal_1 {
    background-color: #D9B8D5;
}

.goal_2 {
    background-color: #FF78B4;
}

.goal_3 {
    background-color: #95CC30;
}

.goal_4 {
    background-color: #FF4D9C;
}

/* Pricing */
.pricing {
    padding: 100px 100px;
    background-color: #FFFFFF;
}

.pricing .section_title {
    text-align: left;
    margin-bottom: 24px;
    margin-left: 10px;
}

.pricing .section_subtitle {
    text-align: left;
    margin-bottom: 70px;
    margin-left: 10px;
}

.pricing_plans {
    display: grid;
    grid-template-columns: repeat(2, 600px);
    gap: 40px;
    justify-content: flex-start;
    width: 1240px;
}

.pricing_plan {
    border-radius: 40px;
    padding: 70px 70px 70px 70px;
    height: 600px;
    position: relative;
}

.free_plan {
    background-color: #F6F6F6;
}

.premium_plan {
    background-color: #FF4D9C;
}

.plan_header {
    margin-bottom: 50px;
}

.plan_title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.free_plan .plan_title {
    color: #111827;
}

.premium_plan .plan_title {
    color: #FFFFFF;
}

.plan_title_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan_badge {
    display: inline-block;
    background-color: #E3FFAD;
    border-radius: 9999px;
    padding: 5px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #111827;
}

.plan_subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #4B5563;
}

.premium_plan .plan_subtitle {
    color: #E5E5E5;
}

.plan_content {
    margin-bottom: 40px;
}

.plan_price {
    margin-bottom: 24px;
}

.price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.21;
}

.free_plan .price {
    color: #111827;
}

.premium_plan .price {
    color: #FFFFFF;
}

.price_period {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #E5E5E5;
    margin-left: 7px;
}

.plan_features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan_feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan_feature .feature_check {
    width: 14px;
    height: 16px;
    margin-top: 4px;
    background: none;
    color: #95CC30;
    border-radius: 0;
    font-size: 12px;
}

.plan_feature.disabled .feature_check {
    color: #9CA3AF;
}

.plan_feature span:last-child {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
}

.free_plan .plan_feature span:last-child {
    color: #111827;
}

.premium_plan .plan_feature span:last-child {
    color: #FFFFFF;
}

.plan_feature.disabled span:last-child {
    color: #4B5563;
}

.plan_button {
    background-color: #E23771;
    border: none;
    border-radius: 9999px;
    padding: 18px 154px;
    width: 460px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    color: #FFFFFF;
    text-align: center;
    transition: all 0.3s ease;
}

.plan_button:hover {
    background-color: #d1216a;
    transform: translateY(-2px);
}

/* CTA Section */
.cta_section {
    background-color: #FF78B4;
    border-radius: 40px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 1240px;
    height: 651px;
}

.cta_content {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta_logo {
    position: absolute;
    left: 10px;
    top: 40px;
    width: 97.11px;
    height: 143.73px;
}

.cta_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta_title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 85px;
    line-height: 1.21;
    color: #FFFFFF;
    position: absolute;
    left: 10px;
    top: 266px;
    width: 568px;
    height: 309px;
}

.cta_description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    position: absolute;
    right: 10px;
    top: 323px;
    width: 444px;
    height: 160px;
    text-align: right;
}

.cta_button {
    background-color: #95CC30;
    border: none;
    border-radius: 100px;
    padding: 17px 40px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 503px;
    width: 311px;
    height: 58px;
    transition: all 0.3s ease;
}

.cta_button span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    white-space: nowrap;
}

.cta_button:hover {
    background-color: #82b528;
    transform: translateY(-2px);
}

/* FAQ */
.faq_section {
    padding: 0 100px 100px 100px;
    background-color: #FFFFFF;
}

.faq_items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.faq_item {
    background-color: #FFF9FB;
    border-radius: 40px;
    overflow: hidden;
}

.faq_question {
    padding: 25px 100px 25px 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq_question h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.21;
    color: #111827;
    flex: 1;
    margin-right: 20px;
}

.faq_toggle {
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E23771;
    transition: transform 0.3s ease;
}

.faq_item.open .faq_toggle {
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq_item.open .faq_answer {
    max-height: 200px;
}

.faq_answer p {
    padding: 0 100px 45px 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #4B5563;
}

/* Footer */
.footer {
    background-color: #FFFDF6;
    width: 1440px;
    height: 408px;
    margin: 0 auto;
    position: relative;
}

.footer_content {
    position: relative;
    width: 100%;
    height: 100%;
}

.footer_main {
    position: absolute;
    left: 100px;
    top: 70px;
    width: 1240px;
    height: 205px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_company {
    width: 351px;
    height: 205px;
}

.footer_company .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer_company .logo_image {
    width: 66px;
    height: 66px;
    object-fit: cover;
}

.logo_text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.083;
    text-transform: uppercase;
    color: #3B162F;
}

.company_description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    color: #525760;
    width: 272px;
}

.footer_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 20px;
    margin-top: 3px;
}

.footer_link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.21;
    color: #525760;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_link:hover {
    color: #E23771;
}

.footer_contact {
    text-align: right;
    margin-top: 3px;
}

.contact_title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.357;
    color: #525760;
    margin-bottom: 4px;
}

.contact_email {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 0.941;
    color: #525760;
}

.footer_bottom {
    position: absolute;
    left: 100px;
    top: 280px;
    width: 1240px;
    height: 57px;
    border-top: 1px solid #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #525760;
    text-align: left;
    flex: 1;
}

.company_info {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #525760;
    text-align: right;
}

/* Мобильные устройства - только масштабирование */
@media (max-width: 768px) {
    body {
        transform: scale(0.4);
        transform-origin: top left;
        width: 250%;
        height: 100vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    body {
        transform: scale(0.3);
        transform-origin: top left;
        width: 333.33%;
        height: 100vh;
        overflow-y: auto;
    }
}

@media (max-width: 375px) {
    body {
        transform: scale(0.25);
        transform-origin: top left;
        width: 400%;
        height: 100vh;
        overflow-y: auto;
    }
}