#mobile-blur-overlay {
    z-index: 9998 !important;
}

header {
    --header-z: 9999;
}

/* General Styles */

.section_title {
    font-size: 60px;
}

@media screen and (max-width: 1280px) {
    .section_title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .section_title {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .section_title {
        font-size: 40px;
    }
}

@media screen and (max-width: 600px) {
    .section_title {
        font-size: 34px;
    }
}

.white-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0 0 60px 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

[class*="__container"] {
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1200px) {
    [class*="__container"] {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    [class*="__container"] {
        padding: 0 16px;
    }
}

/* Hero Section */

.hero-section {
    padding: 34px 0px 142px 0px;
    background-color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 20px 0px 76px 0px;
    }
}

.hero-section__content {
    display: flex;
    border-radius: var(--Large-BG);
    background-color: var(--Main-Blue-200);
    padding: 0 0 0 60px;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

.os-mac.browser-chrome .hero-section__content {
    background-color: #e8f3ff;
}

html.os-mac.browser-safari .hero-section__content {
    background-color: #e8f3ff;
}

@media (min-width: 1280.98px) {
    .hero-section__content {
        background-image: url("../assets/images/listicle/hero-bg.png");
        background-repeat: no-repeat;
        background-position: right top;
    }
}

@media (max-width: 1280.98px) {
    .hero-section__content {
        padding: 60px 60px 0px 60px;
        gap: 50px;
        flex-direction: column;
        border-radius: var(--Large);
    }
}

@media (max-width: 767.98px) {
    .hero-section__content {
        padding: 40px 20px 0;
        border-radius: var(--Middle);
    }
}

.hero-left {
    padding: 27.5px 0px;
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;

}

@media (max-width: 1526.98px) {
    .hero-left {
        padding: 12px 0px 40px 0px;
    }
}

@media (max-width: 1280.98px) {
    .hero-left {
        padding: 0px;
        max-width: 677px;
    }
}

.hero-left__title {
    color: var(--Gray-900);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 20px;
    padding-top: 80px;
}

@media (max-width: 1280.98px) {
    .hero-left__title {
        padding-top: 0px;
    }
}

@media (max-width: 767.98px) {
    .hero-left__title {
        font-size: 34px;
        line-height: 1.18;
    }
}

.hero-left__text {
    font-size: 22px;
    line-height: 1.4;
    flex: 0 1 20%;
    margin-bottom: 40px;
}

@media (max-width: 1526.98px) {
    .hero-left__text {
        margin-bottom: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-left__text {
        font-size: 19px;
        margin-bottom: 40px;
    }
}

.hero-left__buttons {
    display: flex;
    align-items: flex-start;
    gap: 14px;

}

.button-wrapper {
    justify-content: flex-start;
}

.hero-left__buttons .button-wrapper:nth-child(1) {
    width: 221px;
}

@media (max-width: 767.98px) {
    .hero-left__buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-left__buttons .button-wrapper:nth-child(1) {
        width: 100%;
    }
}

@media (max-width: 487.98px) {
    .hero-left__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.hero-video {
    aspect-ratio: 651 / 571;
    height: auto;
    overflow: hidden;
    flex: 0 1 43.2%;
}

.hero-video img {
    object-fit: contain;
    object-position: right bottom;
}

.hero-video video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 651 / 571;
}

@media (max-width: 1280.98px) {
    .hero-video {
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .hero-video {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        aspect-ratio: 303/265;
    }

    .hero-video video {
        aspect-ratio: 303/265;
        width: 100%;
        height: auto;
    }
}

/* Process Steps Section (dark layout) */

.process_steps {
    background-color: var(--Main-Blue-900);
    padding: 60px 60px 200px;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(365px, 500px);
    justify-content: center;
    column-gap: 120px;
    row-gap: 60px;
    position: relative;
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
}

.process_steps_content {
    padding: 24px 0;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.process_steps_title {
    color: var(--White);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.16em;
}

.process_steps_cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 500px;
    width: 100%;
}

.process_steps_card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process_steps_card:last-child {
    border-bottom: none;
}

.process_steps_card_number {
    font-size: 42px;
    font-weight: 700;
    color: var(--say9-secondary-blue);
    min-width: 56px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.process_steps_card_body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.process_steps_card_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--White);
    line-height: 1.4;
}

.process_steps_card_desc {
    font-size: 18px;
    color: var(--Main-Blue-300);
    line-height: 1.5;
}

.process_steps_cta {
    grid-column: 1 / -1;
}

.process_steps_cta.how-it-works-bottom {
    display: flex;
    padding: 26px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 400px;
    margin-top: 0;
    gap: 36px;
    background: var(--Main-Blue-600);
}

.how-it-works-bottom__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 767.98px) {
    .how-it-works-bottom__button-wrapper {
        width: 197px;
        min-width: 197px;
        height: 52px;
    }
}

.how-it-works-bottom__left {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.how-it-works-bottom__left p {
    color: var(--White);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.18;
}

@media (max-width: 1280.98px) {
    .process_steps {
        grid-template-columns: 1fr;
        padding: 80px 60px 100px;
        border-radius: 60px 60px 0 0;
    }

    .process_steps_content {
        max-width: 100%;
    }

    .process_steps_cards {
        max-width: 100%;
    }

    .process_steps_title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .process_steps {
        padding: 60px 16px 80px;
        border-radius: 24px 24px 0 0;
        gap: 40px;
    }

    .process_steps_title {
        font-size: 36px;
    }

    .process_steps_card {
        gap: 16px;
        padding: 18px 0;
    }

    .process_steps_card_number {
        font-size: 32px;
        min-width: 44px;
    }

    .process_steps_card_title {
        font-size: 20px;
    }

    .process_steps_card_desc {
        font-size: 16px;
    }

    .process_steps_cta.how-it-works-bottom {
        flex-direction: column;
        border-radius: var(--Middle);
        padding: 24px 16px;
    }

    .how-it-works-bottom__button-wrapper {
        height: 40px;
        max-width: 312px;
        width: 100%;
    }

    .how-it-works-bottom__left {
        flex-direction: column;
        gap: 14px;
    }

    .how-it-works-bottom__left img {
        width: 33px;
        height: 33px;
    }

    .how-it-works-bottom__left p {
        text-align: center;
        font-size: 30px;
        line-height: 1.28;
    }

    .how-it-works-bottom__button {
        width: 311px;
    }

    .how-it-works-bottom__button:active {
        width: calc(311px - 4px) !important;
    }
}

@media (max-width: 487.98px) {
    .how-it-works-bottom__button {
        width: 100%;
    }
}

/* Benefits Section */

#benefits {
    margin-top: -130px;
    padding: 80px 0 120px;
    border-radius: 60px 60px 0 0;
    background-color: #C6E1FF;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.benefits_web {
    position: absolute;
    width: 1703px;
    height: 1027px;
    right: -440px;
    top: -350px;
}

#benefits_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.benefits_content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits_question {
    display: none;
    position: absolute;
    width: 62px;
    height: 106px;
    transform: rotate(20deg);
    bottom: -30px;
    right: 50px;
}

.benefits_subtitle {
    background-color: var(--say9-primary-blue);
    padding: 6px 14px 4px;
    border-radius: 200px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.1em;
    margin-bottom: 18px;
    display: inline-block;
}

.benefits_title {
    color: var(--Gray-900);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1em;
}

.benefits_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.benefits_cards .benefits_card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.benefits_cards .benefits_card:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}

.benefits_cards .benefits_card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.benefits_cards .benefits_card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.benefits_cards .benefits_card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.benefits_card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.benefits_card_title,
.benefits_card_txt {
    transition: color 0.3s ease;
}

.benefits_card:hover {
    background-color: var(--say9-primary-blue);
    transform: translateY(-5px);
}

.benefits_card:hover .benefits_card_title {
    color: #FFFFFF;
}

.benefits_card:hover .benefits_card_txt {
    color: rgba(255, 255, 255, 0.8);
}

.benefits_card_icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.benefits_card:first-child .benefits_card_icon {
    background-color: #FFF6B4;
}

.benefits_card:nth-child(2) .benefits_card_icon {
    background-color: #AAE9FF;
}

.benefits_card:nth-child(3) .benefits_card_icon {
    background-color: #CBE389;
}

.benefits_card:nth-child(4) .benefits_card_icon {
    background-color: #ecc9fc;
}

.benefits_card:nth-child(5) .benefits_card_icon {
    background-color: #ffe6c2;
}

.benefits_card_icon img,
.benefits_card_icon svg {
    width: 42px;
    height: 42px;
}

.benefits_card_title {
    color: var(--Gray-900);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 14px;
}

.benefits_card_txt {
    color: #4A5578;
    font-size: 24px;
    line-height: 1.6em;
}

@media screen and (max-width: 1350px) {
    #benefits_inner {
        flex-direction: column;
    }

    .benefits_content {
        max-width: 100%
    }
}

/* FAQ */

#faq {
    padding: 80px 60px 0;
}

@media (max-width: 1280.98px) {

    #benefits {
        margin-top: -60px;
        padding: 40px 0 120px;
    }

    .how-it-works__title,
    .benefits_title {
        font-size: 48px;
        line-height: 1.18;
    }

    #benefits_inner {
        gap: 24px;
    }
}

@media (max-width: 767.98px) {

    .how-it-works__title,
    .benefits_title {
        margin-bottom: 32px;
        width: 100%;
        max-width: 100%;
    }

    .benefits_title {
        margin-bottom: 12px;
    }
}

@media (max-width: 1024px) {
    .benefits_cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits_cards .benefits_card:nth-child(1) {
        grid-column: 1 / 3;
    }

    .benefits_cards .benefits_card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .benefits_cards .benefits_card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .benefits_cards .benefits_card:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .benefits_cards .benefits_card:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 767.98px) {
    #benefits {
        padding: 40px 0 80px;
        margin-top: -40px;
    }

    .benefits_title {
        width: auto;    
    }

    .benefits_cards {
        grid-template-columns: 1fr;
    }

    .benefits_cards .benefits_card:nth-child(1),
    .benefits_cards .benefits_card:nth-child(2),
    .benefits_cards .benefits_card:nth-child(3),
    .benefits_cards .benefits_card:nth-child(4),
    .benefits_cards .benefits_card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .benefits_card {
        padding: 24px;
    }

    .benefits_card_title {
        font-size: 26px;
    }

    .benefits_card_txt {
        font-size: 18px;
    }

    .benefits_card_icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .benefits_card_icon img,
    .benefits_card_icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Why Choose Us Cards Section */

.why-choose-wrapper {
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 3;
    padding-bottom: 0;
    overflow: visible;
}

.why-choose-cards {
    padding: 140px 0px 100px 0px;
    width: 100%;
    background-color: var(--White);
}

.why-choose-cards__container {
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 60px;
}

.why-choose-cards .how-it-works__label {
    margin-bottom: 14px;
}

.why-choose-cards .how-it-works__title {
    color: var(--Gray-900);
    position: relative;
    font-size: 60px;
    z-index: 10;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 14px;
}

.why-choose-cards__subtitle {
    font-size: 22px;
    line-height: 1.4;
    color: var(--Gray-600, #4A5578);
    margin-bottom: 48px;
    max-width: 600px;
}

.why-choose-cards .how-it-works-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.why-choose-cards .cards {
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
    flex: 0 1 calc(33.333% - 11px);
}

.why-choose-cards .cards__label {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1/1;
    padding-top: 2px;
    color: var(--Gray-900);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    border-radius: var(--Extra-large);
    background: var(--White);
}

.why-choose-cards .cards__title {
    color: var(--Main-Blue-900);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.28;
    margin-bottom: 0;
}

.why-choose-cards .cards-1 {
    border-radius: var(--Middle, 24px);
    background: var(--Secondary-Turquoise-300);
}

.why-choose-cards .cards-2 {
    border-radius: var(--Middle, 24px);
    background: var(--Other-Green-1-300);
}

.why-choose-cards .cards-3 {
    border-radius: var(--Middle, 24px);
    background: var(--Main-Blue-300);
}

.why-choose-cards .cards-4 {
    border-radius: var(--Middle, 24px);
    background: #f5e0ff;
}

.why-choose-cards .cards-5 {
    border-radius: var(--Middle, 24px);
    background: #ffecd2;
}

.label.outline-light {
    color: var(--White);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1280.98px) {
    .why-choose-cards .how-it-works__title {
        font-size: 48px;
        line-height: 1.18;
    }

    .why-choose-cards .cards {
        flex: 0 1 100%;
    }

    .why-choose-cards__container {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .why-choose-cards__container,
    .benefits_inner__container {
        padding: 0 40px;
    }

    #faq {
        padding: 80px 40px 0;   
    }
}

@media (max-width: 767.98px) {
    .why-choose-wrapper {
        border-radius: 24px 24px 0 0;
    }

    .why-choose-cards {
        padding: 100px 0 60px;
    }

    .why-choose-cards__container,
    .benefits_inner__container {
        padding: 0 16px;
    }

    .why-choose-cards .how-it-works__title {
        margin-bottom: 14px;
        width: 100%;
        max-width: 100%;
    }

    .why-choose-cards__subtitle {
        font-size: 19px;
        margin-bottom: 32px;
    }

    #faq {
        padding: 40px 16px 0;
    }

    .why-choose-cards .cards__title {
        font-size: 20px;
    }
}

.hero-left__button, #get_samples, #result .result_btn {
    cursor: pointer;
}