@font-face {
    font-family: "Archivo";
    src: url("../fonts/Archivo-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Archivo";
    src: url("../fonts/Archivo-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Archivo";
    src: url("../fonts/Archivo-Black.ttf") format("truetype");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --water: #00a0ff;
    --deep: #000c3a;
    --blue: #27649d;
    --sky: #7bcfff;
    --mist: #b5e0f7;
    --ice: #e6f6ff;
    --amber: #ff9f1c;
    --green: #2ea281;
    --white: #fff;
    --ink: #09183f;
    --muted: #58647f;
    --line: #d9e3ed;
    --paper: #f7fbfd;
    --font: "Archivo", Verdana, Geneva;
    --radius: 22px;
    --shadow: 0 22px 60px rgb(0 12 58 / 10%);
    --shell: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font), sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

body.menu-open {
    overflow: hidden;
}

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

button, input {
    font: inherit;
}

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

a {
    color: inherit;
}

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

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 5.2vw, 4.75rem);
    line-height: .98;
    letter-spacing: -.055em;
}

h3 {
    line-height: 1.16;
    letter-spacing: -.025em;
}

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

.section {
    padding: clamp(84px, 11vw, 150px) 0;
}

.visually-hidden {
    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;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 14px;
    background: var(--deep);
    color: white;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.eyebrow {
    margin-bottom: 20px;
    color: var(--water);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 880px;
    margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading > p:not(.eyebrow), .heading-split > p, .faq-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.heading-split {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: clamp(30px, 7vw, 100px);
    align-items: end;
    max-width: none;
}

.heading-split > div h2 {
    margin-bottom: 0;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 24px;
    border: 2px solid var(--water);
    border-radius: 999px;
    background: var(--water);
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;

    will-change: transform, box-shadow;
}

.button:hover {
    background: var(--deep);
    border-color: var(--deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(0 12 58 / 18%);
}

.button:focus-visible, .menu-toggle:focus-visible, .carousel-arrow:focus-visible, .carousel-dots button:focus-visible, .video-card:focus-visible, .panel-close:focus-visible, input:focus-visible, summary:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
}

.button-small {
    min-height: 42px;
    padding: 9px 18px;
    font-size: .82rem;
}

.button-dark {
    border-color: var(--deep);
    background: var(--deep);
    color: white;
}

.button-dark:hover {
    border-color: white;
    background: white;
    color: var(--deep);
}

.button-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgb(0 12 58 / 8%);
    background: rgb(255 255 255 / 94%);
    backdrop-filter: blur(14px);
}

.header-inner {
    position: relative;
    display: flex;
    height: 78px;
    align-items: center;
    gap: 18px;
}

.ru-brand {
    display: block;
    width: 103px;
    flex: 0 0 auto;
}

.ru-brand img {
    width: 100%;
    max-height: 54px;
}

.campaign-name {
    max-width: 100px;
    color: var(--deep);
    font-size: .71rem;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1.05;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--deep);
    transition: transform .2s ease, opacity .2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

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

.site-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    min-width: 315px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: .2s ease;
}

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

.site-menu > a:not(.button) {
    padding: 11px 13px;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.site-menu > a:not(.button):hover {
    background: var(--ice);
    color: var(--blue);
}

.menu-cta {
    display: none;
    margin-top: 8px;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100svh - 78px));
    overflow: hidden;
    background: white;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: min(760px, calc(100svh - 78px));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 54px 0 74px;
    text-align: center;
}

.hero-logo {
    width: min(670px, 78vw);
    max-height: 52vh;
    margin-bottom: 26px;
}

.hero-lead {
    margin-bottom: 30px;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -.025em;
}

.hero-bubble {
    position: absolute;
    border: 2px solid var(--mist);
    border-radius: 47% 53% 61% 39% / 38% 45% 55% 62%;
}

.bubble-one {
    top: 9%;
    left: -7%;
    width: 27vw;
    min-width: 260px;
    aspect-ratio: 1.25;
    transform: rotate(-16deg);
}

.bubble-two {
    right: -5%;
    bottom: 4%;
    width: 23vw;
    min-width: 220px;
    aspect-ratio: 1;
    transform: rotate(22deg);
}

.video-section {
    overflow: hidden;
    background: var(--deep);
    color: white;
}

.light-heading {
    margin-bottom: 34px;
}

.light-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.video-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.video-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22, .75, .16, 1);
}

.video-slide {
    flex: 0 0 100%;
    margin: 0;
}

.video-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #08132f;
    color: white;
    text-align: left;
    box-shadow: 0 30px 80px rgb(0 0 0 / 36%);
    cursor: pointer;
}

.video-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.22, .75, .16, 1);
    will-change: transform;
}

.video-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgb(0 12 58 / 88%) 100%);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(68px, 8vw, 94px);
    aspect-ratio: 1;
    place-items: center;
    border: 2px solid rgb(255 255 255 / 75%);
    border-radius: 50%;
    background: var(--water);
    box-shadow: 0 14px 35px rgb(0 12 58 / 30%);
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.video-play svg {
    width: 66.66%;
    fill: white;
}

.video-card:hover > img {
    transform: scale(1.025);
}

.video-card:hover .video-play {
    background: var(--deep);
    transform: translate(-50%, -50%) scale(1.07);
}

.video-caption {
    position: absolute;
    right: clamp(22px, 4vw, 48px);
    bottom: clamp(44px, 8vw, 84px);
    left: clamp(22px, 4vw, 48px);
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.video-caption > span {
    color: var(--water);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .13em;
}

.video-caption strong {
    max-width: 720px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.18;
}

.carousel-arrow {
    position: absolute;
    top: 46%;
    z-index: 2;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--water);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s, background .2s;
    will-change: transform;
}

.carousel-arrow:hover {
    background: white;
    color: var(--deep);
    transform: scale(1.06);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 32px;
    position: absolute;
    bottom: 5%;
    width: 100%;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 30%);
    cursor: pointer;
    transition: width .2s, border-radius .2s, background .2s;
}

.carousel-dots button.active {
    width: 32px;
    border-radius: 6px;
    background: var(--water);
}

.video-dialog {
    width: min(1240px, calc(100% - 40px));
    max-width: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 24px;
    background: var(--deep);
    color: white;
    box-shadow: 0 28px 100px rgb(0 0 0 / 50%);
}

.video-dialog::backdrop {
    background: rgb(0 7 32 / 82%);
    backdrop-filter: blur(7px);
}

.video-dialog-inner {
    position: relative;
    padding: 12px 12px 20px;
}

.video-dialog-frame {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
    background: #050b20;
}

.video-dialog-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-dialog-caption {
    margin: 16px 12px 0;
    font-size: .9rem;
    font-weight: 600;
}

.video-dialog-close {
    position: absolute;
    top: -17px;
    right: -17px;
    z-index: 2;
    background: white;
    color: var(--deep);
}

.benefits {
    background: white;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.benefit-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: white;
}

.benefit-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -95px;
    width: 180px;
    height: 150px;
    border: 1px solid var(--mist);
    border-radius: 54% 46% 40% 60%;
    transition: transform .35s ease;
}

.benefit-card:hover::after {
    transform: translate(-12px, -12px) rotate(14deg);
}

.benefit-card.featured-card {
    background: var(--ice);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 52px;
    fill: none;
    stroke: var(--water);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-number {
    position: absolute;
    top: 35px;
    right: 34px;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.benefit-card h3 {
    max-width: 230px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.benefit-card > p:last-of-type {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.center-action {
    margin-top: 40px;
    text-align: center;
}

.text-link {
    color: var(--deep);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--water);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.text-link span {
    display: inline-block;
    margin-left: 8px;
    transition: transform .2s;
}

.text-link:hover span {
    transform: translateX(5px);
}

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

.roadmap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.roadmap::before {
    content: "";
    position: absolute;
    top: 29px;
    right: calc(25% - 45px);
    left: 30px;
    border-top: 2px dashed var(--sky);
}

.roadmap li {
    position: relative;
    z-index: 1;
}

.step-number {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 28px;
    border: 7px solid var(--paper);
    border-radius: 50%;
    background: var(--water);
    color: var(--deep);
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 0 0 1px var(--sky);
}

.roadmap li:nth-child(even) .step-number {
    background: var(--deep);
    color: white;
}

.roadmap h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.roadmap p {
    margin: 0;
    color: var(--muted);
    font-size: .91rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(50px, 9vw, 140px);
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
    margin-bottom: 0;
}

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

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary span {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 1px solid var(--water);
    border-radius: 50%;
}

.faq-list summary span::before, .faq-list summary span::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 7px;
    width: 10px;
    height: 2px;
    background: var(--water);
}

.faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform .2s;
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    max-width: 65ch;
    margin: -5px 48px 25px 0;
    color: var(--muted);
}

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

.map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: white;
    box-shadow: var(--shadow);
}

.map-visual {
    position: relative;
    display: grid;
    min-height: 660px;
    place-items: center;
    padding: 26px;
    overflow: hidden;
    background: var(--ice);
}

.map-svg {
    display: block;
    width: 100%;
    height: 610px;
    border: 0;
}

.map-tooltip {
    position: absolute;
    z-index: 3;
    max-width: min(220px, calc(100% - 24px));
    padding: 7px 11px;
    border-radius: 8px;
    background: var(--deep);
    color: white;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgb(0 12 58 / 20%);
    pointer-events: none;
}

.map-tooltip[hidden] {
    display: none;
}

.map-help {
    position: absolute;
    right: 24px;
    bottom: 20px;
    margin: 0;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgb(255 255 255 / 80%);
    color: var(--blue);
    font-size: .7rem;
    font-weight: 600;
}

.support-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 66px);
    background: white;
}

.support-label {
    margin-bottom: 8px;
    color: var(--water);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.support-panel h3 {
    margin-bottom: 25px;
    font-size: clamp(1.8rem, 3.2vw, 2.85rem);
}

.support-panel ul {
    padding: 0;
    margin: 0 0 22px;
    list-style: none;
}

.support-panel li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}

.support-panel li strong {
    color: var(--blue);
}

.support-extra {
    padding: 20px;
    border-radius: 16px;
    background: var(--deep);
    color: white;
}

.support-extra span {
    display: block;
    color: var(--sky);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.support-extra strong {
    display: block;
    margin: 3px 0;
    font-size: 1.5rem;
}

.support-extra p {
    margin: 0;
    color: rgb(255 255 255 / 70%);
    font-size: .8rem;
}

.legal-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .69rem;
}

.hood-result {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 66px);
    background: var(--deep);
    color: white;
    animation: panel-in .25s ease both;
}

.hood-result[hidden] {
    display: none;
}

.panel-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 50%;
    cursor: pointer;
}

.panel-close span {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
}

.panel-close span::before, .panel-close span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.panel-close span::before {
    transform: rotate(45deg);
}

.panel-close span::after {
    transform: rotate(-45deg);
}

.hood-result > button {
    position: absolute;
    top: 22px;
    right: 22px;
    background: transparent;
    color: white;
}

.hood-result h3 {
    color: var(--water);
}

.hood-result > p:last-child {
    color: rgb(255 255 255 / 72%);
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
}

.address-section {
    position: relative;
    z-index: 2;
    overflow: visible;
    background: var(--water);
    color: var(--deep);
}

.address-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 32px 70px;
    align-items: end;
}

.address-copy .eyebrow {
    color: var(--deep);
}

.address-copy h2 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    text-wrap: balance;
}

.address-copy > p:last-child {
    max-width: 48ch;
    margin-bottom: 0;
}

.address-tool {
    position: relative;
    z-index: 3;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 25px;
    background: white;
    box-shadow: 0 24px 60px rgb(0 12 58 / 20%);
}

.address-tool label, .field label {
    display: block;
    margin-bottom: 8px;
    font-size: .78rem;
    font-weight: 600;
}

.combobox-wrap {
    position: relative;
}

.combobox-wrap > svg {
    position: absolute;
    top: 50%;
    left: 17px;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    transform: translateY(-50%);
}

.combobox-wrap input {
    padding-left: 52px;
    padding-right: 42px;
}

input[type="text"] {
    width: 100%;
    min-height: 56px;
    border: 1px solid #b8c8d6;
    border-radius: 12px;
    background: white;
    color: var(--ink);
    font-size: 1rem;
}

.combobox-wrap input, .field input {
    padding-top: 13px;
    padding-bottom: 13px;
}

.field input {
    padding-right: 15px;
    padding-left: 15px;
}

input::placeholder {
    color: #8390a7;
}

.search-spinner {
    position: absolute;
    top: 50%;
    right: 16px;
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--mist);
    border-top-color: var(--water);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: spin .65s linear infinite;
}

.address-tool.loading .search-spinner {
    display: block;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(1turn);
    }
}

.field-help {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: .72rem;
}

.address-options {
    position: absolute;
    top: calc(clamp(28px, 4vw, 48px) + 83px);
    right: clamp(28px, 4vw, 48px);
    left: clamp(28px, 4vw, 48px);
    z-index: 20;
    max-height: 315px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
}

.address-options[hidden] {
    display: none;
}

.address-option {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 15px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: white;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.address-option::before {
    content: "⌖";
    color: var(--water);
    font-weight: 900;
}

.address-option:last-child {
    border-bottom: 0;
}

.address-option:hover, .address-option.active {
    background: var(--ice);
}

.address-option strong {
    display: block;
    font-size: .86rem;
}

.address-option small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
}

.address-status {
    min-height: 20px;
    margin-top: 10px;
    color: #9f3e00;
    font-size: .78rem;
}

.address-next {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 28px;
    border: 1px solid rgb(0 12 58 / 18%);
    border-radius: 22px;
    background: rgb(255 255 255 / 38%);
}

.address-next[hidden] {
    display: none;
}

.address-next span, .address-next small {
    display: block;
}

.address-next span {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
}

.address-next strong {
    display: block;
    margin: 3px 0;
    font-size: 1.15rem;
}

.address-next small {
    opacity: .75;
}

.application-section {
    position: relative;
    z-index: 1;
    background: white;
}

.application-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(50px, 9vw, 140px);
    align-items: start;
}

.application-copy h2 {
    max-width: 500px;
}

.application-copy > p:not(.eyebrow) {
    max-width: 42ch;
    color: var(--muted);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}

.contact-note > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--ice);
    color: var(--blue);
    font-weight: 900;
}

.contact-note p {
    margin: 0;
    font-size: .8rem;
}

.application-form {
    padding: clamp(28px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 20px;
}

.field-error {
    display: block;
    min-height: 15px;
    margin-top: 4px;
    color: #a03520;
    font-size: .7rem;
}

.field.invalid input {
    border-color: #a03520;
    background: #fff8f6;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 2px 0 24px;
    color: var(--muted);
    font-size: .75rem;
    cursor: pointer;
}

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

.consent a {
    color: var(--blue);
    font-weight: 700;
}

.demo-note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .68rem;
    text-align: center;
}

.form-message {
    margin-top: 18px;
    padding: 15px 18px;
    border-radius: 12px;
    background: #dff7ed;
    color: #165c49;
    font-size: .86rem;
    font-weight: 700;
}

.form-message[hidden] {
    display: none;
}

.trust-section {
    padding: clamp(75px, 10vw, 130px) 0;
    background: var(--deep);
    color: white;
}

.trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 50px;
}

.trust-number {
    margin: 0;
    color: var(--water);
    font-size: clamp(4.8rem, 13vw, 10rem);
    font-weight: 900;
    line-height: .76;
    letter-spacing: -.08em;
    white-space: nowrap;
}

.trust-number span {
    color: var(--amber);
    font-size: .46em;
    vertical-align: top;
}

.trust-inner > p:last-child {
    max-width: 32ch;
    margin: 0;
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 700;
}

.site-footer {
    padding: 68px 0 24px;
    background: #050b20;
    color: rgb(255 255 255 / 68%);
    font-size: .82rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 190px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 40ch;
}

.footer-title {
    margin-bottom: 13px;
    color: white;
    font-weight: 800;
}

.footer-grid > div:not(:first-child) a {
    display: block;
    width: fit-content;
    margin-bottom: 7px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--water);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 13%);
    font-size: .7rem;
}

.footer-bottom p {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-logo, .hero-lead, .hero .button {
        animation: rise .7s cubic-bezier(.2, .8, .2, 1) both;
    }

    .hero-lead {
        animation-delay: .12s;
    }

    .hero .button {
        animation-delay: .22s;
    }

    @keyframes rise {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
    }
}

@media (max-width: 900px) {
    .heading-split, .address-shell, .application-layout {
        grid-template-columns: 1fr;
    }

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

    .roadmap {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }

    .roadmap::before {
        display: none;
    }

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

    .faq-intro {
        position: static;
    }

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

    .map-visual {
        min-height: 570px;
    }

    .support-panel {
        min-height: 480px;
    }

    .address-copy {
        max-width: 670px;
    }

    .address-next {
        flex-direction: column;
        align-items: stretch;
    }

    .address-next .button {
        width: 100%;
    }

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

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

@media (max-width: 620px) {
    :root {
        --shell: min(100% - 28px, 1180px);
        --radius: 18px;
    }

    .section {
        padding: 78px 0;
    }

    h2 {
        font-size: clamp(2.2rem, 12vw, 3.35rem);
    }

    .site-header .header-inner {
        height: 68px;
    }

    .ru-brand {
        width: 84px;
    }

    .campaign-name {
        max-width: 74px;
        font-size: .58rem;
    }

    .header-cta {
        display: none;
    }

    .menu-cta {
        display: inline-flex;
    }

    .site-menu {
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        min-width: 0;
        height: calc(100dvh - 68px);
        padding: 22px 20px;
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        align-content: start;
        gap: 2px;
        transform: translateY(-5px);
    }

    .site-menu > a:not(.button) {
        padding: 14px 12px;
        font-size: 1rem;
    }

    .hero, .hero-inner {
        min-height: 640px;
    }

    .hero-inner {
        padding-bottom: 80px;
    }

    .hero-logo {
        width: 92vw;
    }

    .hero-lead {
        max-width: 300px;
    }

    .video-caption {
        gap: 10px;
        bottom: clamp(32px, 6vw, 64px);
    }

    .video-caption strong {
        font-size: .85rem;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-arrow:hover {
        transform: translateY(-50%) scale(1);
    }

    .carousel-prev {
        left: 14px;
    }

    .carousel-next {
        right: 14px;
    }

    .carousel-dots {
        margin-top: 42px;
    }

    .heading-split {
        gap: 20px;
    }

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

    .benefit-card {
        min-height: 290px;
    }

    .card-icon {
        margin-bottom: 36px;
    }

    .roadmap {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 4px;
    }

    .roadmap::before {
        display: none;
    }

    .roadmap li {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 20px;
        padding-bottom: 34px;
    }

    .roadmap li:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 29px;
        bottom: -29px;
        left: 29px;
        z-index: 0;
        border-left: 2px dashed var(--sky);
    }

    .step-number {
        position: relative;
        z-index: 1;
        width: 58px;
        height: 58px;
        margin: 0;
    }

    .faq-list summary {
        padding: 21px 0;
        font-size: .9rem;
    }

    .faq-list details p {
        margin-right: 0;
        font-size: .85rem;
    }

    .map-visual {
        min-height: 430px;
        padding: 12px;
    }

    .map-svg {
        height: 405px;
    }

    .map-help {
        right: 14px;
        bottom: 12px;
    }

    .support-panel {
        min-height: 455px;
        padding: 28px;
    }

    .address-tool {
        padding: 22px 18px;
    }

    .address-options {
        right: 18px;
        left: 18px;
    }

    .address-next {
        padding: 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .application-form {
        padding: 25px 19px;
    }

    .application-copy h2 {
        font-size: clamp(2.5rem, 13vw, 3.6rem);
    }

    .trust-number {
        font-size: 22vw;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

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