:root {
    --navy-950: #061d29;
    --navy-900: #082b3d;
    --navy-800: #0d3a50;
    --blue-700: #12668c;
    --blue-600: #1680ad;
    --sand-500: #d6a95c;
    --sand-400: #e5c17f;
    --sand-100: #f7ecd7;
    --ink: #14232c;
    --muted: #5c6971;
    --line: #dbe3e7;
    --paper: #ffffff;
    --mist: #f3f7f8;
    --success: #17633a;
    --success-bg: #e9f7ef;
    --error: #922d26;
    --error-bg: #fff0ee;
    --shadow-sm: 0 10px 30px rgba(6, 29, 41, 0.08);
    --shadow-lg: 0 30px 80px rgba(6, 29, 41, 0.16);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 82px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 26px);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue-700);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--navy-900);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

h1,
h2,
h3 {
    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 6vw, 5.15rem);
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.38rem;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--paper);
    color: var(--navy-950);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--sand-500);
    outline-offset: 3px;
}

.construction-notice {
    position: relative;
    z-index: 1100;
    border-bottom: 1px solid rgba(8, 43, 61, 0.18);
    background: var(--sand-100);
    color: var(--navy-950);
}

.construction-notice__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding-block: 7px;
    gap: 10px 16px;
    text-align: center;
}

.construction-notice strong {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.construction-notice strong::before {
    content: "●";
    margin-right: 9px;
    color: var(--sand-500);
}

.construction-notice span {
    font-size: 0.9rem;
}

.topbar {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.topbar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 36px;
    gap: 22px;
}

.topbar a {
    color: var(--paper);
    font-weight: 800;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(8, 43, 61, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px rgba(6, 29, 41, 0.04);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 192px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
}

.primary-nav a {
    position: relative;
    color: var(--navy-900);
    font-size: 0.91rem;
    font-weight: 800;
    text-decoration: none;
}

.primary-nav > a:not(.language-link)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--sand-500);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
    transform: scaleX(1);
}

.language-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--mist);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 11px;
    border: 0;
    background: transparent;
    color: var(--navy-900);
    font-weight: 800;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
}

.menu-toggle__bars {
    position: relative;
}

.menu-toggle__bars::before {
    position: absolute;
    top: -7px;
}

.menu-toggle__bars::after {
    position: absolute;
    top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.eyebrow {
    margin-bottom: 15px;
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(62px, 8vw, 110px) 0 28px;
    background:
        radial-gradient(circle at 88% 8%, rgba(214, 169, 92, 0.23), transparent 34%),
        linear-gradient(135deg, #f8fbfc 0%, #edf5f7 54%, #f8f3e9 100%);
}

.hero::before {
    position: absolute;
    top: -220px;
    left: -130px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(18, 102, 140, 0.12);
    border-radius: 50%;
    content: "";
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.72fr);
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
}

.hero__content {
    padding-bottom: 20px;
}

.hero__lead {
    max-width: 690px;
    margin-bottom: 25px;
    color: #42555f;
    font-size: clamp(1.1rem, 2vw, 1.31rem);
}

.hero__price {
    display: flex;
    align-items: baseline;
    margin-bottom: 29px;
    gap: 14px;
}

.hero__price strong {
    color: var(--navy-900);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.hero__price span {
    color: var(--muted);
    font-size: 0.9rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.93rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--blue-700);
    box-shadow: 0 13px 30px rgba(18, 102, 140, 0.24);
    color: var(--paper);
}

.button--primary:hover {
    background: var(--navy-800);
    color: var(--paper);
}

.button--ghost {
    border-color: rgba(8, 43, 61, 0.22);
    background: rgba(255, 255, 255, 0.55);
    color: var(--navy-900);
}

.button--sand {
    background: var(--sand-500);
    color: var(--navy-950);
}

.button--sand:hover {
    background: var(--sand-400);
    color: var(--navy-950);
}

.hero__visual {
    position: relative;
    justify-self: end;
    width: min(100%, 430px);
}

.hero__visual::before {
    position: absolute;
    right: -22px;
    bottom: -22px;
    width: 82%;
    height: 86%;
    border: 2px solid rgba(214, 169, 92, 0.6);
    border-radius: 48% 48% 22px 22px;
    content: "";
}

.hero__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    border-radius: 48% 48% 22px 22px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    right: -10px;
    bottom: 48px;
    display: grid;
    width: 126px;
    min-height: 126px;
    padding: 17px;
    place-content: center;
    border: 7px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: var(--navy-900);
    box-shadow: var(--shadow-sm);
    color: var(--paper);
    text-align: center;
}

.hero__badge span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.hero__badge small {
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1.2;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(55px, 8vw, 92px);
    border-top: 1px solid rgba(8, 43, 61, 0.12);
    border-bottom: 1px solid rgba(8, 43, 61, 0.12);
}

.trust-strip span {
    position: relative;
    padding: 18px 28px 18px 50px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
}

.trust-strip span::before {
    position: absolute;
    top: 50%;
    margin-left: -26px;
    color: var(--sand-500);
    content: "✓";
    font-size: 1.05rem;
    transform: translateY(-50%);
}

.trust-strip span + span {
    border-left: 1px solid rgba(8, 43, 61, 0.12);
}

.hero__footnote {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.76rem;
    text-align: center;
}

.section {
    padding: clamp(78px, 10vw, 130px) 0;
}

.section--light {
    background: var(--mist);
}

.section--navy {
    position: relative;
    overflow: hidden;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.76);
}

.section--navy h2,
.section--navy .eyebrow {
    color: var(--paper);
}

.section--navy .eyebrow {
    opacity: 0.72;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    gap: 22px;
    list-style: none;
}

.step-card {
    position: relative;
    min-height: 280px;
    padding: 38px 32px;
    overflow: hidden;
    border: 1px solid rgba(8, 43, 61, 0.08);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.step-card::after {
    position: absolute;
    right: -28px;
    bottom: -53px;
    width: 130px;
    height: 130px;
    border: 24px solid var(--sand-100);
    border-radius: 50%;
    content: "";
}

.step-card__number {
    display: block;
    margin-bottom: 35px;
    color: var(--sand-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
}

.step-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
}

.booking-section {
    background: var(--paper);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(42px, 7vw, 90px);
}

.booking-copy {
    position: sticky;
    top: calc(var(--header-height) + 38px);
}

.booking-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.booking-copy__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
    gap: 7px;
}

.booking-copy__contact span {
    color: var(--muted);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-copy__contact a {
    color: var(--navy-900);
    font-weight: 800;
    text-decoration: none;
}

.form-card {
    position: relative;
    padding: clamp(27px, 4vw, 48px);
    border: 1px solid rgba(8, 43, 61, 0.09);
    border-radius: var(--radius-lg);
    background: var(--mist);
    box-shadow: var(--shadow-lg);
}

.form-card--contact {
    background: var(--paper);
}

.required-note {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.79rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px;
}

.field {
    min-width: 0;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy-950);
    font-size: 0.84rem;
    font-weight: 850;
}

.field label span {
    color: var(--error);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    border: 1px solid #cbd7dc;
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
    min-height: 118px;
    resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #9eafb7;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(22, 128, 173, 0.12);
    outline: 0;
}

.field small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.75rem;
}

.conditional-required {
    visibility: hidden;
}

.conditional-required.is-visible {
    visibility: visible;
}

.consent-field {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 11px;
}

.consent-field input {
    width: 19px;
    height: 19px;
    margin: 3px 0 0;
    accent-color: var(--blue-700);
}

.consent-field label {
    margin: 0;
    color: #3e505a;
    font-weight: 600;
    line-height: 1.5;
}

.privacy-summary {
    margin: 18px 0 25px;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.55;
}

.button--submit {
    min-width: 200px;
    border: 0;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
}

.form-status {
    margin-top: 24px;
    padding: 16px 20px;
    border: 1px solid;
    border-radius: var(--radius-sm);
    font-weight: 750;
}

.form-status--success {
    border-color: #b5dec6;
    background: var(--success-bg);
    color: var(--success);
}

.form-status--error {
    border-color: #efc1bc;
    background: var(--error-bg);
    color: var(--error);
}

.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.about-visual {
    position: relative;
}

.about-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1.947;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
    object-fit: cover;
}

.about-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.73);
}

.about-copy .button {
    margin-top: 16px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advantage-card {
    padding: 31px 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.advantage-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.advantage-card img {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    object-fit: contain;
}

.advantage-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.91rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(45px, 8vw, 100px);
}

.contact-info > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-list {
    margin: 39px 0 0;
}

.contact-list > div {
    padding: 17px 0;
    border-top: 1px solid var(--line);
}

.contact-list dt {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-list dd {
    margin: 3px 0 0;
    color: var(--navy-900);
    font-weight: 750;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
}

.site-footer {
    padding: 72px 0 25px;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr;
    padding-bottom: 56px;
    gap: clamp(40px, 8vw, 100px);
}

.footer-brand img {
    width: 190px;
    margin-bottom: 23px;
    padding: 8px;
    border-radius: 10px;
    background: var(--paper);
}

.footer-brand p {
    max-width: 380px;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: var(--paper);
    font-family: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list li + li {
    margin-top: 11px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--sand-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    gap: 20px;
}

.legal-hero {
    padding: clamp(65px, 9vw, 115px) 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(214, 169, 92, 0.25), transparent 28%),
        var(--navy-950);
}

.legal-hero__inner {
    max-width: 900px;
}

.legal-hero .eyebrow,
.legal-hero h1 {
    color: var(--paper);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.7rem);
}

.legal-hero__inner > p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 780px);
    align-items: start;
    justify-content: center;
    gap: clamp(38px, 7vw, 90px);
}

.legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 35px);
    padding-top: 6px;
}

.legal-aside p {
    margin-top: 21px;
    color: var(--muted);
    font-size: 0.78rem;
}

.back-link {
    color: var(--navy-900);
    font-weight: 850;
    text-decoration: none;
}

.legal-article section + section {
    margin-top: 55px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}

.legal-article h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.legal-article p,
.legal-article li {
    color: #3f5058;
}

.legal-article ul {
    padding-left: 22px;
}

.table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    font-size: 0.9rem;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

th {
    background: var(--mist);
    color: var(--navy-900);
    font-weight: 850;
}

code {
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--mist);
    font-size: 0.88em;
}

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .site-header__inner {
        flex-wrap: wrap;
    }

    .brand img {
        width: 172px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 0 25px;
        gap: 0;
    }

    .js .primary-nav {
        display: none;
    }

    .js .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 12px 4px;
        border-top: 1px solid var(--line);
    }

    .primary-nav > a::after {
        display: none;
    }

    .language-link {
        display: flex;
        width: auto;
        height: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
        gap: 42px;
    }

    .hero__badge {
        right: -12px;
        width: 106px;
        min-height: 106px;
    }

    .steps-grid {
        gap: 14px;
    }

    .step-card {
        padding: 29px 23px;
    }

    .booking-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .booking-copy {
        position: static;
        max-width: 700px;
    }

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

    .about-visual {
        order: 2;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-aside {
        position: static;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--line);
        gap: 20px;
    }

    .legal-aside p {
        margin: 0;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .construction-notice__inner {
        flex-direction: column;
        padding-block: 10px;
        gap: 2px;
        line-height: 1.35;
    }

    .topbar__inner {
        justify-content: space-between;
        min-height: 40px;
    }

    .topbar span {
        max-width: 190px;
        line-height: 1.25;
    }

    .hero {
        padding-top: 54px;
    }

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

    .hero__content {
        max-width: 650px;
    }

    .hero__visual {
        justify-self: center;
        width: min(88%, 420px);
    }

    .hero__price {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip span + span {
        border-top: 1px solid rgba(8, 43, 61, 0.12);
        border-left: 0;
    }

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

    .step-card {
        min-height: 0;
    }

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

    .field--full {
        grid-column: auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 440px) {
    body {
        font-size: 16px;
    }

    .topbar span {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
    }

    .hero__badge {
        right: -7px;
        bottom: 22px;
        width: 92px;
        min-height: 92px;
        border-width: 5px;
    }

    .hero__badge span {
        font-size: 1.45rem;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .form-card {
        border-radius: 20px;
    }

    .legal-aside {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

@media print {
    .construction-notice,
    .topbar,
    .site-header,
    .site-footer,
    .button,
    .legal-aside {
        display: none !important;
    }

    body {
        color: #000;
        font-size: 11pt;
    }

    .section,
    .legal-hero {
        padding: 20px 0;
        background: #fff;
    }

    .legal-hero h1,
    .legal-hero .eyebrow,
    .legal-hero__inner > p:last-child {
        color: #000;
    }
}
