/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margins */
body,
h1, h2, h3, h4, h5, h6,
p, figure,
blockquote, dl, dd {
  margin: 0;
}

a { outline: none !important;}
a:active{
border:0;
outline: none !important;
}


/* Remove list styles */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

/* Set body defaults */
body {
  background-color: #fff;
  color: #111;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit font for form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Basic button & link styles */
button {
  cursor: pointer;
  background: none;
  border: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus,
button:focus {
  outline: 2px solid Highlight;
  outline-offset: 2px;
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.wrapper{
    padding: 0 40px;
    width: 100%;
}

body{
    width: 100%;
}

header{
    padding: 20px 40px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

header ul{
    display: flex;
    gap: 12px;
}

header .logo svg{
    object-fit: contain;
    height: 38px;
}

header ul li {
    border-radius: 100px;
    border: 1px solid #D0AB89;    
    position: relative;
    overflow: hidden;
    background: transparent;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

header ul li a {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Эффект волны */
header ul li::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 0;
    height: 0;
    background: #D0AB89;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

header ul li:hover::before {
    width: 100%;
    height: 160px;
    opacity: 1;
}

header ul li:hover a {
    color: white;
}
header ul li a{
    padding: 10px 16px;
    display: block;
    color: #1B0E11;
    font-feature-settings: 'salt' on;

    /* Body/xl/medium */
    font-family: Comfortaa;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 30px */
}

.header_mobile {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.header_mobile::after{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    z-index: 201;
}

.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 40px;
    z-index: 202;
    background: #fff;
}

.burger-container {
    position: relative;
    width: 32px;
    height: 32px;
}

.burger {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.burger-icon, .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.burger-icon {
    opacity: 1;
    transform: rotate(0);
}

.close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.header_mobile.active .burger-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.header_mobile.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}

.menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 40px 40px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 150;
    box-shadow: 0 20px 15px rgba(0, 0, 0, 0.07);
    pointer-events: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    border-radius: 0 0 30px 30px;
}

.menu.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.menu ul {
    list-style: none;
}

.menu li {
    margin-bottom: 15px;
    justify-content: end;
    display: flex;
}

.menu li:last-child{
    margin: 0;
}

.menu a {
    color: #1B0E11;
    font-feature-settings: 'salt' on;
    font-family: Comfortaa;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    display: block;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
border: 1px solid #D0AB89;
width: max-content;
}
        

.header_mobile{
    display: none;
}
        
@media (max-width: 1300px) {
    .header_mobile{
        display: block;
    }
    header{
        display: none;
    }
    .hero_section {
        margin-top: 70px;
    }
}

@media (max-width: 750px) {
  .header_mobile {
    padding: 15px 20px;
  }
  .menu{
    padding: 20px !important;
  }
}

/* Hero Section */
.hero_section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFDFC;
    overflow: hidden;
}

.hero_background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ellipse{
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 171, 137, 0.1) 0%, rgba(208, 171, 137, 0.15) 50%, transparent 100%);
    filter: blur(60px);
}

.ellipse_1{
    width: 981px;
    height: 1025px;
    left: 55%;
    top: -53%;
}

.ellipse_2{
    width: 749px;
    height: 749px;
    left: -8%;
  top: -28%;
}

.hero_container{
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    gap: 94px;
    padding-top: 25px;
    padding-bottom: 40px;
    z-index: 1;
}

.hero_image{
    position: relative;
    max-width: 755px;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1.1;
}

.hero_image_wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    overflow: hidden;
}

.hero_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_border{
    position: absolute;
    left: 35px;
    top: 35px;
    width: 100%;
    height: 100%;
    border: 2px solid #d0ab89;
    border-radius: 70px;
}

/* Hero Content */
.hero_content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    max-width: 957px;
}

.hero_heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin-bottom: 24px;
}

.decorative_line{
    width: 614px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1b0e11 50%, transparent 100%);
    opacity: 0.3;
}

.heading_text{
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: center;
    width: 100%;
}

.heading_text h1{
    color: #1B0E11;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    font-feature-settings: 'salt' on;
    margin: 0;
}

.heading_gradient{
    font-style: italic;
    background: linear-gradient(104.116deg, #1E1114 1.4691%, #D0AB89 51.696%, #1E1114 99.504%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_description{
    color: rgba(27, 14, 17, 0.7);
    text-align: center;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    font-feature-settings: 'salt' on;
    max-width: 661px;
    margin: 0 0 24px 0;
    opacity: 0.8;
}

.download_buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.download_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 390px;
    height: 64px;
    padding: 16px 24px;
    background: #D0AB89;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0px 4px 4px 0px rgba(226, 198, 173, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.download_btn:active{
    transform: translateY(0);
}

.download_btn span{
    color: white;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    font-feature-settings: 'salt' on;
}

.download_btn svg{
    flex-shrink: 0;
}

.appstore_icon{
    width: 17.717px;
    height: 21.776px;
}

.googleplay_icon{
    width: 22.986px;
    height: 25.755px;
}

.trial_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 386px;
    height: 64px;
    padding: 12px;
    background: transparent;
    border: 1px solid #1B0E11;
    border-radius: 1000px;
    margin-bottom: 16px;
    transition: background 0.2s, color 0.2s;
    cursor: default;
}

.trial_text{
    cursor: default;
}

.trial_btn:hover{
    background: #1B0E11;
}

.trial_btn:hover .trial_text{
    color: white;
}

.trial_text{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    font-feature-settings: 'salt' on;
}

.trial_text strong{
    font-weight: 700;
}

.trial_btn:hover .trial_text strong{
    color: white;
}

.hero_tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 668px;
}

.tag{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: 1px solid #E5D6D0;
    border-radius: 100px;
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 143%;
    font-feature-settings: 'salt' on;
    white-space: nowrap;
}

.hero_mobile{
    display: none;
}

@media (max-width: 1630px) {
    .heading_text h1{
        font-size: 42px;
    }
    .hero_description{
        font-size: 19px;
    }
    .hero_image{
        aspect-ratio: 1/1;
    }
}

@media (max-width: 1440px) {
    .heading_text h1{
        font-size: 36px;
    }
    .hero_description{
        font-size: 18px;
    }
    .hero_image{
        aspect-ratio: 1/1;
    }
}

@media (max-width: 1150px) {
    .hero_container{
        flex-direction: column;
    }
    .hero_image{
        max-width: 100%;
        height: 735px;
    }
    .hero_content{
        max-width: 100%;
        order: -1;
    }
    .hero_border{
        left: 15px;
        top: 15px;
        border-radius: 100px;
    }
}


@media (max-width: 750px) {
    .hero_mobile{
        display: block;
        margin-top: 30px;
    }
    .hero_desktop{
        display: none;
    }
    .hero_image{
        margin-bottom: 38px;
        height: auto;
    }
    .decorative_line{
        width: 100%;
    }
    .wrapper{
        padding: 0 20px;
    }
}

@media (max-width: 500px) {
    .hero_border,
    .hero_image_wrapper{
        border-radius: 45px;
    }
    .heading_text h1 {
        font-size: 24px;
    }

    .trial_btn,
    .download_btn{
        width: 100%;
    }
    .download_buttons{
        width: 100%;
    }
}



/* What inside the app */

.what_inside_the_app{
    padding-top: 70px;
    padding-bottom: 92px;
background: linear-gradient(180deg, #F3ECE9 20.56%, #E9DDD8 100%);
}

.what_inside_the_app_sub{
    color: #1B0E11;
    text-align: center;
    font-feature-settings: 'salt' on;
    font-family: Comfortaa;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
    opacity: 0.7;
}

.with_app{
    margin-bottom: 20px !important;
}

.what_inside_container{
    margin-top: 50px;
    width: 100%;
    display: flex;
    gap: 80px;
}

.w_i_c_container{
    width: 25%;
}


.what_inside_block{
    width: 100%;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
    padding-bottom: 24px;
    background: #E6D8D2;
    border-radius: 20px;
    border: 2px solid #d0ab89;
}

.what_inside_block h3{
    color: #1B0E11;
    font-feature-settings: 'salt' on;
    font-family: Comfortaa;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}

.what_inside_block p{
    color: #1B0E11;
    font-feature-settings: 'salt' on;
    /* Body/lg/regular */
    font-family: Comfortaa;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.wib_phone{
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: flex;
  justify-content: center;
}

/* Common Section Heading */
.section_heading{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 101px;
    z-index: 1;
}

.section_heading .decorative_line{
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1b0e11 50%, transparent 100%);
    opacity: 0.3;
}

.section_title{
    color: #1B0E11;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    letter-spacing: 0.8px;
    background: linear-gradient(73.6105deg, #1E1114 16.298%, #D0AB89 61.543%, #1E1114 82.557%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    white-space: nowrap;
    text-wrap: wrap;
    width: 100%;
    text-align: center;
}

@media (max-width: 760px) {
    .section_heading{
        margin-bottom: 20px;
    }
    .section_title{
        font-size: 28px;
    }
    .what_inside_the_app_sub{
        font-size: 17px;
    }
}

/* Override for subscription heading margin */
.subscription_section .section_heading{
    margin-bottom: 84px;
}

/* Override for introduction heading margin */
.introduction_section .section_heading{
    /* margin-bottom: 118px; */
}




/* Why It Works Section */
.why_works_section{
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, rgba(229, 214, 208, 0) 0%, #E5D6D0 73.83%);
    padding: 70px 0 100px;
    overflow: hidden;
}

.why_works_background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cloud{
    position: absolute;
    width: 1322px;
    height: 881px;
    opacity: 0.9;
    background-image: url('../image/b8d44520b862e3e08599bbc007e5be9094081f41.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cloud_1{
    left: calc(50% + 132px);
    top: 586px;
}

.cloud_2{
    left: -362px;
    top: 456px;
}

.whu_works_card_container{
    width: 100%;
    height: auto;
    display: flex;
    gap: 70px;
}

.why_works_card_block{
    position: relative;
    width: 33.333%;
    height: max-content;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_image_wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    
}

.card_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 70px;
}

.card_overlay{
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 70px;
background:linear-gradient(0deg, rgba(244, 215, 205, 0.50) 0%, rgba(244, 215, 205, 0.50) 100%);
}

.card_border{
    position: absolute;
    top: 20px;
    left: 30px;
    border-radius: 70px;
    width: 100%;
    height: 100%;
    border: 2px solid #d0ab89;;
    z-index: 2;
}

.card_text{
    width: 100%;
    padding: 0 40px;
    position: absolute;
    z-index: 3;
    color: #1C0F12;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 125%; /* 40px */    
}

.why_works_bottom_text{
    position: relative;
    text-align: end;
    color: #1B0E11;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 125%;
    margin: 0;
    z-index: 1;
    margin-top: 40px;
    padding-right: 50px;
}

@media (max-width: 1500px) {
    .card_text{
        font-size: 24px;
    }
    .whu_works_card_container{
        gap: 50px;
    }
    .card_overlay,
    .card_border,
    .card_image_wrapper img{
        border-radius: 50px;
    }
    .card_border{
        top: 20px;
        left: 20px;
    }
    .why_works_bottom_text{
        font-size: 24px;
        padding-right: 0;
    }
    
}

@media (max-width: 1100px) {
    .whu_works_card_container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .why_works_card_block{
        width: calc(50% - 25px);
    }
}


@media (max-width: 750px) {
    .why_works_card_block{
        width: calc(100% - 25px);
    }
    .card_text{
        padding: 0 20px;
    }
}

/* Introduction Section */
.introduction_section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: rgb(232, 219, 214);
    padding: 70px 0 100px;
}


.introduction_content{
    display: flex;
    gap: 20px;
    /* padding: 0 40px; */
}
.introduction_block{
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.introduction_text_block{
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #F2ECE6;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.introduction_text_block strong{
    font-size: 24px;
    font-weight: 700;
}

.introduction_text_block p{
    color: var(--text-primary, #1B0E11);
    font-feature-settings: 'salt' on;
    font-family: Comfortaa;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 159%; /* 25.44px */
}

.introduction_text_block svg{
    width: 100%;
}

.introduction_signature{
    color: #AD8E72 !important;
}

.ib_right{
    padding: 0 !important;
}

.ib_right > div{
    padding: 32px;
}

.introduction_block_image{
    width: 100%;
    height: auto;
    position: relative;
    padding-right: 30px;
}

.introduction_block_border{
    top: 25px;
    width: calc(100% - 30px);
    height: 100%;
    left: 25px;
    border: 2px solid #d0ab89;
    border-radius: 40px;
    position: absolute;
}

.introduction_block_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}


@media (max-width: 1330px) {
    .introduction_block_image{
        width: calc(67% - 10px);
    }
    .ib_right{
        gap: 0
    }
    .ib_right > div:last-of-type{
        padding-top: 0;
    }
    .introduction_block:last-of-type{
        width: 100%;
    }
    .introduction_content{
        flex-wrap: wrap;
    }
    .introduction_text_block{
        padding: 20px;
    }
    .introduction_text_block{
        border-radius: 40px;
    }
    .introduction_text_block svg{
        display: none;
    }
    .introduction_block_border{
        top: -15px;
    }
}

@media (max-width: 1050px) {
  .introduction_block_image {
    width: calc(56% - 11px);
  }
  .introduction_block{
    width: 43%;
    gap: 20px;
}
  .introduction_text_block strong{
    font-size: 20px;
  }
}

.is_mobile{
    display: none;
}

@media (max-width: 1050px) {
    .is_desktop{
        display: none;
    }
    .is_mobile{
        display: block;
    }
    .introduction_block{
        width: 100%;
    }
    .introduction_block_image{
        width: 100%;
    }
}

@media (max-width: 740px) {
    .ib_right > div:last-of-type{
        padding-top: 20px;
    }
    .ib_right > div{
        padding: 20px;
    }
    .introduction_text_block svg{
        display: block;
    }
    .introduction_text_block strong{
        font-size: unset;
        font-weight: 400;
    }
    .introduction_text_block p{
        font-size: 16px;
    }
}

@media (max-width: 1640px) {
    .what_inside_container{
        gap: 40px;
    }
}

@media (max-width: 1340px) {
    .what_inside_container{
        flex-wrap: wrap;
    }
    .w_i_c_container{
        width: calc(50% - 20px);
    }
    .wib_phone{
        position: relative;
        display: flex;
        justify-content: center;
    }
    .what_inside_block{
        position: relative;
        z-index: 1;
    }
    .wib_phone::after{
        top: -20px;
        z-index: 0;
        position: absolute;
        content: "";
        width: 2px;
        height: 100px;
        background: #d0ab89;
    }
    .wib_phone img{
        position: relative;
        z-index: 1;
    }
}


@media (max-width: 991px) {
    .what_inside_block{
        padding: 20px;
    }
}

.wita_mobile{
    display: none;
}


@media (max-width: 740px) {
    .wita_desktop{
        display: none;
    }
    .wita_mobile{
        display: block;
    }
    .w_i_c_container{
        width: 100%;
    }
    .what_inside_block{
        min-height: auto;
    }
    .wib_phone{
        width: 100%;
    }
    .wib_phone img{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .wib_phone::after{
        display: none;
    }
    .what_inside_container{
        gap: 10px;
    }
    .wib_phone > div{
        display: flex;
        justify-content: center;
    }
    .wib_phone > div::after{
        z-index: 0;
        position: absolute;
        content: "";
        width: 2px;
        height: 100px;
        background: #d0ab89;
    }
    .wib_phone > div:nth-child(1)::after{
        top: -20px;
    }
    .wib_phone > div:nth-child(2)::after{
        bottom: -20px;
    }
}

@media (max-width: 500px) {
    .what_inside_block h3{
        font-size: 16px;
    }
    .what_inside_block p{
        font-size: 14px;
    }
}

/* Subscription Section */
.subscription_section{
    position: relative;
    width: 100%;
    min-height: auto;
    background: #EEE5E1;
    padding: 80px 0 100px;
}


.subscription_pricing_container{
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.subscription_content{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    background: rgba(229, 214, 208, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 70px;
    padding: 20px 18px;
    box-shadow: inset 6px 0px 4px 6px rgba(228, 210, 202, 0.25), inset 0px 6px 8px 0px #e4d2ca;
    padding-top: 45px;
    padding-bottom: 45px;
}

.pricing_card{
    position: relative;
    width: calc(50% - 5px);
    height: auto;
    background: #F2ECE6;
    border: 2px solid #D0AB89;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing_badge{
    position: absolute;
    background: #1B0E11;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 21.843px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 50px;
    white-space: nowrap;
    font-feature-settings: 'salt' on;
    top: -21px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
}

.pricing_card_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 45px 0 42px 0;
}

.pricing_period{
    color: #1B0E11;
    font-family: "Inter", sans-serif;
    font-size: 25px;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 20px;
}

.pricing_amount_wrapper{
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pricing_amount{
    color: #1B0E11;
    font-family: "Inter", sans-serif;
    font-size: 35.222px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.pricing_period_suffix{
    color: #1B0E11;
    font-family: "Inter", sans-serif;
    font-size: 28.178px;
    font-weight: 400;
    margin: 0;
}

.annual_card .pricing_amount{
    margin-top: 10px;
}

.subscription_divider{
    width: 100%;
    height: 1px;
    margin-top: 30px;
    margin-bottom: 24px;
}

.subscription_features{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}



.features_block{
max-width: 637px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features_block:first-of-type .feature_item{
    justify-content: end;
}

.feature_item{
    display: flex;
    align-items: center;
    gap: 8px;
}

.features_left .feature_item{
    justify-content: flex-end;
    width: 100%;
}

.features_left .feature_item:first-child{
    width: 100%;
}

.features_left .feature_item:last-child{
    width: 380px;
}

.features_right .feature_item{
    justify-content: flex-start;
}

.features_right .feature_item:first-child{
    width: 100%;
}

.features_right .feature_item:last-child{
    width: 204px;
}

.feature_tick{
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature_tick svg{
    width: 14px;
    height: 14px;
}

.feature_item p{
    color: #1B0E11;
    font-family: "Inter", sans-serif;
    font-size: 25.047px;
    font-weight: 400;
    margin: 0;
    line-height: normal;
    text-align: end;
}

@media (max-width: 1440px) {
    .subscription_pricing_container{
        padding: 0;
    }
}


@media (max-width: 991px) {
    .subscription_content{
        padding-top: 25px;
    }
    .pricing_card{
        width: 100%;
    }
    .pricing_card{
        margin-top: 20px;
    }
    .subscription_features{
        flex-direction: column;
    }
    .features_block .feature_item{
        justify-content: end !important;
    }
    .features_block:last-of-type{
        margin-top: 10px;
    }
    .features_block{
        max-width: 100% !important;
    }
    .subscription_content{
        border-radius: 30px;
    }
    .pricing_card{
        border-radius: 20px;
    }
}


.btn_buy{
width: 199px;
  background: #d0ab89 !important;
  margin-top: 20px;
  padding: 12px;
  border-radius: 100px;
  color: white;
  font-family: "Comfortaa", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  font-feature-settings: 'salt' on;
}

@media (max-width: 530px) {
    .feature_item p{
        font-size: 16px;
    }
    .pricing_amount{
        font-size: 30px;
    }
    .pricing_period_suffix{
        font-size: 20px;
    }
    .pricing_badge{
        font-size: 16px;
        top: -17px;
    }
    .pricing_card_content{
        padding: 29px 0 29px 0;
    }
}

/* FAQ Section */
.faq_section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFDFC;
    padding: 70px 24px;
    overflow: hidden;
}

.faq_background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.faq_ellipse{
    position: absolute;
    width: 749.5px;
    height: 783.703px;
    left: 1455px;
    top: 399px;
    background-image: url('http://localhost:3845/assets/04e4efbd82e7f6431a2f649e9c1bc886f0571d76.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.25);
}

.faq_container{
    position: relative;
    max-width: 1482px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}


.faq_list{
    flex-direction: column;
    gap: 20px;
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.faq_item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 69px;
    width: 100%;
}

.faq_question{
    width: 35%;
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
    font-feature-settings: 'salt' on;
    flex-shrink: 0;
}

.faq_answer{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 159%;
    opacity: 0.76;
    margin: 0;
    width: 706px;
    font-feature-settings: 'salt' on;
}

.faq_answer p{
    margin: 0;
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 159%;
    opacity: 0.76;
}

.faq_divider{
    width: 100%;
    height: 1px;
    background-image: url('http://localhost:3845/assets/e175fa06784fa8441bbc3d6262ea6977534ba045.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq_quote{
    color: #D0AB89;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: 125%;
    text-align: start;
    margin: 0;
    width: 100%;
    padding: 0 40px;
}

@media (max-width: 910px) {
    .faq_question{
        width: 100%;
    }
    .faq_item{
        flex-direction: column;
        gap: 10px;
    }
    .faq_answer{
        width: 100%;
    }
}


@media (max-width: 720px) {
    .faq_list{
        padding: 0;
    }
    .faq_section .wrapper{
        padding: 0;
    }
}


@media (max-width: 550px) {
    .faq_answer{
        font-size: 18px;
    }
    .faq_quote{
        padding: 0;
        font-size: 24px;
    }
  .section_title {

    width: 300px;
    flex-shrink: 0;
  }
}

/* Footer */
.footer{
    position: relative;
    width: 100%;
    background: #EEE5E1;
    padding: 51px 0;
}

.footer_content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 0 40px;
}

.footer_left{
    display: flex;
    flex-direction: column;
    gap: 17px;
    width: 242px;
}

.footer_left p{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    font-feature-settings: 'salt' on;
}

.footer_left a{
    color: #1B0E11;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer_left a:hover{
    opacity: 0.7;
}

.footer_copyright{
    margin-top: 15px;
}

.footer_copyright p{
    margin: 0;
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    font-feature-settings: 'salt' on;
}

.footer_center{
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 390px;
    flex-shrink: 0;
}

.footer_download_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 390px;
    height: 64px;
    padding: 16px 24px;
    background: #D0AB89;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: inset 0px 4px 4px 0px rgba(226, 198, 173, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.footer_download_btn:hover{
    transform: translateY(-2px);
    box-shadow: inset 0px 4px 4px 0px rgba(226, 198, 173, 0.25), 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.footer_download_btn:active{
    transform: translateY(0);
}

.footer_download_btn span{
    color: white;
    font-family: "Comfortaa", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    font-feature-settings: 'salt' on;
}

.footer_download_btn svg{
    flex-shrink: 0;
}

.footer_right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    width: 247px;
    text-align: right;
}

.footer_support{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.footer_support_label{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.5;
    margin: 0;
    font-feature-settings: 'salt' on;
}

.footer_support_email{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    font-feature-settings: 'salt' on;
}

.footer_made{
    color: #1B0E11;
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    opacity: 0.6;
    margin: 0;
    font-feature-settings: 'salt' on;
}


@media (max-width: 1129px) {
    .footer_content{
        flex-direction: column;
    }
    .footer_support,
    .footer_right,
    .footer_left{
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .footer_center{
        width: 100%;
    }
}


@media (max-width: 425px) {
    .footer_content{
        padding: 0;
    }
    .footer_center,
    .footer_download_btn{
        width: 100%;
    }
}

button[disabled]{
    background: #b8b8b894;
    cursor: default;
}

@media (max-width: 550px) {
    .what_inside_the_app{
        padding-bottom: 25px;
    }
}


.document_text{
    font-family: Comfortaa;
    padding: 60px 0;
}

.document_text h3{
    margin-top: 15px;
}

.document_text > div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.document_text p{
    margin-left: 20px;
}

.document_text ul{
    margin-left: 40px;
}

.document_text ul li{
list-style: disc;
}

.document_text table { border-collapse: collapse; width: max-content; }
.document_text td { padding: 10px; border: 1px solid #ddd; }
.document_text tr td:first-child { font-weight: bold; width: 40%; }

.document_text a{
    color: #000;
    text-decoration: underline;
}


@media (max-width: 1300px) {
    .document_text{
        padding-top: 110px;
    }
}

@media (max-width: 500px) {
    .document_text p{
        margin: 0;
        font-size: 15px;
    }
    .document_text tr td:first-child{
        width: 20%;
        font-size: 15px;
    }
    .document_text ul{
        margin-left: 20px;
    }
}

a {
  -webkit-tap-highlight-color: transparent;
  /* Для современных браузеров */
  tap-highlight-color: transparent;
}