:root {
    --navy: #0b1641;
    --navy-2: #121f5c;
    --red: #fe3624;
    --yellow: #f9a834;
    --cream: #f8f5ee;
    --ink: #10101b;
    --line: rgba(11, 22, 65, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.page-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .14;
    pointer-events: none;
}

.glow-one {
    top: 4rem;
    right: -16rem;
    width: 34rem;
    height: 34rem;
    background: var(--yellow);
}

.glow-two {
    top: 40rem;
    left: -20rem;
    width: 32rem;
    height: 32rem;
    background: var(--red);
}

.header {
    height: 112px;
    display: flex;
    align-items: center;
}

.brand img,
.footer img {
    display: block;
    width: 178px;
    height: auto;
}

.header-link {
    color: var(--navy);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-link span {
    display: inline-block;
    margin-left: 10px;
    color: var(--red);
    font-size: 1.2rem;
    transition: transform .25s ease;
}

.header-link:hover span {
    transform: translate(3px, -3px);
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 5rem;
    align-items: center;
    padding: 65px 0 95px;
    min-height: 650px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--yellow);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.eyebrow-dark {
    color: var(--red);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Unbounded, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -.07em;
}

h1 {
    max-width: 690px;
    margin-bottom: 27px;
    color: var(--navy);
    font-size: clamp(2.6rem, 5.1vw, 4.7rem);
    line-height: 1.11;
}

h1 em,
h2 em {
    color: var(--red);
    font-style: normal;
}

.hero-lead {
    max-width: 510px;
    margin-bottom: 34px;
    color: #42465d;
    font-size: 1.02rem;
    line-height: 1.72;
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 600px;
}

.fact-card {
    min-height: 112px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .45);
    transition: transform .25s ease, border-color .25s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.fact-card>span {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 1.45rem;
}

.fact-card p {
    margin: 0;
    color: var(--navy);
    font-size: .73rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.fact-card strong {
    display: block;
    font-family: Unbounded, sans-serif;
    font-size: 1rem;
    letter-spacing: -.08em;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 18px 23px;
    min-height: 58px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button span {
    font-size: 1.3rem;
    line-height: 0;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 26px rgba(11, 22, 65, .18);
}

.button:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
    box-shadow: none;
}

.button-primary {
    background: var(--red);
    color: #fff;
}

.hero-form-shell {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background: var(--navy);
    color: white;
    box-shadow: 18px 18px 0 var(--yellow);
}

.hero-form-shell::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -150px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.hero-form-shell::after {
    content: "✦";
    position: absolute;
    right: 24px;
    top: 18px;
    color: var(--yellow);
    font-size: 2.3rem;
}

.form-topline {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-topline p {
    margin: 0;
}

.form-topline span {
    display: none;
}

.hero-form-shell h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(1.55rem, 2.45vw, 2.2rem);
    line-height: 1.26;
}

.hero-form-shell h2 em {
    color: var(--yellow);
}

.hero-form {
    position: relative;
    z-index: 1;
}

.hero-form label {
    display: block;
    margin-bottom: 18px;
}

.hero-form label>span {
    display: block;
    margin-bottom: 8px;
    color: #d3d6e5;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-form input {
    display: block;
    width: 100%;
    height: 55px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: white;
    font-size: .93rem;
    transition: border-color .2s ease, background .2s ease;
}

.hero-form input::placeholder {
    color: #9ca2c1;
}

.hero-form input:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, .04);
}

.hero-form input:-webkit-autofill,
.hero-form input:-webkit-autofill:hover,
.hero-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0 1000px var(--navy) inset;
    transition: background-color 9999s ease-in-out 0s;
}

.hero-form .iti {
    display: block;
}

.hero-form .iti__selected-country {
    height: 53px;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, .32);
}

.hero-form .iti__selected-country:hover,
.hero-form .iti__selected-country[aria-expanded="true"] {
    background: rgba(249, 168, 52, .13);
}

.hero-form .iti__selected-dial-code {
    color: #fff;
    font-weight: 700;
}

.hero-form .iti__arrow {
    border-top-color: var(--yellow);
}

.hero-form .iti__arrow--up {
    border-bottom-color: var(--yellow);
}

.hero-form .iti__dropdown-content {
    overflow: hidden;
    border: 1px solid rgba(11, 22, 65, .15);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 36px rgba(7, 13, 40, .22);
}

.hero-form .iti__country-list {
    max-height: 260px;
    color: var(--navy);
    font-family: Manrope, sans-serif;
}

.hero-form .iti__country {
    padding: 11px 14px;
}

.hero-form .iti__country:hover,
.hero-form .iti__country.iti__highlight {
    background: #fff1d8;
}

.hero-form .iti__country-name {
    font-size: .82rem;
    font-weight: 700;
}

.hero-form .iti__dial-code {
    color: var(--red);
    font-size: .76rem;
    font-weight: 800;
}

.hero-form .iti__divider {
    border-bottom-color: rgba(11, 22, 65, .12);
}

.hero-form .button {
    width: 100%;
    margin-top: 2px;
}

.hero-form .form-policy {
    color: #aeb5d5;
}

.hero-visual {
    position: relative;
    min-height: 495px;
}

.hero-image-wrap {
    position: absolute;
    inset: 35px 35px 0 0;
    overflow: hidden;
    clip-path: polygon(0 11%, 84% 0, 100% 84%, 14% 100%);
    background: var(--yellow);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 22, 65, .15), transparent 55%);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.hero-visual:hover img {
    transform: scale(1.05);
}

.hero-card {
    position: absolute;
    right: 0;
    bottom: 34px;
    width: 205px;
    padding: 22px;
    background: var(--navy);
    color: white;
    box-shadow: 15px 18px 0 var(--yellow);
}

.hero-card .spark {
    color: var(--yellow);
    font-size: 1.5rem;
}

.hero-card p {
    margin: 14px 0 0;
    font-family: Unbounded, sans-serif;
    font-size: .75rem;
    line-height: 1.5;
    letter-spacing: -.04em;
}

.hero-orbit {
    position: absolute;
    display: grid;
    place-items: center;
    width: 122px;
    height: 122px;
    border: 1px solid rgba(11, 22, 65, .35);
    border-radius: 50%;
    color: var(--navy);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .12em;
    animation: spin 18s linear infinite;
}

.orbit-top {
    top: -20px;
    right: -22px;
}

.orbit-bottom {
    bottom: -8px;
    left: -24px;
    width: 150px;
    height: 150px;
    color: var(--red);
    animation-direction: reverse;
}

.hero-star {
    position: absolute;
    top: 5%;
    left: -5%;
    color: var(--red);
    font-size: 4rem;
    animation: float 4s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    50% {
        transform: translateY(-14px) rotate(12deg);
    }
}

.value-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 31px 34px;
    background: var(--yellow);
    color: var(--navy);
}

.value-strip p {
    max-width: 620px;
    margin: 0;
    font-family: Unbounded, sans-serif;
    font-size: clamp(.9rem, 1.7vw, 1.3rem);
    font-weight: 600;
    line-height: 1.48;
    letter-spacing: -.05em;
}

.strip-arrow {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid var(--navy);
    border-radius: 50%;
    font-size: 1.3rem;
}

.economy {
    padding: 150px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 55px;
}

h2 {
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4.2vw, 3.7rem);
    line-height: 1.18;
}

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

.economy-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .35s ease, box-shadow .35s ease;
}

.economy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(11, 22, 65, .1);
}

.economy-card.featured {
    background: var(--navy);
    color: #fff;
}

.number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 800;
}

.economy-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--red);
    font-family: Unbounded, sans-serif;
    font-size: clamp(2.7rem, 4vw, 4.1rem);
    letter-spacing: -.08em;
}

.economy-card p {
    margin: 0;
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.45;
}

.economy-note {
    margin: 25px 0 0;
    color: #56596b;
    font-size: .9rem;
}

.benefits {
    display: grid;
    grid-template-columns: 200px 1fr 1.15fr;
    gap: 40px;
    align-items: center;
    padding: 65px 52px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit-photo {
    align-self: stretch;
    min-height: 150px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 13%, 89% 100%, 0 86%);
    background: var(--yellow);
}

.benefit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.benefits .eyebrow {
    margin-bottom: 16px;
}

.benefits h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.34;
}

.benefits ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefits li {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    min-height: 82px;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefits li:hover {
    transform: translateX(-6px);
    box-shadow: 7px 7px 0 var(--yellow);
}

.benefits li>span {
    color: var(--red);
    font-size: 1.55rem;
}

.benefits li p {
    margin: 0;
    font-size: .94rem;
    font-weight: 800;
    line-height: 1.35;
}

.included {
    background: var(--navy);
    color: white;
}

.included-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 7rem;
    padding: 130px 0;
}

.included h2 {
    color: white;
}

.included h2 em {
    color: var(--yellow);
}

.included-copy>p:last-child {
    max-width: 390px;
    margin: 30px 0 0;
    color: #c5c9dc;
    line-height: 1.7;
}

.included-list {
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.included-item {
    min-height: 130px;
    display: grid;
    grid-template-columns: 55px 1fr 20px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    transition: padding .25s ease;
}

.included-item:hover {
    padding-left: 9px;
}

.included-item span {
    color: var(--yellow);
    font-size: .7rem;
    font-weight: 800;
}

.included-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.48;
}

.included-item b {
    color: var(--red);
    font-size: 1.25rem;
}

.journey {
    padding: 145px 0;
}

.journey-top {
    margin-bottom: 55px;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.journey-step {
    min-height: 220px;
    padding: 28px 32px 18px;
    border-right: 1px solid var(--line);
}

.journey-step:first-child {
    padding-left: 0;
}

.journey-step:last-child {
    border: 0;
}

.journey-step span {
    color: var(--red);
    font-size: .72rem;
    font-weight: 800;
}

.journey-step h3 {
    margin: 39px 0 10px;
    color: var(--navy);
    font-family: Unbounded, sans-serif;
    font-size: 1rem;
    letter-spacing: -.05em;
}

.journey-step p {
    margin: 0;
    max-width: 260px;
    color: #595c6d;
    font-size: .9rem;
    line-height: 1.6;
}

.application {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    overflow: hidden;
    padding: 77px 78px;
    background: var(--red);
    color: white;
}

.application::before {
    content: "";
    position: absolute;
    right: -170px;
    top: -190px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
}

.application::after {
    content: "SPAVO";
    position: absolute;
    right: -40px;
    bottom: -80px;
    color: rgba(255, 255, 255, .1);
    font-family: Unbounded, sans-serif;
    font-size: 8rem;
    font-weight: 800;
    letter-spacing: -.1em;
}

.application-copy,
.application-form {
    position: relative;
    z-index: 1;
}

.application h2 {
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.application h2 em {
    color: var(--navy);
}

.application-copy>p:last-child {
    max-width: 420px;
    margin: 30px 0 0;
    line-height: 1.72;
}

.application .eyebrow {
    color: var(--navy);
}

.application-form {
    padding: 32px;
    background: var(--navy);
}

.application-form label {
    display: block;
    margin-bottom: 20px;
}

.application-form label>span {
    display: block;
    margin-bottom: 8px;
    color: #d3d6e5;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.application-form input {
    display: block;
    width: 100%;
    height: 55px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: white;
    font-size: .93rem;
    transition: border-color .2s ease, background .2s ease;
}

.application-form input::placeholder {
    color: #9ca2c1;
}

.application-form input:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, .04);
}

.application-form .iti {
    display: block;
}

.application-form .iti__selected-country {
    padding: 0 8px 0 12px;
}

.application-form .iti__selected-country:hover {
    background: rgba(255, 255, 255, .06);
}

.application-form .iti__country-list {
    color: var(--ink);
    font-family: Manrope, sans-serif;
}

.button-light {
    width: 100%;
    margin-top: 5px;
    background: #fff;
    color: var(--navy);
}

.form-error {
    min-height: 18px;
    margin: 0 0 5px;
    color: #ffc9bf;
    font-size: .77rem;
}

.form-policy {
    margin: 17px 0 0;
    color: #aeb5d5;
    font-size: .66rem;
    line-height: 1.5;
}

.decor-cross {
    position: absolute;
    right: 32px;
    top: 27px;
    color: var(--yellow);
    font-size: 3.3rem;
    animation: float 4s ease-in-out infinite;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 130px;
    gap: 20px;
}

.footer p {
    margin: 0;
    color: #77798a;
    font-size: .72rem;
}

.footer a {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.footer a:hover {
    background: var(--navy);
    color: white;
}

.modal {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(5, 10, 31, .72);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-panel {
    position: relative;
    width: min(100%, 495px);
    padding: 58px 52px 48px;
    background: var(--cream);
    text-align: center;
    transform: translateY(18px) scale(.97);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}

.modal.is-open .modal-panel {
    transform: translateY(0) scale(1);
}

.modal-panel h2 {
    margin: 13px 0 20px;
    font-size: 2rem;
}

.modal-eyebrow {
    justify-content: center;
    margin-bottom: 13px;
}

.modal-panel>p:last-of-type {
    margin: 0 0 27px;
    color: #575a6a;
    line-height: 1.6;
}

.modal-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 13px;
    right: 18px;
    padding: 0;
    background: transparent;
    color: var(--navy);
    font-size: 2rem;
    cursor: pointer;
}

.modal-button {
    min-width: 175px;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

@media (max-width:850px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding-top: 35px;
    }

    .hero-copy {
        max-width: 620px;
    }

    .hero-form-shell {
        width: min(100%, 580px);
        justify-self: center;
    }

    .benefits {
        grid-template-columns: 160px 1fr;
        gap: 28px;
    }

    .benefits ul {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .benefits li {
        border-top: 1px solid var(--line);
    }

    .included-inner,
    .application {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .included-inner {
        padding: 90px 0;
    }

    .application {
        padding: 60px 45px;
    }
}

@media (max-width:590px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .header {
        height: 82px;
    }

    .brand img {
        width: 145px;
    }

    .hero {
        padding: 35px 0 65px;
        min-height: auto;
    }

    h1 {
        font-size: 2.3rem;
    }

    .hero-lead {
        margin-bottom: 25px;
        font-size: .93rem;
    }

    .hero-form-shell {
        width: calc(100% - 10px);
        padding: 26px 20px;
        box-shadow: 10px 10px 0 var(--yellow);
    }

    .hero-form-shell h2 {
        margin-bottom: 23px;
        font-size: 1.45rem;
    }

    .button {
        width: 100%;
    }

    .hero-facts {
        gap: 6px;
    }

    .fact-card {
        min-height: 98px;
        padding: 11px;
    }

    .fact-card>span {
        margin-bottom: 8px;
        font-size: 1.2rem;
    }

    .fact-card p {
        font-size: .58rem;
    }

    .fact-card strong {
        font-size: .78rem;
    }

    .benefits {
        display: block;
        margin-top: 0;
        padding: 42px 0;
    }

    .benefit-photo {
        display: none;
    }

    .benefits h2 {
        font-size: 1.4rem;
    }

    .benefits ul {
        display: block;
        margin-top: 25px;
    }

    .benefits li {
        margin-bottom: 9px;
        padding-top: 12px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-image-wrap {
        inset: 20px 18px 0 0;
    }

    .hero-card {
        right: 0;
        bottom: 15px;
        width: 170px;
        padding: 16px;
        box-shadow: 9px 11px 0 var(--yellow);
    }

    .hero-card p {
        margin-top: 7px;
        font-size: .62rem;
    }

    .hero-orbit {
        transform: scale(.72);
    }

    .orbit-top {
        right: -34px;
        top: -32px;
    }

    .orbit-bottom {
        left: -43px;
        bottom: -25px;
    }

    .hero-star {
        font-size: 2.5rem;
    }

    .value-strip {
        padding: 25px 20px;
    }

    .value-strip p {
        font-size: .82rem;
    }

    .strip-arrow {
        flex: none;
        width: 34px;
        height: 34px;
    }

    .economy,
    .journey {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .economy-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .economy-card {
        min-height: 175px;
    }

    .included-inner {
        padding: 75px 0;
    }

    .included-item {
        min-height: 112px;
        grid-template-columns: 36px 1fr 14px;
        gap: 10px;
    }

    .included-item p {
        font-size: .86rem;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .journey-step,
    .journey-step:first-child {
        min-height: auto;
        padding: 27px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .journey-step h3 {
        margin-top: 21px;
    }

    .application {
        width: 100%;
        padding: 55px 24px;
    }

    .application-form {
        padding: 26px 20px;
    }

    .footer {
        min-height: 110px;
        flex-wrap: wrap;
        padding: 24px 0;
    }

    .footer img {
        width: 140px;
    }

    .footer p {
        order: 3;
        width: calc(100% - 55px);
    }

    .modal-panel {
        padding: 48px 28px 30px;
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
