

:root {
    --color-text: #333333;
    --color-green: #13b567;
    --color-green-light: #2ADA85;
    --color-link: #0063BE;
    --color-dark: #002643;
    --color-blue: #30b7f5;
    --color-orange: #FFA600;
    --color-blue-soft: #ebf9ff;
    --color-white: #ffffff;
    --font-heading: "Ubuntu", Arial, sans-serif;
    --font-body: "Roboto Flex", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    min-width: 320px;
    margin: 0;
    background: var(--color-white, #ffffff);
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

main {
    flex: 1 0 auto;
}


img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s;
}


.site-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    padding: 0 24px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1570px;
    min-height: 100px;
    margin: 0 auto;
    padding: 30px 50px;
    border-radius: 51px;
    background: var(--color-white, #ffffff);
    box-shadow: 0 0 12px 6px rgba(0, 0, 0, 0.06);
}

.site-header__logo {
    display: block;
    width: 172px;
    height: 36px;
    flex: 0 0 auto;
}

.site-header__logo img,
.site-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.site-header__nav a:hover {
    color: var(--color-green, #13B567);
}

.site-header__nav a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 176px;
    height: 40px;
    margin-left: 100px;
    border: 1px solid var(--color-text, #333333);
    border-radius: 22px;
    background: var(--color-white, #ffffff);
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s;
}

.site-header__cta:hover {
    background: var(--color-green, #13B567);
    border-color: var(--color-green, #13B567);
    color: var(--color-white, #ffffff);
}

.site-header__cta:hover span {
    background: var(--color-white, #ffffff);
}

.site-header__cta span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-green, #13b567);
    transition: all 0.2s;
}

/* mobile burger + drawer (revealed at <=1024) */
.site-header__burger {
    display: none;
}

.site-menu {
    display: none;
}

.hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-text, #333333);
    background: var(--color-white, #ffffff);
}

.hero-section__soft-shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 840px;
    height: 800px;
    border-radius: 0 461px 461px 0;
    opacity: 0.2;
    background: linear-gradient(0deg, #EBF9FF 0%, #CAECFD 74.52%, #B1E6FF 100%);
}

.hero-section__blue-shape {
    position: absolute;
    top: -122px;
    right: 0;
    bottom: 0;
    width: 670px;
    height: 922px;
    border-radius: 461px 0 0 461px;
    background: linear-gradient(119deg, #30B7F5 2.88%, #DEF3FD 76.71%);
}

.hero-section__cloud {
    position: absolute;
    top: 140px;
    right: 0;
    z-index: 2;
    width: 404px;
    opacity: 0.4;
}

.hero-section__inner {
    position: relative;
    z-index: 5;
    width: min(1570px, calc(100% - 48px));
    margin: 0 auto;
}

.hero-section__content {
    position: relative;
    z-index: 8;
    width: 100%;
    max-width: 800px;
    padding: 210px 0 104px;
    margin-left: 131px;
}

.hero-section h1 {
    max-width: 800px;
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
}

.hero-section__content p {
    max-width: 500px;
    margin: 16px 0 0;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0;
}

.main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    min-height: 70px;
    margin-top: 40px;
    border-radius: 33px;
    background: var(--color-green, #13b567);
    color: var(--color-white, #ffffff);
    font-family: var(--font-heading), sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: all 0.2s;
}

.main-button:hover {
    background: var(--color-green-light, #2ADA85);
}

.hero-section__benefits {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 320px;
    margin: 56px 0 0;
    padding-left: 30px;
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    list-style: disc;
}

.hero-section__media {
    position: absolute;
    right: 39px;
    bottom: 0;
    display: flex;
    width: 850px;
    z-index: 6;
}

.hero-section__media img {
    width: 100%;
}

.form-section {
    min-height: 100vh;
    padding: 180px 24px 80px;
}

.how-section {
    position: relative;
    background: var(--color-white, #ffffff);
    padding: 130px 24px 71px;
}

.how-section__inner {
    width: min(1570px, 100%);
    margin: 0 auto;
}

.how-section h2 {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

.how-section__steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 90px;
}

.how-step {
    min-width: 0;
}

.how-step__icon {
    width: 150px;
    height: 100px;
    object-fit: contain;
}


.how-step h3 {
    margin: 24px 0 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
}

.how-step p {
    margin: 12px 0 0;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
}

.section-placeholder {
    min-height: 1px;
}

.why-section {
    position: relative;
    background: var(--color-white, #ffffff);
    padding: 71px 24px 75px;
}

.why-section__card {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 70px 78px 93px 612px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(270deg, #FFF 0%, #F0FAFE 100%);
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.30);
}

.why-section__media {
    position: absolute;
    left: -603px;
    top: -344px;
    width: 1100px;
    height: 922px;
    border-radius: 0 461px 461px 0;
    background: linear-gradient(90deg, #EBF9FF 57.05%, #00A6F2 100%);

}

.why-section__media-handshake {
    position: absolute;
    right: -42px;
    bottom: 0;
    z-index: 2;
}

.why-section__media-window {
    position: absolute;
    right: 192px;
    bottom: 229px;
    z-index: 1;
}

.why-section__media-cloud {
    position: absolute;
    bottom: 409px;
    right: -7px;
    z-index: 0;
}

/*.why-section__media {*/
/*    min-width: 0;*/
/*    height: 574px;*/
/*    overflow: hidden;*/
/*}*/

/*.why-section__media img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/


.why-section h2 {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
}

.why-title__brand,
.why-title__brand span {
    display: inline;
}

.why-title__brand span {
    white-space: nowrap;
}

.why-section__features {
    display: grid;
    grid-template-columns: 470px 359px;
    column-gap: 56px;
    row-gap: 49px;
    margin-top: 60px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-feature__icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}

.why-feature h3 {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
}

.why-feature p {
    margin: 3px 0 0;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 34px;
}

.faq-section {
    position: relative;
    background: var(--color-white, #ffffff);
    padding: 75px 24px 47px;
    overflow: hidden;
}

.faq-section__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-right: 140px;
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
}

.faq-section__card:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: -30px;
    display: block;
    border-radius: 0 461px 461px 0;
    background: linear-gradient(-90deg, #4BC6FF 0%, #8ADAFF 11.51%, #FFF 77.21%);
    z-index: 0;
}

.faq-section__card:after {
    content: '';
    position: absolute;
    top: 220px;
    right: -60px;
    display: block;
    width: 244px;
    height: 103px;
    background: transparent url("../img/cloud.svg") no-repeat center;
    background-size: contain;
    opacity: 0.4;
}

.faq-section__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 770px;
    padding-bottom: 111px;
}

.faq-section h2 {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: normal;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 45px;
}

.faq-item {
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-white, #ffffff);
    border: 1px solid transparent;
    filter: drop-shadow(0 4px 33px rgba(0, 0, 0, 0.14));
    transition: all 0.2s;
}

.faq-item:hover,
.faq-item:focus {
    border-color: var(--color-orange, #FFA600);
}

.faq-item:hover .faq-item__plus::before,
.faq-item:hover .faq-item__plus::after {
    background: var(--color-orange, #FFA600);
}

.faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 106px;
    padding: 33px 50px 33px 47px;
    border: 0;
    background: transparent;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    cursor: pointer;

}

.faq-item__button span:first-child {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.faq-item__button span:first-child::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 20px;
    border-radius: 50%;
    background: var(--color-orange, #FFA600);
    flex: 0 0 18px;
}

.faq-item__plus {
    position: relative;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.faq-item__plus::before,
.faq-item__plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background: var(--color-text, #333333);
    transform: translate(-50%, -50%);
    transition: all 0.2s;
}

.faq-item__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__plus::after {
    opacity: 0;
}

/* animate via grid-template-rows: height 0->auto is not animatable and caused
   a visible flash/jump on open (esp. mobile) */
.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    padding: 0 112px 0 107px;
    transition: grid-template-rows 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
}

.faq-item__body > * {
    overflow: hidden;
    min-height: 0;
}

.faq-item.is-open .faq-item__body {
    grid-template-rows: 1fr;
    opacity: 1;
    padding: 0 112px 28px 107px;
}

.faq-item__body p {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 17px;
    line-height: 1.45;
}

.faq-section__visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 620px;
    z-index: 1;
}
.faq-section__visual img {
    position: absolute;
}

.faq-section__visual img:nth-child(1) {
    top: 18px;
    left: 4px;
}

.faq-section__visual img:nth-child(2) {
    bottom: 95px;
    right: 4px;
}

.faq-section__visual img:nth-child(3) {
    top: 0;
    left: 191px;
}

.cta-section {
    position: relative;
    padding: 47px 24px 90px;
    background: #fff;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 153px;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 1585px;
    background: linear-gradient(45deg, #FFF 0%, #E4F7FF 65.11%, #BBEAFD 98.93%);
}

.cta-section__card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 124px;
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 70px 87px 90px 110px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(264deg, #FFF 0%, #E4F7FF 65.11%, #BBEAFD 98.93%);
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.30);
}

.cta-section__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 525px;
}

.cta-section__content {
    width: 100%;
    max-width: 725px;
}

.cta-section h2 {
    margin: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-heading), sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: normal;
}

.cta-section__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 34px 50px;
    margin: 40px 0 0;
    padding: 0;
    color: var(--color-text, #333333);
    font-family: var(--font-body), sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    list-style: none;
}

.cta-section__checks li::before {
    content: "✓";
    display: inline-block;
    margin-right: 5px;
    color: #E16B27;
}

.cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    min-height: 70px;
    margin-top: 64px;
    border-radius: 35px;
    background: var(--color-green, #13b567);
    color: var(--color-white, #ffffff);
    font-family: var(--font-heading), sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    transition: all 0.2s;
}

.cta-section__button:hover {
    background: var(--color-green-light, #2ADA85);
}

.site-footer {
    background: #015B84;
    color: var(--color-white, #ffffff);
    padding: 50px 24px;
}

.site-footer__inner {
    width: min(1570px, 100%);
    margin: 0 auto;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding-bottom: 35px;
}

.site-footer__logo {
    display: block;
    width: 172px;
    height: 36px;
    flex: 0 0 auto;
}

.site-footer__logo img {
    filter: brightness(0) invert(1);
}

.site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    min-width: 0;
    font-family: var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
}

.site-footer__nav a:hover {
    opacity: 0.7;
}

.site-footer__nav a.active {
    text-decoration: underline;
}

.site-footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.95);
}

.site-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-top: 35px;
    color: var(--color-white, #ffffff);
    font-family: var(--font-body), sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.site-footer__description,
.site-footer__copyright {
    margin: 0;
}

.site-footer__copyright {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* CONTACT PAGE */
.contact {
    padding: 230px 0 130px;
}

.contact__inner {
    max-width: 1252px;
    margin: 0 auto;
}

.contact__title {
    max-width: 570px;
    padding: 0 0 32px;
    margin: 0 0 32px;
    border-bottom: 1px solid var(--color-dark, #002643);
    font-family: var(--font-heading), sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact__subtitle {
    max-width: 570px;
    margin: 0 0 125px;
    font-family: var(--font-body), sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.contact__content {
    width: 100%;
    max-width: 635px;
}

.contact__map {
    width: 100%;
    max-width: 551px;
    height: 520px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    margin: 0 30px 0 0;
    border-radius: 8px;
    background: #8FD6F7;
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.30);
}

.contact-item__data {
    display: flex;
    align-items: baseline;
    width: 100%;
    margin: 10px 0 0;
}

.contact-item__label {
    width: 100%;
    max-width: 200px;
    margin: 0 25px 0 0;
    font-family: var(--font-heading), sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-dark, #002643);
}

.contact-item__value {
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.contact-item__link {
    border-bottom: 1px solid transparent;
}

.contact-item__link:hover {
    color: var(--color-blue, #30b7f5);;
    border-color: var(--color-blue, #30b7f5);;
}

.legal-content {
    padding: 190px 0 130px;
}

.legal-content .wrapper {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 30px;
}

.legal-content h1 {
    margin: 0 0 30px;
    font-family: var(--font-heading), sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.legal-content p {
    margin: 0 0 30px;
    font-family: var(--font-body), sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.legal-content p > strong {
    display: inline-block;
    margin: 30px 0 0;
    font-family: var(--font-body), sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.legal-content a {
    display: inline-flex;
    border-bottom: 1px solid transparent;
    color: var(--color-link, #0063BE);
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1600px) {
    .site-header__inner,
    .hero-section__inner {
        width: min(1250px, calc(100% - 48px));
    }

    .site-header__cta {
        margin-left: 48px;
    }

    .hero-section__content {
        margin-left: 70px;
    }

    .hero-section__media {
        right: -18px;
        width: 690px;
    }

    .why-section__card {
        padding: 70px 69px 90px 414px;
    }

    .why-section__media {
        top: -115px;
        left: -751px;
    }

    .why-section__media-handshake {
        width: 436px;
        right: -126px;
    }

    .why-section__media-cloud {
        width: 213px;
        top: 436px;
        right: 0;
    }

    .why-section__media-window {
        width: 182px;
        right: 122px;
        top: 228px;
    }

    .why-section__features {
        grid-template-columns: 1fr;
        padding-left: 126px;
    }

    /* single-column: reorder to read down the desktop columns (Figma): Fast, Pre-Screened, Completely Free, Zero Pressure, Real Support */
    .why-feature:nth-child(1) {
        order: 1;
    }

    .why-feature:nth-child(2) {
        order: 4;
    }

    .why-feature:nth-child(3) {
        order: 2;
    }

    .why-feature:nth-child(4) {
        order: 5;
    }

    .why-feature:nth-child(5) {
        order: 3;
    }

    .faq-section__card {
        padding-right: 45px;
    }

        /* CTA — stacked & centered (Figma is stacked at 1200/992; 2-col only on wide desktop where it fits) */
    .cta-section::before,
    .cta-section::after {
        display: none;
    }

    .cta-section__card {
        flex-direction: column;
        align-items: center;
        gap: 0;
        min-height: 0;
        padding: 0;
        overflow: hidden;
    }

    .cta-section__media {
        width: 100%;
        max-width: none;
        padding: 60px 24px 8px;
    }

    .cta-section__media img {
        width: min(340px, 100%);
    }

    .cta-section__content {
        width: 100%;
        max-width: 780px;
        padding: 28px 32px 64px;
        text-align: center;
    }

    .cta-section__checks {
        justify-content: center;
        gap: 28px 40px;
        margin-top: 40px;
    }

    .cta-section__button {
        margin: 48px auto 0;
    }
}

@media (max-width: 1440px) {
    .faq-section__visual {
        max-width: 490px;
    }
}

@media (max-width: 1280px) {
    .site-header__inner {
        min-height: 82px;
        padding: 23px 32px;
    }

    .site-header__nav {
        gap: 26px;
        font-size: 16px;
    }

    .site-header__cta {
        width: 150px;
        margin-left: 34px;
        font-size: 16px;
    }

    .hero-section h1 {
        max-width: 610px;
        font-size: 48px;
    }

    .hero-section__content p {
        max-width: 520px;
        font-size: 19px;
        line-height: 29px;
    }

    .hero-section__content {
        max-width: 610px;
        padding-top: 210px;
        margin-left: 24px;
    }

    .hero-section__media {
        right: -120px;
        width: 640px;
    }

    .hero-section__cloud {
        display: none;
    }

    .hero-section__blue-shape {
        right: -356px;
    }

    .hero-section__soft-shape {
        left: -261px;
    }

    .how-section {
        padding-top: 110px;
        padding-bottom: 132px;
    }

    .how-section__inner {
        width: min(1100px, 100%);
    }

    .how-section__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 54px;
        margin-top: 82px;
    }

    .how-step p {
        font-size: 15px;
    }

    .why-section {
        padding-bottom: 0;
    }

    .why-section__card {
        grid-template-columns: 430px minmax(0, 1fr);
        min-height: 500px;
    }

    .why-section__features {
        margin-top: 80px;
        row-gap: 45px;
    }


    .why-section h2 {
        font-size: 36px;
    }

    .why-feature h3 {
        font-size: 26px;
    }

    .why-feature p {
        font-size: 23px;
    }

    .faq-section {
        padding-bottom: 150px;
    }

    .faq-section h2 {
        font-size: 50px;
    }

    .faq-item__button {
        min-height: 92px;
        padding: 22px 38px;
        font-size: 18px;
    }

    .faq-section__card {
        padding-right: 21px;
    }

    .faq-section__visual {
       max-width: 220px;
    }

    .faq-section__card:before {
        border-radius: 0;
    }

    .faq-section__card:after {
        display: none;
    }

    .faq-section__visual img:nth-child(1),
    .faq-section__visual img:nth-child(2) {
        display: none;
    }

    .faq-section__visual img:nth-child(3) {
        left: 0;
    }

    .cta-section {
        padding-bottom: 110px;
    }

    .site-footer {
        padding-top: 54px;
        padding-bottom: 44px;
    }

    .site-footer__top {
        gap: 44px;
    }

    .site-footer__nav {
        gap: 42px;
        font-size: 18px;
    }

    .site-footer__bottom {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .site-header {
        top: 20px;
    }

    .site-header__inner {
        width: min(900px, calc(100% - 32px));
        padding: 22px 28px;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__cta {
        margin-left: auto;
    }

    .site-header__burger {
        display: block;
        position: relative;
        margin-left: 30px;
        width: 30px;
        height: 18px;
        padding: 0;
        border: 0;
        background: none;
        cursor: pointer;
        flex: 0 0 auto;
        z-index: 50;
    }

    .site-header__burger span {
        position: absolute;
        left: 0;
        height: 2px;
        border-radius: 2px;
        background: var(--color-text, #333333);
        transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, width 0.2s ease;
    }

    /* short-long-short hamburger (Figma) */
    .site-header__burger span:nth-child(1) {
        top: 0;
        width: 21px;
    }

    .site-header__burger span:nth-child(2) {
        top: 8px;
        width: 30px;
    }

    .site-header__burger span:nth-child(3) {
        top: 16px;
        width: 21px;
    }

    .site-header.is-open .site-header__burger span:nth-child(1) {
        top: 8px;
        width: 27px;
        transform: rotate(45deg);
    }

    .site-header.is-open .site-header__burger span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .site-header__burger span:nth-child(3) {
        top: 8px;
        width: 27px;
        transform: rotate(-45deg);
    }

    .site-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        position: absolute;
        top: 0;
        right: 0;
        width: 236px;
        min-height: 300px;
        padding: 92px 24px 40px;
        background: var(--color-white, #ffffff);
        border-bottom-left-radius: 14px;
        box-shadow: 0 4px 24px 8px rgba(0, 0, 0, 0.07);
        z-index: 40;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    }

    .site-header.is-open .site-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-menu__nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .site-menu__nav a {
        font-family: var(--font-heading), sans-serif;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        color: var(--color-text, #333333);
    }

    .site-menu__nav a:hover {
        color: var(--color-green, #13b567);
    }

    .site-menu__nav a.active {
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    .site-menu__cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 13px;
        margin-top: 8px;
        min-width: 150px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color-text, #333333);
        border-radius: 22px;
        background: var(--color-white, #ffffff);
        font-family: var(--font-heading), sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        color: var(--color-text, #333333);
        white-space: nowrap;
        transition: all 0.2s;
    }

    .site-menu__cta span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--color-green, #13b567);
        flex: 0 0 auto;
        transition: all 0.2s;
    }

    .site-menu__cta:hover {
        background: var(--color-green, #13b567);
        border-color: var(--color-green, #13b567);
        color: var(--color-white, #ffffff);
    }

    .site-menu__cta:hover span {
        background: var(--color-white, #ffffff);
    }

    .hero-section__content {
        padding-top: 210px;
        margin-left: 20px;
        padding-bottom: 257px;
    }

    .hero-section h1 {
        font-size: 42px;
        line-height: 1.12;
    }

    .hero-section__content p {
        font-size: 18px;
        line-height: 27px;
    }

    .main-button {
        width: 280px;
        min-height: 60px;
        font-size: 22px;
    }

    .hero-section__benefits {
        margin-top: 38px;
        font-size: 17px;
    }

    .hero-section__media {
        right: -100px;
        width: 705px;
    }

    .hero-section__blue-shape {
        right: -340px;
    }

    .how-section {
        padding-top: 84px;
        padding-bottom: 92px;
    }

    .how-section h2 {
        font-size: 34px;
    }

    .how-section__steps {
        gap: 34px;
        margin-top: 64px;
    }

    .how-step h3 {
        font-size: 18px;
    }

    .how-step p {
        font-size: 14px;
    }

    .why-section {
        padding-bottom: 0;
    }

    .why-section h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .why-title__brand,
    .why-title__brand span {
        display: block;
    }

    .why-section__features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 36px;
    }

    .why-feature__icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .why-feature h3 {
        font-size: 18px;
    }

    .faq-section {
        padding-bottom: 110px;
    }

    .faq-section__card {
        min-height: 0;
    }

    .faq-section__content {
        width: 100%;
        margin: 0 auto;
        padding: 0 0 112px;
    }

    .faq-section h2 {
        font-size: 44px;
    }

    .faq-list {
        gap: 16px;
        margin-top: 34px;
    }

    .faq-item__button {
        min-height: 78px;
        padding: 18px 24px;
        font-size: 16px;
    }

    .faq-item__button span:first-child::before {
        width: 12px;
        height: 12px;
        margin-right: 18px;
        flex-basis: 12px;
    }

    .faq-item__plus {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .faq-item__plus::before,
    .faq-item__plus::after {
        width: 28px;
    }

    /* Figma (992 / 768 / 576) drops the figure here and keeps only the blue arc
       sweeping in from the right behind the cards */
    .faq-section__visual {
        display: none;
    }

    .faq-section__card::before {
        right: 155px;
        border-radius: 0 461px 461px 0;
    }

    .cta-section {
        padding-bottom: 110px;
    }

    .cta-section::before {
        top: -226px;
        width: 600px;
        height: 300px;
    }

    .cta-section::after {
        top: 96px;
        width: 150px;
        height: 220px;
    }

    .cta-section__card {
        grid-template-columns: 44% minmax(0, 1fr);
        min-height: 430px;
    }

    .cta-section__media {
        padding: 48px 28px 42px;
    }

    .cta-section__content {
        padding: 50px 42px 46px;
    }

    .cta-section h2 {
        font-size: 40px;
        line-height: 1.18;
    }

    .cta-section__checks {
        gap: 24px 40px;
        margin-top: 32px;
        font-size: 22px;
    }

    .cta-section__button {
        width: 280px;
        min-height: 60px;
        margin-top: 48px;
        font-size: 22px;
    }

    .site-footer {
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .site-footer__top {
        align-items: flex-start;
        gap: 34px;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        gap: 18px 34px;
        max-width: 520px;
        white-space: normal;
    }

    .site-footer__bottom {
        gap: 24px;
        padding-top: 30px;
    }

    .site-footer__description {
        max-width: 100%;
    }
}

/* ==========================================================================
   Tablet & below (<=991): drop the desktop illustrations on why / faq / cta,
   collapse to a single clean, readable column (Figma 768 / 576).
   ========================================================================== */
@media (max-width: 991px) {
    /* HOW IT WORKS — 2 columns (3rd centers below); reset the desktop nowrap */
    .how-section__steps {
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 48px 40px;
        max-width: 660px;
        margin: 56px auto 0;
    }

    .how-step {
        flex: 0 1 44%;
        min-width: 0;
        text-align: center;
    }

    .how-step__icon {
        width: 120px;
        height: 90px;
        margin: 0 auto;
    }

    .how-step--wide-icon .how-step__icon {
        width: 140px;
    }

    .how-step h3 {
        margin-top: 18px;
        font-size: 22px;
    }

    .how-step p {
        max-width: 100%;
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.4;
        white-space: normal;
    }

    /* WHY */
    .why-section {
        padding: 64px 24px;
        background: linear-gradient(270deg, #FFF 0%, #F0FAFE 100%);
    }

    .why-section__card {
        display: block;
        padding: 0;
        overflow: visible;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }

    .why-section__media {
        display: none;
    }

    .why-section h2 {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        text-align: center;
    }

    .why-section__content {
        width: 100%;
    }

    .why-section__features {
        display: flex;
        flex-direction: column;
        gap: 28px;
        max-width: 520px;
        margin: 44px auto 0;
        padding-left: 0;
    }

    .why-feature {
        gap: 20px;
    }

    .why-feature h3 {
        font-size: 24px;
    }

    .why-feature p {
        font-size: 17px;
    }

    /* FAQ */
    .faq-section {
        padding: 70px 24px 90px;
    }

    .faq-section__card {
        display: block;
        min-height: 0;
        gap: 0;
        padding: 0;
        background: none;
        border-radius: 0;
    }

    .faq-section__card::after {
        display: none;
    }

    .faq-section__content {
        width: 100%;
    }

    .faq-item__body,
    .faq-item.is-open .faq-item__body {
        padding-left: 24px;
        padding-right: 24px;
    }

    .faq-section__visual {
        display: none;
    }

    /* CTA — stacked & centered (illustration on top) */
    .cta-section {
        padding: 30px 24px 90px;
    }

    .cta-section::before {
        display: none;
    }

    .cta-section__card {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }

    .cta-section__media {
        width: 100%;
        max-width: none;
        padding: 44px 24px 12px;
    }

    .cta-section__content {
        width: 100%;
        max-width: 640px;
        padding: 16px 32px 48px;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 40px;
    }

    .cta-section__checks {
        justify-content: center;
    }

    .cta-section__button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 14px;
        padding: 0 14px;
    }

    .site-header__inner {
        width: 100%;
        min-height: 70px;
        padding: 18px 20px;
        border-radius: 36px;
    }

    .site-header__logo {
        width: 146px;
        height: 31px;
    }

    .site-header__cta {
        width: 128px;
        height: 36px;
        margin-left: auto;
        gap: 9px;
        font-size: 14px;
    }

    .site-header__burger {
        margin-left: 20px;
    }

    .site-header__cta span {
        width: 9px;
        height: 9px;
    }

    .hero-section {
        min-height: 980px;
        border-bottom-color: rgba(51, 51, 51, 0.4);
    }

    .hero-section__inner {
        width: calc(100% - 32px);
        min-height: 980px;
    }

    .hero-section__soft-shape {
        left: -280px;
        width: 680px;
        height: 650px;
    }

    .hero-section__blue-shape {
        top: 548px;
        right: -280px;
        width: 620px;
        height: 510px;
        border-top-left-radius: 300px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 300px;
        border-bottom-right-radius: 0;
        transform: none;
    }

    .hero-section__cloud {
        display: none;
    }

    .hero-section__content {
        width: 100%;
        padding-top: 132px;
        margin-left: 0;
    }

    .hero-section h1 {
        max-width: 520px;
        font-size: 40px;
        line-height: 1.15;
    }

    .hero-section__content p {
        max-width: 520px;
        margin-top: 14px;
        font-size: 17px;
        line-height: 26px;
    }

    .main-button {
        width: 100%;
        max-width: 330px;
        min-height: 60px;
        margin-top: 30px;
        font-size: 22px;
    }

    .hero-section__benefits {
        gap: 14px;
        margin-top: 28px;
        font-size: 16px;
    }

    .hero-section__media {
        right: 50%;
        bottom: 0;
        width: min(560px, 118vw);
        transform: translateX(58%);
    }

    .how-section {
        padding: 74px 16px 78px;
    }

    .how-section h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .cta-section {
        padding: 0 16px 90px;
    }

    .cta-section::before {
        top: -170px;
        right: -100px;
        width: 520px;
        height: 240px;
    }

    .cta-section::after {
        display: none;
    }

    .cta-section__card {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding: 0;
        border-radius: 18px;
        background: linear-gradient(180deg, #b8efff 0%, #effbff 56%, #ffffff 100%);
    }

    .cta-section__media {
        width: 100%;
        padding: 48px 28px 18px;
    }

    .cta-section__media img {
        width: min(420px, 100%);
    }

    .cta-section__content {
        width: 100%;
        padding: 18px 24px 46px;
    }

    .cta-section h2 {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-size: 36px;
        line-height: 1.18;
    }

    .cta-section__checks {
        gap: 18px 34px;
        margin-top: 28px;
        font-size: 20px;
    }

    .cta-section__checks li {
        padding-left: 28px;
    }

    .cta-section__checks li::before {
        top: 2px;
        height: 18px;
        border-right-width: 5px;
        border-bottom-width: 5px;
    }

    .cta-section__button {
        width: 100%;
        max-width: 330px;
        min-height: 60px;
        margin-top: 36px;
        font-size: 22px;
    }

    .site-footer {
        padding: 42px 16px 38px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: center;
        gap: 34px;
        padding-bottom: 32px;
    }

    .site-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 22px 28px;
        max-width: 100%;
        font-size: 20px;
        text-align: center;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-top: 30px;
        text-align: center;
        font-size: 16px;
    }

    .site-footer__description {
        text-align: center;
    }

    .site-footer__copyright {
        white-space: normal;
    }

    .faq-section__card::before {
        right: 75px;
    }
}

/* ==========================================================================
   SMALL-TABLET type scale (576–767) — Figma 576: hero/CTA/FAQ headings 48,
   "Why" heading 26, FAQ question 22. Desktop sizes restored >=768 below.
   ========================================================================== */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 48px;
    }

    .hero-section__content p {
        font-size: 23px;
    }

    .hero-section__benefits {
        font-size: 20px;
    }

    .how-section h2 {
        font-size: 48px;
    }

    .how-step h3 {
        font-size: 26px;
    }

    .how-step p {
        font-size: 23px;
    }

    .why-section h2 {
        font-size: 26px;
        font-weight: 700;
    }

    .why-feature h3 {
        font-size: 26px;
    }

    .why-feature p {
        font-size: 23px;
    }

    .faq-section h2 {
        font-size: 48px;
    }

    .faq-item__button {
        font-size: 22px;
    }

    .cta-section h2 {
        font-size: 48px;
    }

    .cta-section__checks {
        font-size: 24px;
    }
}

/* HOW IT WORKS — single column on phones (Figma 320) */
@media (max-width: 576px) {
    .how-section__steps {
        max-width: 340px;
        gap: 44px;
    }

    .how-step {
        flex-basis: 100%;
    }

    .how-step__icon {
        width: 92px;
        height: 92px;
    }

    .how-step--wide-icon .how-step__icon {
        width: 120px;
    }
}

/* WHY / FAQ — phone (<=575): centered features (no heading), centered FAQ heading, no dot (Figma 320) */
/* ==========================================================================
   MOBILE type scale (<=575) — Figma 320: headings Ubuntu Bold 24 centered,
   step/feature descriptions Roboto 23/34, small text 16.
   ========================================================================== */
@media (max-width: 575px) {
    /* HERO — centered */
    .hero-section__content {
        text-align: center;
    }

    .hero-section h1 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
    }

    .hero-section__content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .main-button {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section__benefits {
        align-items: center;
        max-width: 100%;
        padding-left: 0;
        font-size: 16px;
        font-weight: 400;
        list-style-position: inside;
    }

    /* HOW */
    .how-section h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .how-step h3 {
        font-size: 24px;
    }

    .how-step p {
        font-size: 23px;
        line-height: 34px;
        white-space: normal;
    }

    /* WHY */
    .why-section {
        padding: 48px 15px 24px;
    }

    .why-section h2 {
        display: none;
    }

    .why-section__features {
        gap: 40px;
        max-width: 100%;
        margin-top: 0;
    }

    .why-feature {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
    }

    .why-feature__icon {
        margin: 0 auto;
    }

    .why-feature h3 {
        font-size: 24px;
    }

    .why-feature p {
        margin-top: 4px;
        font-size: 23px;
        line-height: 34px;
    }

    /* FAQ */
    .faq-section {
        padding: 24px 15px 64px;
    }

    .faq-section h2 {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
    }

    .faq-item__button {
        padding: 16px 20px;
        font-size: 16px;
    }

    .faq-item__button span:first-child::before {
        display: none;
    }

    .faq-item__body,
    .faq-item.is-open .faq-item__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item__body p {
        font-size: 15px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .cta-section__checks {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .site-header__inner {
        padding: 16px;
    }

    .site-header__logo {
        width: 132px;
        height: 28px;
    }

    .site-header__cta {
        display: none;
    }

    .site-header__burger {
        margin-left: auto;
        width: 26px;
        height: 16px;
    }

    .site-header__burger span:nth-child(1) {
        top: 0;
        width: 19px;
    }

    .site-header__burger span:nth-child(2) {
        top: 7px;
        width: 26px;
    }

    .site-header__burger span:nth-child(3) {
        top: 14px;
        width: 19px;
    }

    .site-header.is-open .site-header__burger span:nth-child(1) {
        top: 7px;
        width: 24px;
    }

    .site-header.is-open .site-header__burger span:nth-child(3) {
        top: 7px;
        width: 24px;
    }

    .hero-section,
    .hero-section__inner {
        min-height: 950px;
    }

    .hero-section__content {
        padding-top: 122px;
    }

    .hero-section__media {
        width: 530px;
        transform: translateX(62%);
    }

    .cta-section {
        padding-bottom: 74px;
    }

    .cta-section__media {
        padding: 38px 20px 12px;
    }

    .cta-section__content {
        padding: 14px 20px 38px;
    }

    .cta-section__checks {
        flex-direction: column;
        gap: 14px;
        margin-top: 24px;
    }

    .site-footer__nav {
        flex-direction: column;
        gap: 26px;
        font-size: 20px;
    }

    .site-footer__bottom {
        gap: 34px;
        font-size: 16px;
    }
}

/* ==========================================================================
   CONTACT — responsive (2-col >=992 -> stacked <=991 -> value below <=575)
   ========================================================================== */
@media (max-width: 1199px) {
    .contact {
        padding: 200px 0 110px;
    }

    .contact__inner {
        padding: 0 32px;
    }

    .contact__title {
        max-width: 450px;
        padding-bottom: 24px;
        margin-bottom: 24px;
        font-size: 36px;
    }

    .contact__subtitle {
        max-width: 450px;
        margin-bottom: 56px;
        font-size: 18px;
    }

    .contact__grid {
        gap: 40px;
    }

    .contact__content {
        max-width: none;
    }

    .contact__map {
        flex: 0 0 40%;
        width: 40%;
        max-width: 449px;
        height: auto;
        aspect-ratio: 449 / 424;
    }

    .contact-item__icon {
        margin-right: 16px;
    }

    .contact-item__data {
        margin-top: 8px;
    }

    .contact-item__label {
        max-width: 160px;
        margin-right: 16px;
        font-size: 20px;
    }

    .contact-item__value {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 991px) {
    .contact {
        padding: 150px 0 90px;
    }

    .contact__grid {
        flex-direction: column;
        align-items: stretch;
        gap: 44px;
    }

    .contact__map {
        flex: none;
        width: 100%;
        max-width: 450px;
        aspect-ratio: 450 / 424;
    }
}

@media (max-width: 575px) {
    .contact {
        padding: 120px 0 70px;
    }

    .contact__inner {
        padding: 0 15px;
    }

    .contact-list {
        gap: 22px;
    }

    .contact-item__data {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: 6px;
    }

    .contact-item__label {
        max-width: none;
        margin-right: 0;
    }

    .contact-item__value {
        line-height: 26px;
    }

    .contact__map {
        aspect-ratio: 290 / 274;
    }
}

@media (max-width: 430px) {
    .contact__title {
        font-size: 24px;
    }
}

/* ==========================================================================
   LEGAL (privacy / terms) — responsive
   ========================================================================== */
@media (max-width: 1199px) {
    .legal-content {
        padding: 170px 0 110px;
    }

    .legal-content h1 {
        font-size: 40px;
    }

    .legal-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .legal-content p > strong {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .legal-content {
        padding: 130px 0 80px;
    }

    .legal-content .wrapper {
        padding: 0 20px;
    }

    .legal-content h1 {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .legal-content p {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 26px;
    }

    .legal-content p > strong {
        margin-top: 20px;
        font-size: 23px;
    }
}

@media (max-width: 430px) {
    .legal-content {
        padding: 105px 0 60px;
    }

    .legal-content .wrapper {
        padding: 0 16px;
    }

    .legal-content h1 {
        font-size: 24px;
    }

    .legal-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .legal-content p > strong {
        font-size: 22px;
    }
}

/* ==========================================================================
   DESKTOP type scale restored for >=768 (Figma keeps full sizes down to 768).
   Overrides the intermediate max-width reductions; layout tiers still apply.
   ========================================================================== */
@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 58px;
    }

    .hero-section__content p {
        font-size: 23px;
    }

    .hero-section__benefits {
        font-size: 20px;
    }

    .how-section h2 {
        font-size: 48px;
    }

    .how-step h3 {
        font-size: 26px;
    }

    .how-step p {
        font-size: 23px;
    }

    .why-feature h3 {
        font-size: 26px;
    }

    .why-feature p {
        font-size: 23px;
    }

    .faq-section h2 {
        font-size: 58px;
    }

    .faq-item__button {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 58px;
    }

    .cta-section__checks {
        font-size: 32px;
    }
}
	/* --------------------------------------------------------------------------
   Large screens (> 1920) — scale the whole 1920 layout up to fill (matches 4K design)
   -------------------------------------------------------------------------- */
@media (min-width: 1921px) {
    body {
        zoom: calc(100vw / 1920px);
    }
}
