:root {
    --bg: #E6EDED;
    --ink: #0f1c3c;
    --muted: #3c4b6b;
    --accent: #1d6cff;
    --accent-2: #1a58f5;
    --card: #f7fbff;
    --border: #d6e1ea;
    --check: #1769ff;
    --shadow: 0 20px 60px rgba(17, 52, 92, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Mona Sans Expanded", system-ui, sans-serif;
    line-height: 1.6;
}

a {
    color: var(--accent-2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page-shell {
    padding: 30px 100px;
    position: relative;
    overflow: hidden;
}

.fixed-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 10px 18px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fixed-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fixed-banner__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 100px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.fixed-banner__brand img {
    height: 16px;
    width: 131px;
    display: block;
}

.fixed-banner__form {
    flex: 1;
    display: flex;
    grid-template-columns: minmax(220px, 1fr) minmax(200px, 1fr) auto;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.fixed-banner .field {
    margin: 0;
    border: 1px solid #dbe2eb;
    height: 60px;
    padding: 10px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    width: 240px;
}

.fixed-banner .field--email {
    padding-top: 12px;
    overflow: hidden;

}

.fixed-banner .field__floating-label {
    left: 46px;
    font-size: 0.95rem;
}

.fixed-banner .field--email input {
    padding-top: 8px;
}

.fixed-banner .field.select {
    padding-top: 12px;
}

.fixed-banner .field--select-floating .field__floating-label {
    left: 18px;
}

.fixed-banner__cta {
    min-width: 170px;
    width: 240px !important;
    height: 60px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(29, 108, 255, 0.35);
    border-radius: 999px;
    padding: 0 22px;
}

.fixed-banner__spacer {
    height: 0;
    transition: height 0.25s ease;
}

.fixed-banner__spacer.is-active {
    height: 100px;
}

@media (max-width: 900px) {
    .fixed-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .fixed-banner__form {
        grid-template-columns: 1fr;
    }

    .fixed-banner__cta {
        width: 100%;
        justify-content: center;
    }

    .fixed-banner__spacer {
        height: 0;
    }

    .fixed-banner__spacer.is-active {
        height: 150px;
    }

    .fixed-banner {
        display: none;
    }
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 48px;
}

.top-bar img {
    height: 16px;
    width: 131px;
    display: block;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 60px 0px;
    box-shadow: none;
}

.hero__copy {
    position: relative;
    z-index: 1;
    padding-left: clamp(4px, 1vw, 12px);
}

.hero__icon {
    position: absolute;
    top: -100px;
    left: 300px;
    width: clamp(120px, 18vw, 180px);
    height: auto;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 80px;
    line-height: 110.00000000000001%;
    font-weight: 900;
    font-family: 'Mona Sans Expanded', sans-serif;
    color: #08043d;
}

h1 span {
    color: var(--ink);
    display: block;
}

.subline {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'Mona Sans Expanded';
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #0F172A;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.1);
    border: 1px solid rgba(23, 105, 255, 0.15);
}

.check svg {
    width: 14px;
    height: 14px;
    stroke: var(--check);
    stroke-width: 2.2;
    fill: none;
}

.hero__card {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.card {
    background: #fff;
    border-radius: 32px;
    padding: 24px;
    min-width: min(520px, 100%);
    border: 1px solid #CBD5E1;
    position: relative;
}

.field {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    margin-bottom: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.field input,
.field select {
    border: none;
    outline: none;
    background: transparent;
    font-family: "Mona Sans Expanded", sans-serif;
    font-size: 16px;
    line-height: 140%;
    color: var(--ink);
    font-family: inherit;
    flex: 1;
}

.field__icon {
    width: 20px;
    height: 20px;
    color: var(--muted);
    display: inline-flex;
}

.field__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.field--email {
    position: relative;
    padding-top: 12px;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field--email:focus-within {
    border-color: #9A9B9E;
}

.field__floating-label {
    position: absolute;
    left: 50px;
    top: 50%;
    font-family: "Mona Sans Expanded", sans-serif;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    color: #8a95ad;
    pointer-events: none;
    line-height: 140%;
    opacity: 1;
    transition: all 0.16s ease;
}

.field--email input {
    padding-top: 16px;
}

.field--email input:focus+.field__floating-label,
.field--email input:not(:placeholder-shown)+.field__floating-label {
    top: 6px;
    transform: translateY(0);
    font-family: "Mona Sans Expanded", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 116%;
    color: #9A9B9E;
}

.field--select-floating {
    position: relative;
    padding-top: 18px;
}

.field--select-floating select {
    padding-top: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Mona Sans Expanded", sans-serif;
    padding-left: 4px;
    line-height: 116%;
    color: #1A1A1A;
}

.field--select-floating .field__floating-label {
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 14px;
    font-weight: 400;
    color: #9da6ba;
    pointer-events: none;
    line-height: 140%;
}

.field.select {
    position: relative;
}

.field__label {
    font-weight: 600;
    color: #1b2742;
    font-size: 14px;
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 28px;
    color: var(--muted);
}

.select__chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--muted);
    pointer-events: none;
}

.select__chevron svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.cta {
    width: 100%;
    border: none;
    border-radius: 32px;
    padding: 14px 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Mona Sans Expanded", sans-serif;
    letter-spacing: 0.5px;
    color: #fff;
    cursor: pointer;
    background: #1463FF;
    box-shadow: 0 5px 10px rgba(29, 108, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.cta__arrow {
    display: inline-flex;
    color: #dfe8ff;
    transition: transform 0.2s ease;
}

.cta__arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.cta:hover .cta__arrow {
    transform: translateX(4px);
}

.trust {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px 22px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 520px;
    width: 80%;
    padding: 0 clamp(12px, 4vw, 28px);
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.trust__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.trust__title {
    font-weight: 600;
    font-size: 12px;
    font-family: "Mona Sans", sans-serif;
    line-height: 100%;
    letter-spacing: -0.1px;
    color: #8A8D91;
}

.trust__sub {
    font-size: 10px;
    color: #9aa3b5;
    font-weight: 400;
    letter-spacing: -0.1px;
    font-family: "Mona Sans", sans-serif;
}

.paper-plane {
    position: absolute;
    right: -24px;
    bottom: -18px;
    width: 240px;
    height: auto;
}

.dots-top,
.dots-left {
    position: absolute;
    pointer-events: none;
}

.dots-top {
    top: 0px;
    right: 33%;
    width: 96px;
    height: auto;
}

.dots-left {
    left: 0;
    top: 32%;
    transform: translateY(-50%);
    width: 90px;
    height: auto;
}

.benefits-bar {
    margin-top: 28px;
    padding: 16px 0px;
}

.benefits-bar__list {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(12px, 2vw, 18px);
    justify-content: space-between;
}

.benefits-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Mona Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #08043D;
}

.benefits-bar__item strong {
    color: #08043D;
    font-family: "Mona Sans Expanded", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
}

.legal {
    margin-top: 78px;
    color: #8C8C8C;
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-weight: 400;
    max-width: 1024px;
}

a {
    color: #8C8C8C;
    text-decoration: underline;
}

.legal p {
    margin: 5px 0px;
    font-weight: 400;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    paragraph-spacing: 8px;

}

.legal ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.why {
    margin: 80px auto 40px;
    max-width: 100%;
    background: #fff;
    text-align: center;
    color: #0a083d;
    padding: 80px 100px;
}

.why__header h2 {
    margin: 0 0 12px;
    font-size: 60px;
    color: #08043D;
    font-weight: 900;
    line-height: 110.00000000000001%;
    font-family: 'Mona Sans Expanded';
}

.why__header p {
    margin: 0;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    color: #0F172A;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why__item {
    text-align: left;
    color: #0a083d;
    line-height: 1.5;
}

.why__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

}

.why__icon svg {
    width: 26px;
    height: 26px;

}

.why__item h3 {
    margin: 0 0 10px;
    font-weight: 700;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-variation-settings: 'wght' 700, 'wdth' 125;
    font-size: 20px;
    line-height: 144%;
}

.why__item p {
    font-family: 'Mona Sans Expanded', sans-serif;
    margin: 0;
    font-size: 1rem;
    font-size: 18px;
    line-height: 144%;
    font-weight: 400;
    color: #08043D;
}

.real {
    margin: 100px auto 80px;
    padding: 0 18px;
    max-width: 1200px;
    text-align: center;
    color: #0a083d;
}

.real__header h2 {
    margin: 0 0 12px;
    font-size: 60px;
    color: #08043D;
    font-weight: 900;
    line-height: 110.00000000000001%;
    font-family: 'Mona Sans Expanded', sans-serif;
}

.real__header p {
    margin: 0;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    color: #0F172A;
    padding-bottom: 20px;
}

.real__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 478px));
    gap: clamp(16px, 3vw, 28px);
    justify-content: center;
}

.real__card {
    background: #fff;
    border-radius: 26px;
    padding: 26px 22px 22px;
    box-shadow: 0 18px 42px rgba(10, 8, 61, 0.08);
    border: 1px solid rgba(214, 225, 234, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: min(100%, 478px);
}

.real__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;

}

.real__icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}



.real__card h3 {
    margin: 0px;
    font-weight: 700;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 20px;
    line-height: 144%;
}

.real__card p {
    font-family: 'Mona Sans Expanded', sans-serif;
    margin: 0;
    font-size: 1rem;
    font-size: 18px;
    line-height: 144%;
    font-weight: 400;
    color: #142045;
}

.steps {
    margin: 80px auto 40px;
    max-width: 100%;
    background: #fff;
    text-align: center;
    color: #0a083d;
    padding: 80px 100px;
}

.steps__header h2 {
    margin: 0 0 12px;
    font-size: 60px;
    color: #08043D;
    font-weight: 900;
    line-height: 110.00000000000001%;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-weight: 900;
    /* Or other weights */
    font-stretch: 125%;
    /* For expanded */

}

.steps__header p {
    margin: 0;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    color: #0F172A;
    padding-bottom: 60px;
}

.steps__list {
    display: grid;
    gap: 40px;
    margin: 0 auto;
    max-width: 484px;
}

.steps__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
}

.steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: -20px;
    top: calc(100% - 25px);
    width: 24px;
    height: 90px;
    background: url("img/Vector-5.svg") no-repeat center;
    background-size: contain;
}

.steps__badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e5eef4;
    color: #2c69ff;
    font-weight: 800;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.steps__copy {
    text-align: left;
}

.steps__copy h3 {
    margin: 0px;
    font-weight: 700;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-size: 20px;
    line-height: 144%;
}

.steps__copy p {
    font-family: 'Mona Sans Expanded', sans-serif;
    margin: 0;
    font-size: 18px;
    line-height: 144%;
    font-weight: 400;
    color: #142045;
    vertical-align: middle;
}

.numbers {
    margin: 50px auto 80px;
    padding: 50px 18px 70px;
    background: #e7eff2;
    text-align: center;
}

.numbers__header h2 {
    margin: 0 0 62px;
    font-size: 60px;
    color: #08043D;
    font-weight: 900;
    line-height: 110.00000000000001%;
    font-family: 'Mona Sans Expanded', sans-serif;
    font-weight: 900;
    font-stretch: 125%;
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(20px, 4vw, 32px);
    max-width: 1100px;
    margin: 0 auto;
}

.numbers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #0a083d;
}

.numbers__value {
    font-size: clamp(44px, 6vw, 62px);
    font-weight: 800;
    color: #1d6cff;
    font-family: "Mona Sans Expanded";
    line-height: 1.1;
}

.numbers__item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 320px;
}

.faq {
    padding: 70px 100px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
}

.faq__header h2 {
    margin: 0 0 80px;
    font-size: 60px;
    color: #08043D;
    font-weight: 900;
    line-height: 110.00000000000001%;
    font-family: 'Mona Sans Expanded';
    text-align: center;
}

.faq__list {
    display: grid;
    gap: 12px;
}

.faq__item {
    border-bottom: 1px solid #dbe2eb;
    padding: 15px 2px 20px;
}

.faq__item[open] .faq__sign {
    color: #1d6cff;
}

.faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
    font-family: "Mona Sans Expanded";
    color: #08043D;
    cursor: pointer;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__sign {
    font-size: 20px;
    color: #1d6cff;
    font-weight: 400;
}

.faq__item p {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 144%;
    color: #08043D;
    font-family: "Mona Sans", sans-serif;
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq__item[open] .faq__content {
    max-height: 300px;
}

.footer {
    background: #0f2742;
    color: #eef4ff;
    padding: 60px 100px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 200px;
    align-items: flex-start;
    margin-bottom: 32px;
    justify-content: space-between;
}

.footer__logo img {
    height: 16px;
    width: 131px;
    display: block;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 10px 24px;
    flex: 1;
    font-family: "Mona Sans Expanded", sans-serif;
    font-size: 16px;
    min-width: 280px;
    max-width: 900px;
}

.footer__links a {
    color: #FAFAFA;
    font-family: "Mona Sans Expanded", sans-serif;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.1px;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__disclaimer {
    margin: 18px 0 22px;
    font-size: 14px;
    line-height: 1.6;
    color: #77797e;
}

.footer__disclaimer p {
    margin: 0 0 10px;
}

.footer__bottom {
    font-size: 14px;
    color: #77797e;
}

@media (max-width: 720px) {
    .footer {
        margin: 0;
        border-radius: 12px 12px 0 0;
    }
}

.ready {
    background: var(--accent);
    color: #fff;
    padding: 80px 0px;
    /* stretch edge to edge like banner */
}

.ready__inner {
    max-width: 100%;
    padding: 0px 100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
}

.ready__copy h2 {
    margin: 0 0 14px;
    font-size: 60px;
    font-weight: 800;
    font-family: "Mona Sans Expanded", sans-serif;
    line-height: 110.00000000000001%;
}

.ready__copy p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    font-family: "Mona Sans Expanded", sans-serif;
}

.ready__card-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.ready__card {
    min-width: min(520px, 100%);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(214, 225, 234, 0.9);
    background: #fff;
}

.ready__cta {
    margin-top: 6px;
}

.ready__plane {
    position: absolute;
    right: -30px;
    bottom: -28px;
    width: 220px;
    height: auto;
}

@media (max-width: 720px) {
    .ready {
        margin: 0;
        border-radius: 18px;
    }

    .ready__card-wrap {
        justify-content: center;
    }

}

.numbers__sub {
    font-weight: 400;
    font-size: 44px;
}

@media (max-width: 960px) {

    .ready__plane {
        right: -18px;
        bottom: -30px;
    }

    .page-shell,
    .ready__inner,
    .fixed-banner__inner {
        padding: 0px;
    }

    .card,
    .real__card {
        box-shadow: none;
        border: 1px solid #CBD5E1;

    }

    .legal {
        padding: 20px;
        margin-top: 8px;
    }

    .why,
    .real,
    .steps,
    .numbers,
    .ready,
    .faq,
    .footer {
        padding: 40px 20px;
        margin: 0px;
    }

    .faq__header h2 {
        margin: 0 0 40px;
    }

    .footer__top {
        gap: 20px;
    }

    .footer__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 24px;
        width: 100%;
    }

    .footer__links a {
        max-width: none;
        line-height: 1.3;
    }

    .steps__header p {
        padding-bottom: 32px;
    }

    .numbers__sub {
        font-size: 32px;
    }

    .top-bar {
        margin-bottom: 18px;
        padding: 20px 20px 0px 20px;
    }

    .steps__item {
        align-items: start;
        position: relative;
    }

    .steps__item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 28px;
        top: 87px;
        width: 18px;
        height: 90px;
    }

    h1 {
        font-size: 36px;
    }

    .faq__header h2,
    .ready__copy h2,
    .why__header h2,
    .real__header h2,
    .steps__header h2,
    .numbers__header h2 {
        font-size: 32px;
    }

    .dots-top,
    .dots-left,
    .hero__icon {
        display: none;
    }

    .subline {
        font-size: 16px;
        padding-bottom: 20px;
    }

    .trust {
        width: 100%;
        padding: 0px;
        gap: 13px;
    }

    .benefits-bar__list {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .top-bar {
        margin-bottom: 28px;
    }

    .hero {
        padding: 24px;
    }

    .card {
        min-width: 100%;
    }

    .paper-plane {
        width: 200px;
        top: 85%;
        right: -17px;
    }

    .benefits-bar {
        margin-top: 20px;
        padding: 14px 16px;
    }


    .why__header p,
    .real__card p,
    .why__item p,
    .ready__copy p {
        font-size: 16px;
    }

    .benefits-bar__item strong,
    .benefits-bar__item {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .hero {
        border-radius: 20px;
    }

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

    .dots-left {
        display: none;
    }

    .benefits-bar__list {
        grid-template-columns: 1fr;
    }
}
