@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-grotesque.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 200 800;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 200 800;
}

:root {
    --blue: #003399;
    --orange: #ff931e;
    --ink: #0a1733;
    --navy: #001b4d;
    --blue-50: #eff5ff;
    --orange-50: #fff5e8;
    --paper: #fffdf8;
    --white: #ffffff;
    --line: #d8e2f0;
    --muted: #52617a;
    --success: #177245;
    --danger: #b42318;
    --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
    --body: "Manrope", Arial, sans-serif;
    --container: min(1280px, calc(100vw - 48px));
    --shadow-paper: 0 24px 60px rgba(10, 23, 51, 0.13);
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal;
}

::selection {
    background: var(--orange);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 14px;
    left: 14px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--orange);
    color: var(--ink);
    font-weight: 800;
    transition: transform 160ms ease;
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding-block: 144px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 2px;
    background: var(--orange);
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 22px;
    border: 1px solid var(--orange);
    border-radius: 8px;
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(255, 147, 30, 0.2);
    color: var(--ink);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #ff9d35;
    box-shadow: 0 14px 30px rgba(255, 147, 30, 0.28);
}

.button--small {
    min-height: 44px;
    padding: 11px 17px;
    font-size: 13px;
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    box-shadow: none;
    color: var(--blue);
}

.button--light:hover {
    background: var(--orange-50);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid currentColor;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-notice {
    position: relative;
    z-index: 50;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

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

.site-notice__links {
    display: flex;
    gap: 24px;
}

.site-notice__links a:hover {
    color: var(--orange);
}

.site-header {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(216, 226, 240, 0.8);
    box-shadow: 0 10px 30px rgba(10, 23, 51, 0.05);
}

.site-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 62px;
    height: 52px;
    overflow: hidden;
    place-items: center;
}

.brand__mark img {
    width: 78px;
    max-width: none;
    transform: scale(1.45) translateY(-2px);
}

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

.brand__name strong {
    color: var(--blue);
    font-family: var(--display);
    font-size: 17px;
    font-weight: 800;
}

.brand__name small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    font-size: 13px;
    font-weight: 700;
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 12px 0;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--orange);
    content: "";
    transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: calc(100svh - 116px);
    overflow: hidden;
    padding: 70px 0 0;
    background:
        linear-gradient(90deg, rgba(0, 51, 153, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(rgba(0, 51, 153, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(135deg, var(--white) 0%, var(--white) 55%, var(--blue-50) 100%);
}

.hero::before {
    position: absolute;
    top: 9%;
    right: -7%;
    width: 34vw;
    height: 34vw;
    border: 1px solid rgba(0, 51, 153, 0.1);
    border-radius: 50%;
    content: "";
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 590px;
    align-items: center;
    gap: 6vw;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.82fr);
}

.hero h1,
.section-heading h2,
.journey h2,
.about h2,
.consultation h2,
.contact h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 760;
    letter-spacing: -0.052em;
    line-height: 0.97;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(4.2rem, 7.4vw, 8.2rem);
}

.hero__lead {
    max-width: 610px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.hero__assurances {
    display: flex;
    max-width: 720px;
    gap: 0;
    padding: 0;
    margin: 52px 0 0;
    list-style: none;
}

.hero__assurances li {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
    padding-right: 16px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.hero__assurances li + li {
    padding-left: 16px;
    border-left: 1px solid var(--line);
}

.hero__assurances span {
    color: var(--orange);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.hero__visual {
    position: relative;
    min-height: 520px;
    perspective: 1100px;
}

.dossier {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 5%;
    width: min(410px, 78%);
    min-height: 480px;
    padding: 34px;
    transform: rotate(3deg);
    border: 1px solid rgba(0, 51, 153, 0.2);
    border-radius: 6px 18px 18px 6px;
    background:
        linear-gradient(rgba(0, 51, 153, 0.035) 1px, transparent 1px) 0 0 / 100% 36px,
        var(--paper);
    box-shadow: var(--shadow-paper);
    transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__visual:hover .dossier {
    transform: rotate(0deg) translateY(-8px);
}

.dossier::before {
    position: absolute;
    z-index: -1;
    inset: 18px -18px -18px 18px;
    border-radius: 8px 16px 16px 8px;
    background: var(--orange-50);
    box-shadow: 8px 8px 0 var(--orange);
    content: "";
}

.dossier__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dossier__stamp {
    display: grid;
    width: 106px;
    height: 106px;
    margin: 42px 0 26px auto;
    transform: rotate(-9deg);
    border: 3px double var(--orange);
    border-radius: 50%;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    place-items: center;
    text-align: center;
    text-transform: uppercase;
}

.dossier__title {
    display: flex;
    flex-direction: column;
}

.dossier__title small,
.dossier__footer span,
.dossier__line {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dossier__title strong {
    margin-top: 4px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 34px;
    line-height: 1.05;
}

.dossier__line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 34px 0;
}

.dossier__line i {
    position: relative;
    flex: 1;
    height: 2px;
    background: var(--line);
}

.dossier__line i::after {
    position: absolute;
    top: -4px;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.dossier__line b {
    color: var(--ink);
}

.dossier__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--blue);
}

.dossier__footer span:first-child {
    max-width: 230px;
    line-height: 1.5;
}

.dossier__footer .plane {
    color: var(--orange);
    font-size: 24px;
}

.passport-card {
    position: absolute;
    z-index: 4;
    bottom: 46px;
    left: 2%;
    display: flex;
    width: 184px;
    height: 236px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 24px;
    transform: rotate(-10deg);
    border-radius: 8px 14px 14px 8px;
    background: var(--navy);
    box-shadow: 0 26px 50px rgba(0, 27, 77, 0.25);
    color: var(--white);
}

.passport-card::before {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 147, 30, 0.8);
    border-radius: 50%;
    content: "";
}

.passport-card span {
    color: var(--orange);
    font-family: var(--display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.passport-card small {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.route-orbit {
    position: absolute;
    top: 16%;
    right: -24%;
    width: 480px;
    height: 480px;
    border: 1px dashed rgba(255, 147, 30, 0.6);
    border-radius: 50%;
    animation: orbit 34s linear infinite;
}

.route-line {
    position: absolute;
    z-index: 5;
    right: 5%;
    bottom: 38px;
    left: 25%;
    height: 90px;
    transform: rotate(-4deg);
    border-top: 3px dashed var(--orange);
    border-radius: 50%;
}

.route-line i {
    position: absolute;
    top: -7px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--orange);
    border-radius: 50%;
    background: var(--white);
}

.route-line i:nth-child(1) { left: 0; }
.route-line i:nth-child(2) { left: 48%; }
.route-line i:nth-child(3) { right: 0; }

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

.goal-selector {
    position: relative;
    z-index: 10;
    display: grid;
    min-height: 114px;
    align-items: stretch;
    margin-top: 34px;
    border: 1px solid var(--line);
    border-radius: 16px 16px 0 0;
    background: var(--white);
    box-shadow: 0 -12px 40px rgba(10, 23, 51, 0.07);
    grid-template-columns: minmax(220px, 1.5fr) repeat(5, minmax(110px, 1fr));
}

.goal-selector__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 30px;
    border-right: 1px solid var(--line);
}

.goal-selector__intro span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.goal-selector__intro strong {
    margin-top: 5px;
    font-family: var(--display);
    font-size: 19px;
}

.goal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease;
}

.goal:last-child {
    border-right: 0;
}

.goal span {
    display: grid;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    font-size: 11px;
    place-items: center;
}

.goal:hover,
.goal.is-active {
    background: var(--blue-50);
    color: var(--blue);
}

.goal.is-active span {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.section-heading {
    display: grid;
    align-items: end;
    gap: 80px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
}

.section-heading h2,
.journey h2,
.about h2,
.consultation h2,
.contact h2 {
    font-size: clamp(3rem, 5.7vw, 6.4rem);
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-heading--compact {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
}

.service-board {
    display: grid;
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(12, 1fr);
}

.service-board > article {
    min-height: 320px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-feature {
    display: grid;
    grid-column: span 7;
    grid-template-columns: 96px 1fr;
}

.service-feature__number {
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-feature > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 44px;
}

.service-feature > div > p:first-child {
    margin: 0 0 26px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-feature h3,
.service-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.1rem, 3.2vw, 4rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.service-feature > div > p:not(:first-child) {
    max-width: 560px;
    margin: 24px 0 28px;
    opacity: 0.78;
}

.service-feature a,
.service-card a,
.destination-note a,
.contact a:not(.contact__big-link) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
}

.service-feature--blue {
    background: var(--blue);
    color: var(--white);
}

.service-feature--paper {
    grid-column: span 7;
    background: var(--orange-50);
}

.service-feature--paper .service-feature__number {
    border-color: rgba(0, 51, 153, 0.15);
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px;
    grid-column: span 5;
    transition: background 220ms ease, transform 220ms ease;
}

.service-card:nth-of-type(4) {
    grid-column: span 5;
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-6px);
    background: var(--blue-50);
}

.service-card--warm:hover {
    background: var(--orange-50);
}

.service-card__code {
    margin-bottom: auto;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.service-card h3 {
    margin-top: 46px;
    font-size: clamp(1.8rem, 2.6vw, 3.1rem);
}

.service-card p {
    margin: 20px 0 24px;
    color: var(--muted);
}

.journey {
    position: relative;
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
}

.journey::before {
    position: absolute;
    top: -55%;
    left: -12%;
    width: 740px;
    height: 740px;
    border: 1px dashed rgba(255, 147, 30, 0.35);
    border-radius: 50%;
    content: "";
}

.journey__grid {
    position: relative;
    display: grid;
    align-items: start;
    gap: 9vw;
    grid-template-columns: minmax(0, 0.8fr) minmax(400px, 0.7fr);
}

.journey__intro {
    position: sticky;
    top: 132px;
}

.journey__intro p:not(.eyebrow) {
    max-width: 570px;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

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

.journey__steps li {
    display: grid;
    min-height: 180px;
    gap: 34px;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    grid-template-columns: 62px 1fr;
}

.journey__steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.journey__steps > li > span {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    place-items: center;
}

.journey__steps h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 32px;
    letter-spacing: -0.03em;
}

.journey__steps p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.destinations {
    background: var(--paper);
}

.destination-list {
    margin-top: 80px;
    border-top: 1px solid var(--line);
}

.destination {
    display: grid;
    width: 100%;
    min-height: 104px;
    align-items: center;
    padding: 10px 22px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    grid-template-columns: 80px 1fr 80px;
    transition: background 180ms ease, padding 240ms ease;
}

.destination:hover,
.destination.is-active {
    padding-inline: 32px;
    background: var(--white);
}

.destination > span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
}

.destination > strong {
    font-family: var(--display);
    font-size: clamp(2rem, 3.4vw, 4rem);
    font-weight: 680;
    letter-spacing: -0.04em;
}

.destination > i {
    color: var(--blue);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: right;
}

.destination-note {
    display: grid;
    max-width: 860px;
    min-height: 330px;
    margin: 72px 0 0 auto;
    overflow: hidden;
    border-radius: 16px;
    background: var(--blue);
    box-shadow: var(--shadow-paper);
    color: var(--white);
    grid-template-columns: minmax(280px, 0.8fr) 1fr;
}

.destination-note > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px;
}

.destination-note small {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destination-note h3 {
    margin: 14px 0;
    font-family: var(--display);
    font-size: 42px;
    letter-spacing: -0.04em;
}

.destination-note p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
}

.destination-note__map {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 147, 30, 0.25) 0 4px, transparent 5px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
        var(--navy);
}

.destination-note__map::after {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 230px;
    height: 130px;
    transform: translate(-50%, -50%) rotate(-12deg);
    border-top: 2px dashed var(--orange);
    border-radius: 50%;
    content: "";
}

.destination-note__map > span {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--orange);
    border-radius: 50%;
}

.destination-note__map > span:nth-child(1) { top: 28%; left: 24%; }
.destination-note__map > span:nth-child(2) { top: 57%; left: 66%; }
.destination-note__map > span:nth-child(3) { top: 73%; left: 38%; }
.destination-note__map > span:nth-child(4) { top: 32%; left: 77%; }

.destination-note__map b {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--display);
    font-size: 72px;
}

.about {
    background: var(--white);
}

.about__grid {
    display: grid;
    gap: 9vw;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
}

.about__statement {
    position: sticky;
    top: 130px;
    align-self: start;
}

.about__copy > p {
    margin: 0 0 60px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

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

.principles > div {
    display: grid;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 44px 170px 1fr;
}

.principles span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.principles strong {
    color: var(--blue);
    font-family: var(--display);
    font-size: 20px;
}

.principles p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.consultation {
    background:
        linear-gradient(90deg, rgba(0, 51, 153, 0.045) 1px, transparent 1px) 0 0 / 70px 70px,
        var(--blue-50);
}

.consultation__shell {
    display: grid;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-paper);
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.68fr);
}

.consultation__form-panel {
    padding: clamp(38px, 6vw, 80px);
}

.consultation h2 {
    max-width: 790px;
}

.consultation__intro {
    max-width: 620px;
    margin: 26px 0 46px;
    color: var(--muted);
    font-size: 17px;
}

.form-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr 1fr;
}

.field {
    display: flex;
    flex-direction: column;
}

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

.field label {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.field label span,
.consent strong {
    color: var(--orange);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #b9c7da;
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
    min-height: 52px;
    padding: 0 15px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
    border-color: var(--danger);
}

.field-error {
    min-height: 18px;
    margin-top: 5px;
    color: var(--danger);
    font-size: 11px;
}

.consent {
    display: grid;
    align-items: start;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    grid-template-columns: 18px 1fr;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--blue);
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

.form-actions p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-alert {
    padding: 12px 14px;
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
}

.form-alert--success {
    border-color: rgba(23, 114, 69, 0.24);
    background: rgba(23, 114, 69, 0.08);
    color: var(--success);
}

.form-alert--error {
    border-color: rgba(180, 35, 24, 0.22);
    background: rgba(180, 35, 24, 0.07);
    color: var(--danger);
}

.receipt {
    position: relative;
    overflow: hidden;
    padding: 42px 38px;
    border-radius: 0 20px 20px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 100% 42px,
        var(--navy);
    color: var(--white);
}

.receipt__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.receipt__head i {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
    font-style: normal;
}

.receipt__head b {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7a4;
    box-shadow: 0 0 0 5px rgba(110, 231, 164, 0.11);
}

.receipt__identity,
.receipt__service {
    display: flex;
    flex-direction: column;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.receipt small {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.receipt__identity strong,
.receipt__service strong {
    overflow: hidden;
    margin-top: 7px;
    font-family: var(--display);
    font-size: 23px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.receipt__identity span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.receipt ol {
    padding: 26px 0 0;
    margin: 0;
    list-style: none;
}

.receipt li {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
    grid-template-columns: 28px 1fr;
}

.receipt li > span {
    display: grid;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.receipt li strong {
    font-size: 13px;
}

.receipt li p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1.55;
}

.receipt__stamp {
    position: absolute;
    right: -10px;
    bottom: 14px;
    display: grid;
    width: 112px;
    height: 112px;
    transform: rotate(-10deg);
    border: 3px double rgba(255, 147, 30, 0.34);
    border-radius: 50%;
    color: rgba(255, 147, 30, 0.46);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    place-items: center;
    text-align: center;
    text-transform: uppercase;
}

.contact {
    background: var(--blue);
    color: var(--white);
}

.contact__grid {
    display: grid;
    gap: 9vw;
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 0.8fr);
}

.contact address {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
}

.contact address > div {
    min-height: 220px;
    padding: 26px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact address > div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact address small {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact address p {
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.contact__big-link {
    display: block;
    margin: 18px 0;
    font-family: var(--display);
    font-size: clamp(1.15rem, 1.5vw, 1.5rem);
    font-weight: 700;
    word-break: break-word;
}

.site-footer {
    padding: 84px 0 26px;
    background: var(--navy);
    color: var(--white);
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand--footer .brand__name strong {
    color: var(--white);
}

.brand--footer .brand__name small {
    max-width: 290px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__links {
    display: grid;
    gap: 40px;
    padding-block: 62px;
    grid-template-columns: repeat(4, 1fr);
}

.site-footer__links > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.site-footer__links strong {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.site-footer__bottom p:last-child {
    max-width: 720px;
    text-align: right;
}

.whatsapp-float {
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: 20px;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 8px 15px 8px 8px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(10, 23, 51, 0.18);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    transition: transform 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float span {
    display: grid;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #1f9d55;
    color: var(--white);
    font-size: 9px;
    place-items: center;
}

@media (max-width: 1100px) {
    :root {
        --container: min(100% - 40px, 980px);
    }

    .site-nav {
        gap: 17px;
    }

    .site-nav .button {
        display: none;
    }

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

    .hero h1 {
        font-size: clamp(3.7rem, 7.2vw, 6.4rem);
    }

    .goal-selector {
        grid-template-columns: repeat(5, 1fr);
    }

    .goal-selector__intro {
        display: none;
    }

    .consultation__shell {
        grid-template-columns: 1fr 0.62fr;
    }

    .receipt {
        padding: 34px 28px;
    }
}

@media (max-width: 860px) {
    .section {
        padding-block: 96px;
    }

    .site-header {
        background: var(--white);
        backdrop-filter: none;
    }

    .site-notice__inner > span {
        display: none;
    }

    .site-notice__inner {
        justify-content: center;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: flex;
        width: 46px;
        height: 46px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        cursor: pointer;
    }

    .menu-toggle span:not(.sr-only) {
        width: 21px;
        height: 2px;
        background: var(--blue);
        transition: transform 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(4.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(380px, 88vw);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 100px 32px 40px;
        transform: translateX(105%);
        background: var(--navy);
        box-shadow: -20px 0 50px rgba(10, 23, 51, 0.24);
        color: var(--white);
        visibility: hidden;
        transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .site-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .site-nav > a:not(.button) {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-family: var(--display);
        font-size: 24px;
    }

    .site-nav .button {
        display: inline-flex;
        margin-top: 26px;
    }

    .hero {
        padding-top: 70px;
    }

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

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 500px;
    }

    .dossier {
        right: 9%;
    }

    .passport-card {
        left: 12%;
    }

    .goal-selector {
        overflow-x: auto;
        grid-template-columns: repeat(5, minmax(120px, 1fr));
    }

    .section-heading,
    .journey__grid,
    .about__grid,
    .contact__grid {
        gap: 52px;
        grid-template-columns: 1fr;
    }

    .journey__intro,
    .about__statement {
        position: static;
    }

    .service-feature,
    .service-feature--paper {
        grid-column: span 12;
    }

    .service-card {
        grid-column: span 6;
    }

    .service-card:nth-of-type(4) {
        grid-column: span 12;
    }

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

    .receipt {
        min-height: 640px;
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 620px) {
    :root {
        --container: calc(100% - 32px);
    }

    html {
        scroll-padding-top: 82px;
    }

    .section {
        padding-block: 78px;
    }

    .site-notice__links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: 9px;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .brand__mark {
        width: 48px;
        height: 42px;
    }

    .brand__mark img {
        width: 62px;
    }

    .brand__name strong {
        font-size: 14px;
    }

    .brand__name small {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 5.2rem);
    }

    .hero__lead {
        margin-top: 24px;
        font-size: 16px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .hero__assurances {
        flex-direction: column;
        gap: 12px;
        margin-top: 36px;
    }

    .hero__assurances li,
    .hero__assurances li + li {
        padding: 0;
        border: 0;
    }

    .hero__visual {
        min-height: 390px;
    }

    .dossier {
        top: 12px;
        right: 1%;
        width: 82%;
        min-height: 360px;
        padding: 24px;
    }

    .dossier__stamp {
        width: 78px;
        height: 78px;
        margin: 24px 0 18px auto;
        font-size: 9px;
    }

    .dossier__title strong {
        font-size: 25px;
    }

    .dossier__line {
        margin: 24px 0;
    }

    .passport-card {
        bottom: 20px;
        left: 0;
        width: 126px;
        height: 170px;
        padding: 20px 17px;
    }

    .passport-card span {
        font-size: 38px;
    }

    .route-line {
        display: none;
    }

    .goal-selector {
        width: 100%;
        margin-top: 18px;
        border-radius: 12px 12px 0 0;
        grid-template-columns: repeat(5, minmax(94px, 1fr));
    }

    .goal {
        min-height: 96px;
        flex-direction: column;
    }

    .section-heading {
        gap: 28px;
    }

    .section-heading h2,
    .journey h2,
    .about h2,
    .consultation h2,
    .contact h2 {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
    }

    .service-board {
        margin-top: 48px;
    }

    .service-feature {
        grid-template-columns: 52px 1fr;
    }

    .service-feature__number {
        padding: 26px 14px;
    }

    .service-feature > div:last-child {
        padding: 32px 24px;
    }

    .service-feature h3 {
        font-size: 2.7rem;
    }

    .service-card,
    .service-card:nth-of-type(4) {
        min-height: 290px;
        padding: 28px 24px;
        grid-column: span 12;
    }

    .journey__steps li {
        gap: 20px;
        grid-template-columns: 46px 1fr;
    }

    .destination {
        min-height: 88px;
        padding-inline: 10px;
        grid-template-columns: 44px 1fr 48px;
    }

    .destination:hover,
    .destination.is-active {
        padding-inline: 14px;
    }

    .destination-note {
        margin-top: 48px;
        grid-template-columns: 1fr;
    }

    .destination-note__map {
        min-height: 210px;
    }

    .destination-note > div:last-child {
        padding: 34px 28px;
    }

    .about__copy > p {
        font-size: 16px;
    }

    .principles > div {
        gap: 8px;
        grid-template-columns: 34px 1fr;
    }

    .principles p {
        grid-column: 2;
    }

    .consultation__shell {
        border-radius: 14px;
    }

    .consultation__form-panel {
        padding: 36px 22px;
    }

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

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

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .button {
        width: 100%;
    }

    .receipt {
        min-height: 610px;
        padding: 32px 24px;
    }

    .contact address {
        grid-template-columns: 1fr;
    }

    .contact address > div {
        min-height: auto;
        padding: 26px 0;
    }

    .contact address > div:nth-child(odd) {
        border-right: 0;
    }

    .site-footer {
        padding-top: 66px;
    }

    .site-footer__top,
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top {
        padding-bottom: 44px;
    }

    .site-footer__top .button {
        width: 100%;
    }

    .site-footer__links {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        gap: 16px;
    }

    .site-footer__bottom p:last-child {
        text-align: left;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding-right: 8px;
    }

    .whatsapp-float strong {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
