:root {
    --bg: #070815;
    --bg-soft: #0d1020;
    --panel: rgba(255, 255, 255, 0.065);
    --panel-strong: rgba(20, 20, 43, 0.72);
    --border: rgba(207, 168, 255, 0.18);
    --text: #ffffff;
    --text-soft: #c8cbe3;
    --muted: #9399b7;
    --blue: #17a7ff;
    --violet: #8a3cff;
    --lilac: #cfa8ff;
    --pink: #d96bff;
    --container: 1540px;
    --header-height: 104px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 11% 88%, rgba(83, 73, 220, 0.24), transparent 30%),
        radial-gradient(circle at 93% 8%, rgba(178, 64, 255, 0.2), transparent 32%),
        var(--bg);
    font-family: "Manrope", Arial, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.page-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.ambient {
    position: fixed;
    z-index: -2;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ambient--blue {
    left: -330px;
    bottom: -340px;
    background: rgba(35, 102, 255, 0.21);
}

.ambient--violet {
    right: -350px;
    top: -320px;
    background: rgba(174, 58, 255, 0.22);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--header-height);
    background: linear-gradient(to bottom, rgba(7, 8, 21, 0.92), rgba(7, 8, 21, 0.5), transparent);
    backdrop-filter: blur(8px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 54px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: url("#brandGradient");
    stroke: var(--blue);
    stroke-width: 2.3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 12px rgba(23, 167, 255, 0.35));
}

.brand-name {
    color: rgba(255, 255, 255, 0.76);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.09em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-left: 30px;
}

.desktop-nav a {
    position: relative;
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--pink));
    transition: right 0.25s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a:hover::after {
    right: 0;
}

.header-cta {
    margin-left: auto;
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid rgba(214, 181, 255, 0.34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(207, 168, 255, 0.24), rgba(138, 60, 255, 0.18)),
        rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 35px rgba(108, 45, 219, 0.2);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cta svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 107, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 13px 38px rgba(138, 60, 255, 0.32);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.section-screen {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100svh;
    height: 100svh;
    padding: calc(var(--header-height) + 12px) 0 24px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 8, 21, 0.98) 0%, rgba(7, 8, 21, 0.76) 45%, rgba(7, 8, 21, 0.08) 75%),
        radial-gradient(circle at 70% 45%, rgba(105, 61, 255, 0.15), transparent 36%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(560px, 1.09fr);
    align-items: center;
    gap: 48px;
    transform: translateY(-42px);
}

.hero-copy {
    position: relative;
    z-index: 5;
    padding-top: 26px;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(207, 168, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    backdrop-filter: blur(14px);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 14px var(--blue);
}

h1 {
    max-width: 850px;
    margin: 28px 0 25px;
    font-size: clamp(54px, 5.1vw, 88px);
    line-height: 0.99;
    letter-spacing: -0.057em;
    font-weight: 600;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(100deg, #52bcff 0%, #a670ff 47%, #e47aff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 700px;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.button {
    min-height: 60px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button--primary {
    color: #fff;
    background: linear-gradient(110deg, #1c9eff, #8e4dff 58%, #c85cff);
    box-shadow: 0 14px 42px rgba(117, 67, 242, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(117, 67, 242, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-soft);
    backdrop-filter: blur(14px);
}

.button--ghost:hover {
    color: #fff;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.075);
}

.hero-metrics {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-top: 45px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.metric strong {
    font-size: 16px;
    font-weight: 700;
}

.metric span {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.metric-separator {
    width: 1px;
    min-height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(207, 168, 255, 0.34), transparent);
}

.hero-visual {
    position: relative;
    min-height: min(700px, calc(100svh - 118px));
    align-self: end;
}

.portrait-shell {
    position: absolute;
    inset: 0 -7vw -40px 0;
    overflow: hidden;
    border-radius: 42% 0 0 0;
    isolation: isolate;
}

.portrait-shell::before {
    content: "";
    position: absolute;
    inset: 10% 6% 6% 10%;
    z-index: 2;
    border: 1px solid rgba(195, 142, 255, 0.2);
    border-radius: 48% 28% 20% 44%;
    box-shadow: inset 0 0 80px rgba(100, 54, 255, 0.08);
    pointer-events: none;
}

.portrait-shell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(0.82) contrast(1.04) brightness(0.75);
    transform: scale(1.03);
}

.portrait-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(7, 8, 21, 0.9) 8%, rgba(7, 8, 21, 0.17) 37%, rgba(7, 8, 21, 0.04) 70%),
        linear-gradient(to top, var(--bg) 0%, rgba(7, 8, 21, 0.08) 27%, rgba(7, 8, 21, 0.04) 72%, rgba(7, 8, 21, 0.48) 100%),
        radial-gradient(circle at 74% 58%, rgba(145, 66, 255, 0.11), transparent 45%);
    mix-blend-mode: normal;
}

.visual-orbit {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(153, 110, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.visual-orbit--one {
    width: 570px;
    height: 570px;
    right: -80px;
    top: 7%;
}

.visual-orbit--two {
    width: 430px;
    height: 430px;
    right: -8px;
    top: 18%;
    border-style: dashed;
    animation: orbit 35s linear infinite;
}

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

.floating-card {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 17px;
    border: 1px solid rgba(221, 195, 255, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 32, 65, 0.72), rgba(14, 14, 32, 0.56));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.floating-card--top {
    top: 23%;
    right: 12%;
    animation: float 5.5s ease-in-out infinite;
}

.floating-card--bottom {
    left: 18%;
    bottom: 20%;
    animation: float 6.5s ease-in-out infinite reverse;
}

@keyframes float {
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.card-icon--blue {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 8px 25px rgba(23, 167, 255, 0.28);
}

.card-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
}

.floating-card strong {
    font-size: 13px;
}

.mini-chart {
    width: 42px;
    height: 39px;
    display: flex;
    align-items: end;
    gap: 4px;
    padding: 6px;
    border-radius: 11px;
    background: rgba(138, 60, 255, 0.14);
}

.mini-chart span {
    flex: 1;
    border-radius: 999px 999px 2px 2px;
    background: linear-gradient(to top, var(--blue), var(--pink));
}

.visual-caption {
    position: absolute;
    z-index: 7;
    right: 4%;
    bottom: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    letter-spacing: 0.05em;
}

.visual-caption span {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--pink));
}

.scroll-hint {
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-hint i {
    position: relative;
    display: block;
    width: 1px;
    height: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.13);
}

.scroll-hint i::after {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(to bottom, transparent, var(--lilac));
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    to { transform: translateY(44px); }
}

.side-dots {
    position: fixed;
    z-index: 45;
    top: 50%;
    right: 23px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    transform: translateY(-50%);
}

.side-dot {
    position: relative;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
}

.side-dot::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.29);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.side-dot span {
    position: absolute;
    right: 25px;
    opacity: 0;
    color: var(--lilac);
    font-size: 9px;
    transition: opacity 0.25s ease;
}

.side-dot:hover span,
.side-dot.is-active span {
    opacity: 1;
}

.side-dot.is-active::before {
    width: 9px;
    height: 9px;
    background: var(--lilac);
    box-shadow: 0 0 15px rgba(207, 168, 255, 0.9);
}

.content-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100svh;
    margin: 0;
    padding: calc(var(--header-height) + 40px) 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at 50% 50%, rgba(116, 65, 255, 0.11), transparent 34%),
        rgba(7, 8, 21, 0.92);
}

.section-heading {
    max-width: 900px;
    text-align: center;
}

.section-kicker {
    color: var(--lilac);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 20px 0;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-heading p {
    max-width: 690px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.72s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.22s; }
.reveal-delay-3 { animation-delay: 0.32s; }
.reveal-delay-4 { animation-delay: 0.42s; }

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {
    :root { --header-height: 88px; }

    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .header-inner {
        gap: 30px;
    }

    .desktop-nav {
        gap: 25px;
        margin-left: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
        gap: 12px;
    }

    .hero-visual {
        min-height: min(660px, calc(100svh - 125px));
    }

    .floating-card--top {
        right: 1%;
    }
}

@media (max-width: 1050px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
        width: 48px;
        height: 48px;
        display: grid;
        place-content: center;
        gap: 7px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
    }

    .menu-toggle span {
        width: 20px;
        height: 1.5px;
        background: #fff;
        transition: transform 0.25s ease;
    }

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

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

    .mobile-menu {
        position: fixed;
        inset: var(--header-height) 18px auto;
        z-index: 49;
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(13, 16, 32, 0.94);
        backdrop-filter: blur(25px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 13px;
        border-radius: 12px;
        color: var(--text-soft);
    }

    .mobile-menu a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
    }

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 35px;
        transform: translateY(-12px);
    }

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

    .hero-visual {
        min-height: 650px;
        margin-top: 10px;
    }

    .portrait-shell {
        inset: 0 -24px -35px 8%;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(7, 8, 21, 0.98) 0%, rgba(7, 8, 21, 0.88) 43%, rgba(7, 8, 21, 0.06) 72%),
            radial-gradient(circle at 70% 55%, rgba(105, 61, 255, 0.14), transparent 40%);
    }

    .scroll-hint {
        display: none;
    }
}

@media (max-width: 680px) {
    :root { --header-height: 76px; }

    html {
        scroll-snap-type: y mandatory;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .brand-name {
        font-size: 19px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 22px);
    }

    .hero-grid {
        transform: none;
    }

    h1 {
        margin-top: 23px;
        font-size: clamp(43px, 13vw, 61px);
    }

    .hero-lead {
        font-size: 16px;
    }

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

    .button {
        width: 100%;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 16px;
        margin-top: 36px;
    }

    .metric-separator {
        display: none;
    }

    .hero-visual {
        min-height: 520px;
        margin-top: 30px;
    }

    .portrait-shell {
        inset: 0 -50px -20px -40px;
        border-radius: 32% 0 0 0;
    }

    .portrait-shell img {
        object-position: 61% center;
    }

    .floating-card {
        padding: 11px 12px;
    }

    .floating-card--top {
        top: 15%;
        right: 10px;
    }

    .floating-card--bottom {
        left: 8%;
        bottom: 14%;
    }

    .visual-caption,
    .visual-orbit {
        display: none;
    }

    .side-dots {
        right: 6px;
    }

    .side-dot span {
        display: none;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading p {
        font-size: 16px;
    }
}





/* SERVICES */
.services-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 24px) 0 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 22%, rgba(23, 167, 255, .12), transparent 27%),
        radial-gradient(circle at 86% 80%, rgba(190, 74, 255, .14), transparent 30%),
        #080918;
}

.services-section::before,
.calculator-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.services-container,
.calculator-container {
    position: relative;
    z-index: 2;
}

.services-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 510px);
    align-items: end;
    gap: 50px;
    margin-bottom: 24px;
}

.services-heading h2,
.calculator-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.04;
    letter-spacing: -.05em;
    font-weight: 600;
}

.services-heading p,
.calculator-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tariff-card {
    position: relative;
    min-height: 590px;
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(207, 168, 255, .17);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
        rgba(15, 16, 38, .62);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 24px 55px rgba(0,0,0,.22);
    backdrop-filter: blur(24px);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.tariff-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 110, 255, .42);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.17),
        0 30px 70px rgba(67, 42, 166, .25);
}

.tariff-card--accent {
    border-color: rgba(191, 102, 255, .55);
    background:
        linear-gradient(145deg, rgba(114, 74, 220, .20), rgba(255,255,255,.04)),
        rgba(16, 16, 42, .72);
    transform: translateY(-6px);
}

.tariff-card--accent:hover {
    transform: translateY(-12px);
}

.tariff-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    right: -110px;
    top: -120px;
    border-radius: 50%;
    background: rgba(126, 74, 255, .28);
    filter: blur(45px);
    pointer-events: none;
}

.tariff-card--accent .tariff-glow {
    background: rgba(220, 83, 255, .34);
}

.tariff-recommend {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 7px 13px;
    border-radius: 0 0 12px 12px;
    color: #fff;
    background: linear-gradient(110deg, #4a96ff, #b553f3);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tariff-tags {
    position: relative;
    z-index: 2;
    min-height: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.tariff-tags span {
    padding: 6px 9px;
    border: 1px solid rgba(161, 133, 255, .28);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255,255,255,.04);
    font-size: 9px;
    font-weight: 700;
}

.tariff-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: rgba(255,255,255,.08);
    font-size: 42px;
    font-weight: 800;
}

.tariff-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 29px;
    letter-spacing: -.04em;
}

.tariff-subtitle {
    min-height: 44px;
    margin: 7px 0 16px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.55;
}

.tariff-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.tariff-price small,
.tariff-price span {
    color: var(--muted);
    font-size: 11px;
}

.tariff-price strong {
    font-size: 29px;
    letter-spacing: -.04em;
}

.tariff-line {
    height: 1px;
    margin: 18px 0 16px;
    background: linear-gradient(90deg, rgba(207,168,255,.36), transparent);
}

.tariff-card h4 {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

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

.tariff-card li {
    position: relative;
    padding-left: 20px;
    color: #e9e9f5;
    font-size: 11px;
    line-height: 1.4;
}

.tariff-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: #75b7ff;
    font-weight: 800;
}

.tariff-button {
    min-height: 47px;
    margin-top: auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(178, 145, 255, .25);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, rgba(30, 151, 255, .82), rgba(154, 71, 244, .86));
    box-shadow: 0 12px 30px rgba(69, 42, 166, .22);
    font-size: 12px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tariff-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(93, 49, 199, .33);
}

/* CALCULATOR */
.calculator-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 22px) 0 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 30%, rgba(167, 68, 255, .17), transparent 31%),
        radial-gradient(circle at 8% 75%, rgba(23, 167, 255, .10), transparent 28%),
        #070815;
}

.calculator-heading {
    max-width: 820px;
    margin-bottom: 22px;
}

.calculator-heading p {
    max-width: 680px;
    margin-top: 10px;
}

.calculator-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(207, 168, 255, .20);
    border-radius: 30px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 28px 80px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.13);
    backdrop-filter: blur(26px);
}

.calculator-form {
    padding: 27px;
}

.calculator-form-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.calculator-form-head span {
    font-size: 19px;
    font-weight: 800;
}

.calculator-form-head small {
    color: var(--muted);
    font-size: 10px;
}

.calculator-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 8px;
}

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

.field > span {
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 700;
}

.field select,
.field input[type="number"] {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(207,168,255,.17);
    border-radius: 15px;
    outline: none;
    color: #fff;
    background: rgba(255,255,255,.055);
    font: inherit;
    font-size: 13px;
    transition: border-color .2s ease, background .2s ease;
}

.field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #cfa8ff 50%),
        linear-gradient(135deg, #cfa8ff 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 23px,
        calc(100% - 15px) 23px;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.field select option {
    color: #111225;
}

.field select:focus,
.field input:focus {
    border-color: rgba(146, 103, 255, .62);
    background-color: rgba(255,255,255,.08);
}

.range-row {
    min-height: 54px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 58px;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(207,168,255,.17);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
}

.range-row input[type="range"] {
    width: 100%;
    accent-color: #9b65ff;
}

.range-row output {
    min-width: 48px;
    padding: 7px 8px;
    border-radius: 10px;
    color: #fff;
    background: rgba(138,60,255,.22);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.calculator-note {
    margin-top: 22px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(79, 165, 255, .16);
    border-radius: 15px;
    color: var(--text-soft);
    background: rgba(23,167,255,.055);
    font-size: 10px;
    line-height: 1.5;
}

.calculator-note-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #17a7ff, #8a3cff);
    font-size: 11px;
    font-weight: 800;
}

.calculator-result {
    position: relative;
    padding: 27px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 5%, rgba(231, 107, 255, .26), transparent 33%),
        linear-gradient(145deg, rgba(47, 52, 133, .62), rgba(48, 18, 88, .74));
}

.calculator-result::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -190px;
    bottom: -220px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
}

.term-switch {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(7,8,21,.25);
}

.term-button {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    color: var(--text-soft);
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.term-button.is-active {
    color: #fff;
    background: linear-gradient(110deg, #279fff, #a253ef);
    box-shadow: 0 8px 20px rgba(30, 75, 192, .28);
}

.result-label {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    color: var(--text-soft);
    font-size: 11px;
}

.result-price {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.result-price strong {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.055em;
}

.result-price span {
    color: var(--text-soft);
    font-size: 12px;
}

.result-discount {
    position: relative;
    z-index: 2;
    min-height: 19px;
    margin-top: 10px;
    color: #cdb7ff;
    font-size: 10px;
}

.result-summary {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.result-summary div {
    min-height: 65px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
}

.result-summary span {
    color: var(--muted);
    font-size: 9px;
}

.result-summary strong {
    font-size: 12px;
}

.result-button {
    position: relative;
    z-index: 2;
    min-height: 54px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #239eff, #ae53ec);
    box-shadow: 0 15px 35px rgba(58, 34, 150, .34);
    font-size: 12px;
    font-weight: 800;
}

.result-button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.result-caption {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
    text-align: center;
}

@media (max-width: 1150px) {
    .services-section,
    .calculator-section {
        height: auto;
        overflow: visible;
    }

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

    .tariff-card {
        min-height: auto;
    }

    .calculator-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .services-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tariff-card {
        padding: 23px 20px;
        border-radius: 23px;
    }

    .calculator-fields {
        grid-template-columns: 1fr;
    }

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

    .calculator-form,
    .calculator-result {
        padding: 21px 18px;
    }

    .calculator-form-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .result-summary {
        grid-template-columns: 1fr;
    }
}

/* CONTACTS */
.contacts-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 22px) 0 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 28%, rgba(138, 60, 255, 0.19), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(23, 167, 255, 0.12), transparent 27%),
        #070815;
}

.contacts-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, transparent 0 53%, rgba(207, 168, 255, 0.035) 53.2% 53.4%, transparent 53.6%),
        linear-gradient(35deg, transparent 0 76%, rgba(23, 167, 255, 0.035) 76.2% 76.4%, transparent 76.6%);
}

.contacts-container {
    position: relative;
    z-index: 2;
    height: calc(100svh - var(--header-height) - 48px);
    display: grid;
    grid-template-rows: auto auto minmax(245px, 1fr) auto;
    gap: 22px;
}

.contacts-heading {
    max-width: 760px;
}

.contacts-heading h2 {
    margin: 8px 0 8px;
    font-size: clamp(48px, 4.5vw, 72px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 500;
}

.contacts-heading p {
    max-width: 710px;
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.55;
}

.contacts-top {
    display: grid;
    grid-template-columns: minmax(330px, 1fr) auto minmax(360px, 0.95fr);
    align-items: center;
    gap: 38px;
}

.contact-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.contact-phone {
    font-size: clamp(28px, 2.45vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.contact-email {
    color: #fff;
    font-size: clamp(18px, 1.35vw, 25px);
    transition: color 0.25s ease;
}

.contact-email:hover {
    color: var(--lilac);
}

.contact-messengers {
    display: flex;
    align-items: center;
    gap: 14px;
}

.messenger-button {
    position: relative;
    width: 174px;
    min-width: 174px;
    height: 66px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 204, 255, .3);
    border-radius: 999px;
    color: #fff;
    cursor: default;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(24, 174, 221, .96) 0%, rgba(78, 112, 239, .97) 48%, rgba(171, 77, 232, .95) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .3),
        inset 0 -1px 0 rgba(25, 9, 61, .24),
        0 12px 28px rgba(62, 45, 151, .23);
}

.messenger-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .16), transparent 38%, rgba(255, 255, 255, .045));
}

.messenger-button::after {
    content: "ссылка скоро";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    color: rgba(255, 255, 255, .66);
    font-size: 7px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
}

.messenger-button img {
    position: relative;
    z-index: 1;
    width: 29px;
    height: 29px;
    margin-right: 11px;
    margin-bottom: 7px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .18));
}

.messenger-button span {
    position: relative;
    z-index: 1;
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.messenger-button--telegram img {
    width: 43px;
    height: 43px;
    margin-right: 5px;
}

.messenger-button--vk img {
    width: 31px;
    height: 31px;
    margin-right: 9px;
}

.messenger-button--max img {
    width: 30px;
    height: 30px;
    margin-right: 11px;
}

.messenger-button--vk,
.messenger-button--telegram,
.messenger-button--max {
    background:
        linear-gradient(115deg, rgba(23, 176, 219, .96) 0%, rgba(77, 111, 238, .97) 50%, rgba(170, 77, 231, .95) 100%);
}

.contact-address {
    justify-self: end;
    min-width: 360px;
}

.contact-address p {
    margin: 0;
    color: #fff;
    font-size: clamp(17px, 1.35vw, 24px);
    line-height: 1.65;
}

.map-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border: 1px solid rgba(207, 168, 255, 0.24);
    border-radius: 28px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 26px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.13);
}

.map-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.2) saturate(.65) hue-rotate(220deg) brightness(.9) contrast(.9);
}

.map-tint {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(23,167,255,.08), rgba(138,60,255,.17)),
        rgba(9,10,30,.12);
    mix-blend-mode: color;
}

.map-route {
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: auto;
    transform: translateX(-50%);
    min-height: 48px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 999px;
    color: #fff;
    background: rgba(12,13,31,.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 35px rgba(0,0,0,.3);
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease;
}

.map-route:hover {
    transform: translateX(-50%) translateY(-2px);
    background: rgba(35,25,67,.9);
}

.map-route svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .contacts-section {
        height: auto;
        min-height: 100svh;
        overflow: visible;
    }

    .contacts-container {
        height: auto;
        min-height: calc(100svh - var(--header-height) - 48px);
        grid-template-rows: auto auto minmax(340px, 1fr) auto;
    }

    .contacts-top {
        grid-template-columns: 1fr 1fr;
    }

    .contact-messengers {
        justify-self: end;
    }

    .contact-address {
        grid-column: 1 / -1;
        justify-self: start;
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .hero-copy {
        padding-top: 34px;
    }

    .contacts-section {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 22px;
    }

    .contacts-container {
        gap: 20px;
    }

    .contacts-heading h2 {
        font-size: 46px;
    }

    .contacts-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-messengers {
        justify-self: start;
    }

    .contact-address {
        grid-column: auto;
    }

    .contact-address p {
        font-size: 16px;
    }

    .map-card {
        min-height: 390px;
        border-radius: 22px;
    }

    .messenger-button span {
        display: block;
    }

    .contact-messengers {
        width: 100%;
        flex-wrap: wrap;
    }

    .messenger-button {
        width: 168px;
        min-width: 168px;
        height: 64px;
    }
}

@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;
    }
}


/* MAX messenger */
.messenger-button--max {
    background: linear-gradient(135deg, rgba(70, 116, 255, .98), rgba(120, 65, 255, .96) 56%, rgba(217, 107, 255, .94));
}

.max-icon {
    stroke-width: 2.2 !important;
}

/* Exact office marker overlay */
.office-pin {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 49%;
    min-width: 166px;
    padding: 11px 14px 11px 41px;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 15px;
    color: #fff;
    background: rgba(10, 12, 31, .84);
    box-shadow: 0 15px 40px rgba(0,0,0,.38), 0 0 28px rgba(138,60,255,.18);
    backdrop-filter: blur(17px);
    transform: translate(12px, -50%);
    pointer-events: none;
}

.office-pin::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    border: 7px solid transparent;
    border-right-color: rgba(255,255,255,.23);
    transform: translateY(-50%);
}

.office-pin-dot {
    position: absolute;
    left: 13px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    box-shadow: 0 0 0 6px rgba(102,89,255,.22), 0 0 22px rgba(23,167,255,.75);
    transform: translateY(-50%);
}

.office-pin strong,
.office-pin small {
    display: block;
}

.office-pin strong {
    font-size: 12px;
}

.office-pin small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 9px;
}

/* Footer */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 2px;
    color: rgba(200,203,227,.68);
    font-size: 12px;
}

.privacy-open {
    padding: 0;
    border: 0;
    color: rgba(200,203,227,.68);
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: color .25s ease;
}

.privacy-open:hover {
    color: var(--lilac);
}

/* Privacy fullscreen modal */
body.privacy-opened {
    overflow: hidden;
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}

.privacy-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.privacy-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 86%, rgba(23,167,255,.2), transparent 30%),
        radial-gradient(circle at 88% 13%, rgba(175,65,255,.25), transparent 34%),
        rgba(4,5,15,.94);
    backdrop-filter: blur(18px);
}

.privacy-shell {
    position: relative;
    width: min(1220px, 100%);
    height: min(92svh, 940px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(207,168,255,.22);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(24,25,54,.9), rgba(8,9,24,.94));
    box-shadow: 0 45px 130px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.13);
    transform: translateY(22px) scale(.985);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

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

.privacy-decor {
    position: absolute;
    border: 1px solid rgba(174,111,255,.12);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-decor--one {
    width: 570px;
    height: 570px;
    right: -240px;
    top: -280px;
    box-shadow: 0 0 120px rgba(138,60,255,.08) inset;
}

.privacy-decor--two {
    width: 350px;
    height: 350px;
    left: -190px;
    bottom: -180px;
    border-style: dashed;
}

.privacy-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 42px 24px;
}

.privacy-header h2 {
    margin: 10px 0 0;
    font-size: clamp(31px, 3.7vw, 56px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 500;
}

.privacy-close {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.privacy-close:hover {
    transform: rotate(8deg);
    background: rgba(207,168,255,.14);
}

.privacy-close span {
    grid-area: 1/1;
    width: 20px;
    height: 1.5px;
    background: #fff;
}

.privacy-close span:first-child { transform: rotate(45deg); }
.privacy-close span:last-child { transform: rotate(-45deg); }

.privacy-progress {
    position: relative;
    z-index: 2;
    height: 1px;
    margin: 0 42px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.privacy-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
    box-shadow: 0 0 18px rgba(138,60,255,.6);
}

.privacy-content {
    position: relative;
    z-index: 2;
    overflow-y: auto;
    padding: 30px 42px 48px;
    color: var(--text-soft);
    scrollbar-width: thin;
    scrollbar-color: rgba(207,168,255,.55) rgba(255,255,255,.04);
}

.privacy-content::-webkit-scrollbar { width: 8px; }
.privacy-content::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 99px; }
.privacy-content::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), var(--violet), var(--pink)); border-radius: 99px; }

.privacy-content h3 {
    margin: 42px 0 18px;
    color: #fff;
    font-size: clamp(22px, 2vw, 31px);
    line-height: 1.25;
    letter-spacing: -.025em;
    font-weight: 600;
}

.privacy-content h3:first-of-type { margin-top: 26px; }

.privacy-content p {
    max-width: 1040px;
    margin: 0 0 13px;
    font-size: 14px;
    line-height: 1.78;
}

.policy-clause {
    padding-left: 18px;
    border-left: 1px solid rgba(207,168,255,.18);
}

.policy-list-item {
    position: relative;
    padding-left: 22px;
}

.policy-list-item::before {
    content: "";
    position: absolute;
    left: 3px;
    top: .8em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--pink));
    box-shadow: 0 0 10px rgba(138,60,255,.5);
}

.policy-highlight {
    padding: 12px 15px;
    border: 1px solid rgba(207,168,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.privacy-intro-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(23,167,255,.2);
    border-radius: 20px;
    background: linear-gradient(110deg, rgba(23,167,255,.08), rgba(138,60,255,.08));
}

.privacy-intro-card p { margin: 0; }

.privacy-shield {
    flex: 0 0 auto;
    min-width: 66px;
    padding: 10px 11px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
    box-shadow: 0 10px 30px rgba(93,67,230,.3);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 680px) {
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-bottom: 4px;
    }

    .office-pin {
        left: 45%;
        min-width: 145px;
        transform: translate(5px,-50%);
    }

    .privacy-modal { padding: 8px; }
    .privacy-shell { height: calc(100svh - 16px); border-radius: 24px; }
    .privacy-header { padding: 25px 21px 19px; }
    .privacy-close { width: 44px; height: 44px; flex-basis: 44px; }
    .privacy-progress { margin: 0 21px; }
    .privacy-content { padding: 24px 21px 38px; }
    .privacy-content p { font-size: 13px; line-height: 1.68; }
    .privacy-intro-card { align-items: flex-start; }
}


/* On the contacts screen the map gets the full width without page dots over it. */
body.contacts-active .side-dots {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(18px);
}

.side-dots {
    transition: opacity .25s ease, transform .25s ease;
}

@media (max-width: 680px) {
    .map-route {
        top: 14px;
        left: 50%;
        bottom: auto;
    }
}


/* Стиль основной полосы прокрутки сайта */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(174, 112, 255, .78) rgba(10, 11, 28, .9);
}

html::-webkit-scrollbar {
    width: 11px;
}

html::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #090a19, #11102a);
}

html::-webkit-scrollbar-thumb {
    min-height: 72px;
    border: 3px solid #0b0c1d;
    border-radius: 999px;
    background:
        linear-gradient(180deg, #2bb8ff 0%, #7866ff 48%, #d05cff 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.18),
        0 0 14px rgba(138,60,255,.35);
}

html::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, #57c8ff 0%, #927cff 48%, #e77aff 100%);
}


/* ===== UI refinement: larger typography, liquid glass controls ===== */
.brand-mark {
    width: 48px;
    height: 48px;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(63, 173, 255, .34));
}

.tariff-price strong { font-size: 36px; }
.tariff-price small, .tariff-price span { font-size: 13px; }
.tariff-card h4 { font-size: 13px; }
.tariff-card li { font-size: 14px; line-height: 1.48; padding-left: 24px; }
.tariff-card ul { gap: 12px; }
.tariff-card li::before { font-size: 15px; }

.calculator-heading p { font-size: 17px; }
.calculator-form-head span { font-size: 23px; }
.calculator-form-head small { font-size: 12px; }
.field > span { font-size: 13px; }
.calculator-note { font-size: 12px; }
.result-label { font-size: 14px; }
.result-price span { font-size: 14px; }
.result-discount { font-size: 12px; }
.result-summary span { font-size: 11px; }
.result-summary strong { font-size: 14px; }
.result-button { font-size: 14px; }
.result-caption { font-size: 10px; }

/* Native selects stay accessible but visually replaced by custom liquid dropdowns. */
.field select.liquid-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.liquid-select {
    position: relative;
    width: 100%;
}
.liquid-select__button,
.field input[type="number"],
.range-row {
    min-height: 62px;
    border: 1px solid rgba(205, 180, 255, .25);
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
        rgba(20, 21, 47, .67);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        inset 0 -1px 0 rgba(50,24,95,.16),
        0 13px 32px rgba(0,0,0,.18);
    backdrop-filter: blur(26px) saturate(145%);
    transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease, background .28s ease;
}
.liquid-select__button {
    position: relative;
    width: 100%;
    padding: 0 54px 0 20px;
    display: flex;
    align-items: center;
    border-style: solid;
    font: inherit;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
}
.liquid-select__button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.11), transparent 40%);
}
.liquid-select__chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #cfb4ff;
    border-bottom: 2px solid #cfb4ff;
    transform: translateY(-68%) rotate(45deg);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.liquid-select.is-open .liquid-select__chevron {
    transform: translateY(-25%) rotate(225deg);
}
.liquid-select__menu {
    position: absolute;
    z-index: 120;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 8px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(211, 187, 255, .28);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(39, 39, 77, .88), rgba(15, 16, 39, .91));
    box-shadow: 0 22px 65px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(30px) saturate(160%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top;
    transition: opacity .25s ease, visibility .25s ease, transform .32s cubic-bezier(.22,1,.36,1);
}
.liquid-select.is-open .liquid-select__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.liquid-select__option {
    min-height: 43px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 14px;
    color: #e8e7f5;
    background: transparent;
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}
.liquid-select__option:hover,
.liquid-select__option.is-selected {
    color: #fff;
    background: linear-gradient(110deg, rgba(41,158,255,.28), rgba(166,82,238,.31));
    transform: translateX(2px);
}

.field input[type="number"] {
    height: 62px;
    padding: 0 20px;
    outline: none;
    font: inherit;
    font-size: 16px;
}
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.field input[type="number"] { -moz-appearance: textfield; }
.field input[type="number"]:focus,
.range-row:focus-within,
.liquid-select.is-open .liquid-select__button {
    border-color: rgba(168, 117, 255, .72);
    background:
        linear-gradient(135deg, rgba(255,255,255,.14), rgba(116,72,211,.07)),
        rgba(24, 24, 52, .76);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.23),
        0 0 0 4px rgba(135,83,255,.10),
        0 17px 40px rgba(46,25,111,.24);
    transform: translateY(-1px);
}

.range-row { padding: 0 18px; }
.range-row input[type="range"] {
    appearance: none;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #26aaff 0 var(--range-progress, 10%), rgba(255,255,255,.11) var(--range-progress, 10%) 100%);
    outline: none;
}
.range-row input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 31px;
    height: 31px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,.92), rgba(255,255,255,.18) 32%, rgba(126,74,255,.78) 75%),
        rgba(255,255,255,.18);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.65), 0 7px 18px rgba(69,47,176,.46);
    backdrop-filter: blur(12px);
    cursor: grab;
    transition: transform .2s ease, box-shadow .2s ease;
}
.range-row input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.12);
    box-shadow: inset 0 1px 2px rgba(255,255,255,.72), 0 9px 24px rgba(102,53,222,.58);
}
.range-row output {
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(64,157,255,.27), rgba(170,79,239,.27));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
    font-size: 14px;
}

.term-switch {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 6px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
        rgba(10,11,29,.42);
    backdrop-filter: blur(24px) saturate(150%);
}
.term-indicator {
    position: absolute;
    z-index: 0;
    left: 6px;
    top: 6px;
    width: calc((100% - 12px) / 4);
    height: calc(100% - 12px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background:
        linear-gradient(115deg, rgba(33,157,255,.88), rgba(168,80,238,.88));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.30), 0 9px 24px rgba(58,38,154,.35);
    transform: translateX(calc(var(--term-index, 0) * 100%));
    transition: transform .48s cubic-bezier(.22,1,.36,1), filter .3s ease;
}
.term-button {
    position: relative;
    z-index: 1;
    min-height: 42px;
    font-size: 13px;
    transition: color .3s ease, transform .25s ease;
}
.term-button.is-active { background: transparent; box-shadow: none; }
.term-button:active { transform: scale(.95); }

.button,
.header-cta,
.tariff-button,
.result-button,
.messenger-button {
    overflow: hidden;
    isolation: isolate;
}
.button::before,
.header-cta::before,
.tariff-button::before,
.result-button::before,
.messenger-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,.17), transparent 43%);
}
.button,
.header-cta,
.tariff-button,
.result-button {
    position: relative;
    backdrop-filter: blur(22px) saturate(150%);
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, filter .3s ease;
}
.button:active,
.header-cta:active,
.tariff-button:active,
.result-button:active,
.messenger-button:active {
    transform: scale(.97);
}

/* Улучшенный Liquid Glass-ползунок калькулятора */
.range-row {
    position: relative;
    min-height: 72px;
    padding: 0 18px 0 20px;
    border-color: rgba(196, 177, 255, .26);
    background:
        linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.025)),
        rgba(22, 23, 49, .72);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        inset 0 -1px 0 rgba(72, 45, 138, .18),
        0 14px 32px rgba(0,0,0,.16);
    backdrop-filter: blur(26px) saturate(145%);
}

.range-row::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 34%, rgba(147,92,255,.05));
}

.range-row input[type="range"] {
    position: relative;
    z-index: 1;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 18px;
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    background:
        linear-gradient(90deg,
            #2eb9ff 0%,
            #6978ff calc(var(--range-progress, 10%) * .55),
            #bd68ff var(--range-progress, 10%),
            rgba(255,255,255,.12) var(--range-progress, 10%),
            rgba(255,255,255,.075) 100%);
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.12),
        0 0 18px rgba(98,92,255,.14);
    transition: box-shadow .25s ease, filter .25s ease;
}

.range-row input[type="range"]:hover {
    filter: brightness(1.08);
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.16),
        0 0 24px rgba(127,88,255,.24);
}

.range-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 52px;
    height: 38px;
    margin-top: 0;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    background:
        radial-gradient(circle at 31% 24%, rgba(255,255,255,.92), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.12) 58%, rgba(135,85,255,.18));
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.72),
        inset 0 -2px 5px rgba(68,44,135,.18),
        0 10px 24px rgba(58,42,145,.44),
        0 0 0 1px rgba(177,144,255,.16);
    backdrop-filter: blur(18px) saturate(170%);
    cursor: grab;
    transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease;
}

.range-row input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.06);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.82),
        inset 0 -2px 5px rgba(68,44,135,.14),
        0 13px 28px rgba(72,47,176,.52),
        0 0 0 4px rgba(160,111,255,.09);
}

.range-row input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(.97);
    box-shadow:
        inset 0 2px 6px rgba(73,49,145,.16),
        0 7px 18px rgba(72,47,176,.42),
        0 0 0 6px rgba(160,111,255,.10);
}

.range-row input[type="range"]::-moz-range-track {
    height: 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    box-shadow: inset 0 2px 5px rgba(0,0,0,.26);
}

.range-row input[type="range"]::-moz-range-progress {
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2eb9ff, #6978ff 55%, #bd68ff);
}

.range-row input[type="range"]::-moz-range-thumb {
    width: 52px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    background:
        radial-gradient(circle at 31% 24%, rgba(255,255,255,.92), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.12) 58%, rgba(135,85,255,.18));
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.72),
        0 10px 24px rgba(58,42,145,.44);
    cursor: grab;
}

.range-row output {
    position: relative;
    z-index: 1;
    min-width: 78px;
    padding: 13px 16px;
    border: 1px solid rgba(197,171,255,.32);
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(58,155,255,.28), rgba(154,81,238,.34)),
        rgba(255,255,255,.05);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.21),
        0 9px 24px rgba(65,40,145,.22);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}


/* Точечные исправления первого экрана и ползунка */
.hero-grid {
    transform: translateY(-8px);
}

.hero-copy {
    padding-top: 42px;
}

.floating-card--top {
    top: 18%;
    right: -1%;
}

/* Компактный Liquid Glass-ползунок */
.range-row {
    min-height: 64px;
    padding: 0 17px 0 18px;
}

.range-row input[type="range"] {
    height: 12px;
}

.range-row input[type="range"]::-webkit-slider-thumb {
    width: 34px;
    height: 27px;
    border-radius: 999px;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.68),
        inset 0 -2px 4px rgba(68,44,135,.15),
        0 7px 18px rgba(58,42,145,.38),
        0 0 0 1px rgba(177,144,255,.14);
}

.range-row input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.05);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.78),
        inset 0 -2px 4px rgba(68,44,135,.12),
        0 9px 21px rgba(72,47,176,.45),
        0 0 0 3px rgba(160,111,255,.08);
}

.range-row input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(.96);
}

.range-row input[type="range"]::-moz-range-track,
.range-row input[type="range"]::-moz-range-progress {
    height: 12px;
}

.range-row input[type="range"]::-moz-range-thumb {
    width: 34px;
    height: 27px;
    border-radius: 999px;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.68),
        0 7px 18px rgba(58,42,145,.38);
}

.range-row output {
    min-width: 68px;
    padding: 10px 14px;
    font-size: 16px;
}

@media (max-width: 1280px) {
    .hero-grid {
        transform: translateY(-2px);
    }

    .hero-copy {
        padding-top: 48px;
    }

    .floating-card--top {
        top: 17%;
        right: 0;
    }
}

@media (max-width: 1050px) {
    .hero-grid {
        transform: none;
    }

    .hero-copy {
        padding-top: 54px;
    }

    .floating-card--top {
        top: 12%;
        right: 1%;
    }
}

@media (max-width: 680px) {
    .hero-copy {
        padding-top: 45px;
    }

    .floating-card--top {
        top: 10%;
        right: 0;
    }

    .range-row {
        min-height: 60px;
    }
}


/* === Final layout corrections: hero, cards, slider, map === */
.hero {
    padding: calc(var(--header-height) + 8px) 0 38px;
}

.hero-grid {
    transform: translateY(-34px);
}

.hero-copy {
    padding-top: 18px;
}

.hero-visual {
    min-height: min(715px, calc(100svh - 128px));
}

.floating-card {
    min-width: 300px;
    max-width: 360px;
}

.card-icon--violet {
    color: #fff;
    background: linear-gradient(135deg, #9a58ff, #5f7bff);
    box-shadow: 0 8px 25px rgba(138, 60, 255, 0.28);
}

.floating-card--left-top,
.floating-card--left-middle,
.floating-card--left-bottom {
    left: 5%;
    right: auto;
}

.floating-card--left-top {
    top: 16%;
    animation: float 6.2s ease-in-out infinite;
}

.floating-card--left-middle {
    top: 40%;
    left: 11%;
    animation: float 5.8s ease-in-out infinite reverse;
}

.floating-card--left-bottom {
    top: 65%;
    left: 6%;
    animation: float 6.8s ease-in-out infinite;
}

.visual-caption {
    right: 4%;
    bottom: 4%;
}

@media (max-width: 1450px) {
    .hero-grid { transform: translateY(-24px); }
    .floating-card--left-top { left: 2%; }
    .floating-card--left-middle { left: 8%; }
    .floating-card--left-bottom { left: 4%; }
}

@media (max-width: 1280px) {
    .hero-grid { transform: translateY(-12px); }
    .hero-copy { padding-top: 22px; }
    .floating-card {
        min-width: 270px;
        max-width: 320px;
    }
    .floating-card--left-top { top: 14%; left: 1%; }
    .floating-card--left-middle { top: 38%; left: 7%; }
    .floating-card--left-bottom { top: 62%; left: 2%; }
}

@media (max-width: 1050px) {
    .hero-grid { transform: none; }
    .hero-copy { padding-top: 28px; }
    .floating-card--left-top { top: 12%; left: 3%; }
    .floating-card--left-middle { top: 40%; left: 7%; }
    .floating-card--left-bottom { top: 68%; left: 5%; }
}

@media (max-width: 680px) {
    .hero-copy { padding-top: 18px; }
}

.range-row {
    position: relative;
    min-height: 64px;
    padding: 0 16px 0 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 14px;
    align-items: center;
}

.range-row::before {
    content: none;
}

.range-track {
    position: relative;
}

.range-row input[type="range"] {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        #35b5ff 0%,
        #7a79ff calc(var(--range-progress, 10%) * .62),
        #bf69ff var(--range-progress, 10%),
        rgba(255,255,255,.15) var(--range-progress, 10%),
        rgba(255,255,255,.09) 100%);
    box-shadow: inset 0 2px 4px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.09);
    transition: filter .25s ease, box-shadow .25s ease, background .35s ease;
}

.range-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 24px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,.94), transparent 27%),
        linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.12) 58%, rgba(135,85,255,.18));
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.74),
        inset 0 -2px 4px rgba(68,44,135,.12),
        0 8px 18px rgba(58,42,145,.38),
        0 0 0 1px rgba(177,144,255,.12);
    backdrop-filter: blur(14px) saturate(170%);
    cursor: grab;
    transition: transform .26s cubic-bezier(.22,1,.36,1), box-shadow .26s ease, margin .26s ease;
}

.range-row input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.06);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.82),
        0 10px 22px rgba(72,47,176,.45),
        0 0 0 4px rgba(160,111,255,.08);
}

.range-row input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(.97);
}

.range-row input[type="range"]::-moz-range-track,
.range-row input[type="range"]::-moz-range-progress {
    height: 12px;
    border-radius: 999px;
}

.range-row input[type="range"]::-moz-range-track {
    background: rgba(255,255,255,.12);
}

.range-row input[type="range"]::-moz-range-progress {
    background: linear-gradient(90deg, #35b5ff, #7a79ff 60%, #bf69ff);
}

.range-row input[type="range"]::-moz-range-thumb {
    width: 30px;
    height: 24px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,.94), transparent 27%),
        linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.12) 58%, rgba(135,85,255,.18));
    box-shadow: inset 0 1px 1px rgba(255,255,255,.74), 0 8px 18px rgba(58,42,145,.38);
}

.range-value-input {
    width: 88px;
    height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(197,171,255,.32);
    border-radius: 999px;
    outline: none;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(58,155,255,.20), rgba(154,81,238,.24)),
        rgba(255,255,255,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 9px 24px rgba(65,40,145,.18);
    font: inherit;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.range-value-input:focus {
    border-color: rgba(168,117,255,.72);
    background:
        linear-gradient(135deg, rgba(74,172,255,.24), rgba(165,88,245,.30)),
        rgba(255,255,255,.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 0 0 4px rgba(135,83,255,.10), 0 10px 24px rgba(65,40,145,.22);
}

.range-value-input::-webkit-outer-spin-button,
.range-value-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-value-input[type=number] {
    -moz-appearance: textfield;
}

.office-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-card iframe,
.office-pin {
    display: none !important;
}

.map-tint {
    background: linear-gradient(135deg, rgba(23,167,255,.04), rgba(138,60,255,.10)), rgba(9,10,30,.07);
    mix-blend-mode: soft-light;
}


/* ===== Актуальная компоновка первого экрана, карточек, ползунка и карты ===== */

/* Первый экран поднят относительно нижней границы. */
.hero {
    padding-top: calc(var(--header-height) + 6px);
    padding-bottom: 28px;
}

.hero-grid {
    transform: translateY(-42px);
}

.hero-copy {
    padding-top: 20px;
}

.hero-visual {
    min-height: min(700px, calc(100svh - 128px));
}

/* Три стеклянные карточки слева от девушки — вертикальный шахматный каскад. */
.floating-card {
    min-width: 286px;
    max-width: 340px;
    right: auto;
}

.floating-card--left-top {
    top: 15%;
    left: 2%;
    right: auto;
    animation: float 6.2s ease-in-out infinite;
}

.floating-card--left-middle {
    top: 40%;
    left: 13%;
    right: auto;
    animation: float 5.8s ease-in-out infinite reverse;
}

.floating-card--left-bottom {
    top: 65%;
    left: 4%;
    right: auto;
    animation: float 6.8s ease-in-out infinite;
}

.card-icon--violet {
    color: #fff;
    background: linear-gradient(135deg, #9a58ff, #5f7bff);
    box-shadow: 0 8px 25px rgba(138, 60, 255, .28);
}

.card-icon--violet svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Плавная реакция стеклянного блока при изменении количества документов. */
.range-row {
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        transform .25s cubic-bezier(.22,1,.36,1);
}

.range-row.is-updating {
    border-color: rgba(144, 116, 255, .48);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 0 0 4px rgba(116, 87, 255, .06),
        0 16px 38px rgba(66, 42, 158, .22);
}

.range-row input[type="range"] {
    transition:
        background .24s cubic-bezier(.22,1,.36,1),
        box-shadow .25s ease,
        filter .25s ease;
}

/* Точное значение можно печатать вручную; стрелки числа скрыты. */
.range-value-input {
    width: 78px;
    min-width: 78px;
    height: 46px;
    padding: 0 10px;
    border-radius: 999px;
    appearance: textfield;
    -moz-appearance: textfield;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s cubic-bezier(.22,1,.36,1),
        background .25s ease;
}

.range-value-input::-webkit-outer-spin-button,
.range-value-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.range-value-input:focus {
    transform: translateY(-1px) scale(1.02);
}

/* В карте нет неподвижной HTML-метки. Точка создаётся через ymaps.Placemark
   по координатам здания и поэтому двигается/масштабируется вместе с картой. */
.office-pin,
.map-card iframe {
    display: none !important;
}

.office-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1450px) {
    .hero-grid {
        transform: translateY(-32px);
    }

    .floating-card--left-top {
        left: 1%;
    }

    .floating-card--left-middle {
        left: 10%;
    }

    .floating-card--left-bottom {
        left: 3%;
    }
}

@media (max-width: 1280px) {
    .hero-grid {
        transform: translateY(-20px);
    }

    .hero-copy {
        padding-top: 24px;
    }

    .floating-card {
        min-width: 258px;
        max-width: 310px;
    }

    .floating-card--left-top {
        top: 14%;
        left: 1%;
    }

    .floating-card--left-middle {
        top: 39%;
        left: 8%;
    }

    .floating-card--left-bottom {
        top: 64%;
        left: 2%;
    }
}

@media (max-width: 1050px) {
    .hero-grid {
        transform: translateY(-8px);
    }

    .hero-copy {
        padding-top: 30px;
    }

    .floating-card--left-top {
        top: 12%;
        left: 2%;
    }

    .floating-card--left-middle {
        top: 40%;
        left: 8%;
    }

    .floating-card--left-bottom {
        top: 68%;
        left: 3%;
    }
}

@media (max-width: 680px) {
    .hero-grid {
        transform: none;
    }

    .hero-copy {
        padding-top: 24px;
    }

    .floating-card {
        min-width: 220px;
        max-width: 270px;
    }

    .floating-card--left-top {
        top: 9%;
        left: 1%;
    }

    .floating-card--left-middle {
        top: 42%;
        left: 7%;
    }

    .floating-card--left-bottom {
        top: 72%;
        left: 1%;
    }

    .range-value-input {
        width: 68px;
        min-width: 68px;
        height: 42px;
        font-size: 15px;
    }
}

/* ===== Исправления ползунка, хедера, карты и производительности ===== */

/* Бейдж убран: он больше не попадает под фиксированный хедер. */
.hero .eyebrow {
    display: none;
}

.hero-grid {
    transform: translateY(-20px);
}

.hero-copy {
    padding-top: 58px;
}

.hero-copy h1 {
    margin-top: 0;
}

/* Размытие хедера плавно растворяется вниз без резкого горизонтального среза. */
.site-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    isolation: isolate;
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 -72px;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(7, 8, 21, .97) 0%,
            rgba(7, 8, 21, .88) 42%,
            rgba(7, 8, 21, .48) 68%,
            rgba(7, 8, 21, .12) 86%,
            transparent 100%
        );
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-mask-image: linear-gradient(to bottom, #000 0 62%, rgba(0,0,0,.72) 76%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0 62%, rgba(0,0,0,.72) 76%, transparent 100%);
}

/* Компактный плавный Liquid Glass-ползунок. */
.range-row {
    grid-template-columns: minmax(0, 1fr) 96px;
    min-height: 76px;
    padding: 0 14px 0 20px;
    --thumb-position: 10.35%;
}

.liquid-range-shell {
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
}

.liquid-range-shell::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 11px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #36baff 0,
            #6a77ff var(--range-progress),
            rgba(255,255,255,.14) var(--range-progress),
            rgba(255,255,255,.14) 100%
        );
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.11);
    transition: background .22s cubic-bezier(.22, 1, .36, 1);
}

.liquid-range-shell input[type="range"] {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 38px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.liquid-range-thumb {
    position: absolute;
    z-index: 2;
    left: var(--thumb-position);
    top: 50%;
    width: 38px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    pointer-events: none;
    background:
        radial-gradient(circle at 32% 25%, rgba(255,255,255,.9), rgba(255,255,255,.25) 22%, transparent 48%),
        linear-gradient(145deg, rgba(255,255,255,.35), rgba(255,255,255,.10));
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.72),
        inset 0 -4px 7px rgba(72,45,138,.17),
        0 8px 18px rgba(48,35,118,.38);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transform: translate(-50%, -50%);
    transition:
        left .18s cubic-bezier(.22, 1, .36, 1),
        width .18s ease,
        height .18s ease,
        box-shadow .2s ease;
}

.range-row:focus-within .liquid-range-thumb,
.range-row:hover .liquid-range-thumb {
    width: 42px;
    height: 32px;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.82),
        inset 0 -4px 7px rgba(72,45,138,.14),
        0 10px 23px rgba(73,48,172,.48);
}

.range-value-shell {
    position: relative;
    width: 90px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(191,164,255,.32);
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 5%, rgba(98,181,255,.22), transparent 48%),
        linear-gradient(145deg, rgba(110,91,205,.25), rgba(255,255,255,.045));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 10px 26px rgba(48,30,120,.20);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.range-value-shell:focus-within {
    transform: translateY(-1px);
    border-color: rgba(122,178,255,.75);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.27),
        0 0 0 4px rgba(112,91,255,.10),
        0 12px 30px rgba(48,30,120,.28);
}

.range-value-caption {
    position: absolute;
    top: 7px;
    color: rgba(216,220,242,.55);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.range-value-input {
    width: 100%;
    height: 100%;
    padding: 13px 8px 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.range-value-input:focus {
    transform: none;
    background: transparent;
    box-shadow: none;
}

/* Оптимизация прокрутки: тяжёлые секции рендерятся ближе к экрану. */
.services-section,
.calculator-section,
.content-preview,
.contacts-section {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.tariff-card,
.calculator-shell,
.floating-card {
    will-change: auto;
}

/* Убираем постоянную дорогостоящую анимацию орбиты во время прокрутки. */
.visual-orbit--two {
    animation-duration: 70s;
}

@media (max-width: 1280px) {
    .hero-grid {
        transform: translateY(-12px);
    }

    .hero-copy {
        padding-top: 62px;
    }
}

@media (max-width: 680px) {
    .hero-grid {
        transform: none;
    }

    .hero-copy {
        padding-top: 34px;
    }

    .range-row {
        grid-template-columns: minmax(0, 1fr) 78px;
        padding-left: 14px;
    }

    .range-value-shell {
        width: 74px;
        height: 54px;
    }

    .range-value-input {
        font-size: 18px;
    }
}


/* ===== Настройки взаимодействия с картой и футера ===== */

/* Немного увеличиваем нижний экран, чтобы футер не был прижат к карте и краю. */
.contacts-section {
    min-height: 108svh;
    padding-bottom: 38px;
}

.contacts-container {
    height: auto;
    min-height: calc(108svh - var(--header-height) - 60px);
    grid-template-rows: auto auto minmax(320px, 1fr) auto;
    gap: 26px;
}

.map-card {
    min-height: 320px;
}

/* Больше воздуха вокруг нижней правовой строки. */
.site-footer {
    min-height: 54px;
    padding: 11px 2px 7px;
    margin-top: 2px;
    align-items: center;
}

/* Скрываем рекламную ссылку «Создать свою карту», не затрагивая
   обязательный копирайт и условия использования Яндекс.Карт. */
.office-map [class*="gototech"],
.office-map [class*="gotoymaps"],
.office-map a[href*="constructor"],
.office-map a[href*="map-constructor"] {
    display: none !important;
}

/* При наведении подчёркиваем, что колесо сейчас управляет картой. */
.map-card::after {
    content: "Колесо мыши — масштаб карты";
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 5;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: rgba(255,255,255,.72);
    background: rgba(10,11,29,.66);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 9px;
    letter-spacing: .04em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
}

.map-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .contacts-section {
        min-height: auto;
    }

    .contacts-container {
        min-height: calc(100svh - var(--header-height) - 36px);
        grid-template-rows: auto auto minmax(380px, 1fr) auto;
    }

    .map-card {
        min-height: 380px;
    }
}

@media (max-width: 680px) {
    .contacts-section {
        padding-bottom: 28px;
    }

    .contacts-container {
        gap: 22px;
    }

    .site-footer {
        min-height: 66px;
        padding-top: 14px;
        padding-bottom: 10px;
    }

    .map-card::after {
        display: none;
    }
}


/* ===== Выравнивание информационных экранов и футера ===== */

/* На экранах «Почему мы» и «Как работаем» содержимое визуально центрируется
   с учётом фиксированного хедера, а не относительно самого верха окна. */
#benefits.content-preview,
#process.content-preview {
    padding-top: var(--header-height);
    padding-bottom: 0;
}

#benefits .section-heading,
#process .section-heading {
    transform: translateY(28px);
}

/* Правовая строка поднята выше и получила свободное пространство снизу. */
.contacts-section {
    padding-bottom: 54px;
}

.site-footer {
    position: relative;
    z-index: 4;
    min-height: 48px;
    margin-top: -8px;
    padding: 4px 2px 18px;
    transform: translateY(-14px);
}

@media (max-width: 1100px) {
    #benefits .section-heading,
    #process .section-heading {
        transform: translateY(20px);
    }

    .site-footer {
        margin-top: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 680px) {
    #benefits.content-preview,
    #process.content-preview {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 24px;
    }

    #benefits .section-heading,
    #process .section-heading {
        transform: none;
    }

    .site-footer {
        padding-bottom: 16px;
        transform: translateY(-6px);
    }
}


/* ===== Раздел «Почему мы» ===== */
.benefits-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 20px) 0 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(23, 167, 255, .13), transparent 27%),
        radial-gradient(circle at 88% 72%, rgba(202, 77, 255, .15), transparent 30%),
        linear-gradient(180deg, #080918 0%, #09091b 54%, #070815 100%);
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.benefits-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(circle at center, #000, transparent 76%);
    mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.benefits-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.benefits-decoration--one {
    width: 520px;
    height: 520px;
    top: 5%;
    right: -270px;
    border: 1px solid rgba(176, 108, 255, .16);
    box-shadow:
        0 0 0 75px rgba(139, 72, 255, .025),
        0 0 0 150px rgba(77, 125, 255, .018);
}

.benefits-decoration--two {
    width: 310px;
    height: 310px;
    left: -170px;
    bottom: -130px;
    border: 1px solid rgba(62, 178, 255, .14);
    box-shadow:
        0 0 0 54px rgba(40, 163, 255, .025),
        0 0 0 108px rgba(40, 163, 255, .014);
}

.benefits-container {
    position: relative;
    z-index: 2;
}

.benefits-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    align-items: end;
    gap: 54px;
    margin-bottom: 22px;
}

.benefits-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(39px, 4vw, 64px);
    line-height: 1.02;
    letter-spacing: -.052em;
    font-weight: 600;
}

.benefits-heading p {
    max-width: 610px;
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(410px, .92fr) minmax(620px, 1.08fr);
    gap: 18px;
}

.benefit-dashboard,
.benefit-card,
.benefits-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(207, 168, 255, .18);
    background:
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
        rgba(14, 15, 36, .72);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 24px 60px rgba(0,0,0,.24);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.benefit-dashboard {
    min-height: 500px;
    padding: 25px;
    border-radius: 29px;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 86% 12%, rgba(91, 112, 255, .20), transparent 31%),
        linear-gradient(145deg, rgba(42, 61, 127, .22), rgba(72, 31, 106, .16)),
        rgba(12, 14, 34, .82);
}

.benefit-dashboard::before,
.benefit-card::before,
.benefits-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,.09), transparent 34%, transparent 68%, rgba(176,113,255,.05));
}

.benefit-card-shine {
    position: absolute;
    z-index: 1;
    top: -120%;
    left: -40%;
    width: 48%;
    height: 330%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
    transform: rotate(20deg);
    transition: left .75s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}

.benefit-dashboard:hover .benefit-card-shine,
.benefit-card:hover .benefit-card-shine {
    left: 112%;
    opacity: 1;
}

.dashboard-orbit {
    position: absolute;
    right: -120px;
    bottom: -150px;
    border: 1px solid rgba(150, 112, 255, .13);
    border-radius: 50%;
    pointer-events: none;
}

.dashboard-orbit--one {
    width: 390px;
    height: 390px;
}

.dashboard-orbit--two {
    width: 270px;
    height: 270px;
    right: -45px;
    bottom: -85px;
    border-style: dashed;
}

.dashboard-topline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-badge,
.dashboard-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dashboard-badge {
    padding: 8px 11px;
    color: #dfe7ff;
    border: 1px solid rgba(119, 170, 255, .18);
    background: rgba(56, 119, 255, .10);
}

.dashboard-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34b9ff;
    box-shadow: 0 0 13px rgba(52, 185, 255, .86);
}

.dashboard-live {
    color: rgba(223, 226, 247, .64);
}

.dashboard-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #67e7b0;
    box-shadow: 0 0 12px rgba(103, 231, 176, .75);
}

.dashboard-copy {
    position: relative;
    z-index: 2;
    margin-top: 25px;
}

.dashboard-kicker {
    color: #9da6ca;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.dashboard-copy h3 {
    max-width: 520px;
    margin: 8px 0 11px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.14;
    letter-spacing: -.036em;
}

.dashboard-copy p {
    max-width: 570px;
    margin: 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.62;
}

.dashboard-panel {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    background: rgba(5, 7, 23, .34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.dashboard-row {
    min-height: 58px;
    padding: 8px 9px;
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,.065);
}

.dashboard-row-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, rgba(32, 166, 255, .88), rgba(87, 92, 242, .88));
    box-shadow: 0 8px 20px rgba(31, 112, 221, .18);
}

.dashboard-row-icon--check {
    background: linear-gradient(135deg, rgba(36, 190, 166, .92), rgba(47, 135, 255, .9));
}

.dashboard-row-icon--violet {
    background: linear-gradient(135deg, rgba(119, 82, 255, .92), rgba(200, 76, 238, .9));
}

.dashboard-row-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dashboard-row-copy {
    min-width: 0;
}

.dashboard-row-copy span,
.dashboard-row-copy strong {
    display: block;
}

.dashboard-row-copy span {
    color: #8f97b9;
    font-size: 8px;
}

.dashboard-row-copy strong {
    margin-top: 3px;
    font-size: 11px;
}

.status-capsule {
    margin: 0;
    padding: 7px 9px;
    border: 1px solid rgba(112, 164, 255, .14);
    border-radius: 999px;
    color: #b9caff;
    background: rgba(73, 117, 222, .10);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.status-capsule--success {
    color: #9de8cf;
    border-color: rgba(92, 220, 175, .15);
    background: rgba(48, 173, 136, .10);
}

.status-capsule--violet {
    color: #d5b8ff;
    border-color: rgba(177, 118, 255, .16);
    background: rgba(140, 73, 218, .11);
}

.dashboard-progress {
    padding: 13px 10px 8px;
}

.dashboard-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.dashboard-progress-head span {
    color: var(--text-soft);
    font-size: 9px;
}

.dashboard-progress-head strong {
    color: #fff;
    font-size: 12px;
}

.dashboard-progress-track {
    height: 7px;
    margin-top: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    box-shadow: inset 0 2px 4px rgba(0,0,0,.28);
}

.dashboard-progress-track span {
    display: block;
    width: 96%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #28b5ff, #726bff 56%, #c755ee);
    box-shadow: 0 0 17px rgba(110, 91, 255, .46);
    transform-origin: left center;
}

.dashboard-progress small {
    display: block;
    margin-top: 7px;
    color: #777f9f;
    font-size: 7px;
}

.benefits-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.benefit-card {
    min-height: 241px;
    padding: 20px;
    border-radius: 24px;
    transition:
        transform .32s cubic-bezier(.22,1,.36,1),
        border-color .28s ease,
        box-shadow .28s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(175, 131, 255, .39);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.17),
        0 28px 66px rgba(61, 40, 143, .25);
}

.benefit-card--blue {
    background:
        radial-gradient(circle at 85% 10%, rgba(41, 170, 255, .18), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(13, 16, 38, .72);
}

.benefit-card--violet {
    background:
        radial-gradient(circle at 85% 10%, rgba(139, 84, 255, .21), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(15, 14, 40, .72);
}

.benefit-card--pink {
    background:
        radial-gradient(circle at 86% 7%, rgba(218, 91, 255, .17), transparent 39%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(17, 14, 39, .72);
}

.benefit-card--mixed {
    background:
        radial-gradient(circle at 84% 8%, rgba(60, 176, 255, .15), transparent 28%),
        radial-gradient(circle at 94% 24%, rgba(206, 79, 255, .14), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(14, 15, 38, .72);
}

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(145deg, rgba(61, 153, 255, .28), rgba(137, 76, 236, .22));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 24px rgba(49, 47, 141, .17);
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-number {
    position: absolute;
    z-index: 1;
    right: 17px;
    top: 13px;
    color: rgba(255,255,255,.08);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.benefit-label {
    position: absolute;
    top: 21px;
    right: 19px;
    color: rgba(205, 198, 236, .58);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.benefit-card h3 {
    position: relative;
    z-index: 2;
    margin: 15px 0 7px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.benefit-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--text-soft);
    font-size: 10px;
    line-height: 1.55;
}

.benefit-mini-status {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 17px;
    min-height: 32px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(103, 186, 255, .12);
    border-radius: 11px;
    color: #aeb8dc;
    background: rgba(43, 111, 218, .07);
    font-size: 7px;
}

.benefit-mini-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3fc4ff;
    box-shadow: 0 0 10px rgba(63, 196, 255, .78);
}

.benefit-card blockquote {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 17px;
    margin: 0;
    padding: 10px 12px;
    border-left: 2px solid #9c67ff;
    border-radius: 0 10px 10px 0;
    color: #d5d0e9;
    background: rgba(116, 69, 212, .07);
    font-size: 8px;
    line-height: 1.4;
}

.benefit-person {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-avatar {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    flex: 0 0 41px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2da9ff, #8a5eff 58%, #d15cf1);
    box-shadow: 0 8px 22px rgba(106, 71, 222, .28);
    font-size: 14px;
    font-weight: 800;
}

.benefit-person strong,
.benefit-person small {
    display: block;
}

.benefit-person strong {
    font-size: 10px;
}

.benefit-person small {
    margin-top: 3px;
    color: #8f97b8;
    font-size: 7px;
}

.benefit-response {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 11px;
    border-top: 1px solid rgba(255,255,255,.075);
}

.benefit-response span {
    color: #8e96b5;
    font-size: 7px;
}

.benefit-response strong {
    color: #d5b9ff;
    font-size: 10px;
}

.benefit-tags {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.benefit-tags span {
    padding: 6px 8px;
    border: 1px solid rgba(148, 128, 255, .15);
    border-radius: 999px;
    color: #b8c0df;
    background: rgba(255,255,255,.035);
    font-size: 7px;
}

.benefits-cta {
    min-height: 62px;
    margin-top: 17px;
    padding: 9px 10px 9px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 85% 50%, rgba(151, 80, 255, .16), transparent 28%),
        linear-gradient(125deg, rgba(31, 111, 218, .10), rgba(140, 60, 205, .10)),
        rgba(255,255,255,.045);
}

.benefits-cta div {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.benefits-cta span {
    color: #8f98ba;
    font-size: 9px;
}

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

.benefits-cta a {
    position: relative;
    z-index: 2;
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #269fff, #765fff 53%, #bd52e9);
    box-shadow: 0 12px 28px rgba(76, 47, 179, .25), inset 0 1px 0 rgba(255,255,255,.24);
    font-size: 10px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefits-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(92, 51, 199, .34), inset 0 1px 0 rgba(255,255,255,.28);
}

.benefits-cta svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Появление карточек при входе в секцию. */
.benefit-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity .62s ease,
        transform .68s cubic-bezier(.22,1,.36,1);
}

.benefits-section.is-visible .benefit-reveal {
    opacity: 1;
    transform: translateY(0);
}

.benefits-section.is-visible .benefit-dashboard {
    transition-delay: .03s;
}

.benefits-section.is-visible .benefit-card:nth-child(1) {
    transition-delay: .08s;
}

.benefits-section.is-visible .benefit-card:nth-child(2) {
    transition-delay: .13s;
}

.benefits-section.is-visible .benefit-card:nth-child(3) {
    transition-delay: .18s;
}

.benefits-section.is-visible .benefit-card:nth-child(4) {
    transition-delay: .23s;
}

.benefits-section.is-visible .benefits-cta {
    transition-delay: .28s;
}

.benefits-section.is-visible .dashboard-progress-track span {
    animation: benefitsProgress 1.05s .35s both cubic-bezier(.22,1,.36,1);
}

@keyframes benefitsProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 1280px) {
    .benefits-section {
        padding-top: calc(var(--header-height) + 16px);
    }

    .benefits-heading {
        margin-bottom: 18px;
    }

    .benefits-layout {
        grid-template-columns: minmax(380px, .9fr) minmax(560px, 1.1fr);
        gap: 14px;
    }

    .benefits-cards {
        gap: 14px;
    }

    .benefit-dashboard {
        min-height: 480px;
        padding: 21px;
    }

    .benefit-card {
        min-height: 233px;
        padding: 18px;
    }

    .benefit-mini-status,
    .benefit-card blockquote,
    .benefit-response,
    .benefit-tags {
        left: 18px;
        right: 18px;
    }
}

@media (max-width: 1050px) {
    .benefits-section {
        height: auto;
        min-height: 100svh;
        overflow: visible;
        padding-bottom: 50px;
    }

    .benefits-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .benefit-dashboard {
        min-height: auto;
    }

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

@media (max-width: 680px) {
    .benefits-section {
        padding-top: calc(var(--header-height) + 32px);
    }

    .benefits-heading h2 {
        font-size: 42px;
    }

    .benefits-heading p {
        font-size: 13px;
    }

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

    .benefit-dashboard {
        padding: 18px;
        border-radius: 24px;
    }

    .dashboard-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-row {
        grid-template-columns: 35px minmax(0, 1fr);
    }

    .status-capsule {
        display: none;
    }

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

    .benefits-cta {
        padding: 16px;
        align-items: stretch;
        flex-direction: column;
    }

    .benefits-cta div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .benefits-cta a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefit-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .benefits-section.is-visible .dashboard-progress-track span {
        animation: none;
    }
}


/* ===== Крупный текст и оптимизация анимаций ===== */

/* Более читаемая типографика раздела «Почему мы». */
.benefits-heading p {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.68;
}

.dashboard-badge,
.dashboard-live {
    font-size: 10px;
}

.dashboard-kicker {
    font-size: 10px;
}

.dashboard-copy h3 {
    max-width: 550px;
    font-size: clamp(27px, 2.15vw, 35px);
    line-height: 1.12;
}

.dashboard-copy p {
    max-width: 610px;
    font-size: 14px;
    line-height: 1.62;
}

.dashboard-row {
    min-height: 65px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 12px;
}

.dashboard-row-icon {
    width: 38px;
    height: 38px;
}

.dashboard-row-copy span {
    font-size: 10px;
}

.dashboard-row-copy strong {
    margin-top: 4px;
    font-size: 13px;
}

.status-capsule {
    padding: 8px 10px;
    font-size: 9px;
}

.dashboard-progress-head span {
    font-size: 11px;
}

.dashboard-progress-head strong {
    font-size: 14px;
}

.dashboard-progress small {
    margin-top: 8px;
    font-size: 9px;
}

.benefit-dashboard {
    min-height: 530px;
    padding: 27px;
}

.benefit-card {
    min-height: 256px;
    padding: 22px;
}

.benefit-icon {
    width: 45px;
    height: 45px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-number {
    font-size: 48px;
}

.benefit-label {
    top: 23px;
    right: 21px;
    font-size: 9px;
}

.benefit-card h3 {
    margin-top: 17px;
    font-size: 22px;
    line-height: 1.16;
}

.benefit-card p {
    font-size: 13px;
    line-height: 1.58;
}

.benefit-mini-status {
    left: 22px;
    right: 22px;
    bottom: 18px;
    min-height: 37px;
    padding: 0 12px;
    font-size: 9px;
}

.benefit-card blockquote {
    left: 22px;
    right: 22px;
    bottom: 18px;
    padding: 11px 13px;
    font-size: 10px;
    line-height: 1.48;
}

.benefit-avatar {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    font-size: 16px;
}

.benefit-person strong {
    font-size: 12px;
}

.benefit-person small {
    margin-top: 4px;
    font-size: 9px;
}

.benefit-response {
    left: 22px;
    right: 22px;
    bottom: 18px;
}

.benefit-response span {
    font-size: 9px;
}

.benefit-response strong {
    font-size: 12px;
}

.benefit-tags {
    left: 22px;
    right: 22px;
    bottom: 18px;
    gap: 7px;
}

.benefit-tags span {
    padding: 7px 9px;
    font-size: 9px;
}

.benefits-cta {
    min-height: 70px;
    padding: 11px 12px 11px 23px;
}

.benefits-cta span {
    font-size: 11px;
}

.benefits-cta strong {
    font-size: 17px;
}

.benefits-cta a {
    min-height: 48px;
    padding: 0 21px;
    font-size: 12px;
}

/*
 * Производительность:
 * 1. Постоянные анимации работают только у видимой секции.
 * 2. Во время активной прокрутки они временно ставятся на паузу.
 * 3. Блик карточек двигается через transform, а не через left.
 * 4. Уменьшено дорогостоящее размытие стеклянных карточек.
 */
.visual-orbit--two,
.floating-card,
.scroll-hint i::after {
    animation-play-state: paused;
}

.hero.is-animation-active .visual-orbit--two,
.hero.is-animation-active .floating-card,
.hero.is-animation-active .scroll-hint i::after {
    animation-play-state: running;
}

body.is-scrolling .visual-orbit--two,
body.is-scrolling .floating-card,
body.is-scrolling .scroll-hint i::after,
body.is-scrolling .dashboard-progress-track span {
    animation-play-state: paused !important;
}

body.is-page-hidden * {
    animation-play-state: paused !important;
}

.benefit-dashboard,
.benefit-card,
.benefits-cta {
    -webkit-backdrop-filter: blur(14px) saturate(122%);
    backdrop-filter: blur(14px) saturate(122%);
    contain: layout paint style;
}

.benefit-card {
    transition:
        transform .3s cubic-bezier(.22,1,.36,1),
        border-color .22s ease;
}

.benefit-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.17),
        0 24px 58px rgba(61, 40, 143, .23);
}

.benefit-card-shine {
    left: -55%;
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(20deg);
    transition:
        transform .62s cubic-bezier(.22,1,.36,1),
        opacity .2s ease;
}

.benefit-dashboard:hover .benefit-card-shine,
.benefit-card:hover .benefit-card-shine {
    left: -55%;
    opacity: 1;
    transform: translate3d(345%, 0, 0) rotate(20deg);
}

.benefit-reveal {
    transition:
        opacity .5s ease,
        transform .56s cubic-bezier(.22,1,.36,1);
}

.benefits-section.is-visible .benefit-dashboard,
.benefits-section.is-visible .benefit-card,
.benefits-section.is-visible .benefits-cta {
    will-change: auto;
}

/* На устройствах без hover не запускаем проходящий блик. */
@media (hover: none) {
    .benefit-card-shine {
        display: none;
    }

    .benefit-card:hover {
        transform: none;
    }
}

/* На более слабых устройствах сохраняем стиль, но убираем самые тяжёлые эффекты. */
body.reduced-effects .ambient,
body.reduced-effects .benefits-decoration {
    filter: none;
}

body.reduced-effects .visual-orbit--two,
body.reduced-effects .floating-card {
    animation: none !important;
}

body.reduced-effects .benefit-dashboard,
body.reduced-effects .benefit-card,
body.reduced-effects .benefits-cta,
body.reduced-effects .floating-card {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

body.reduced-effects .benefit-card-shine {
    display: none;
}

@media (max-width: 1280px) {
    .benefits-heading p {
        font-size: 15px;
    }

    .benefit-dashboard {
        min-height: 515px;
        padding: 23px;
    }

    .benefit-card {
        min-height: 250px;
        padding: 20px;
    }

    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .benefit-mini-status,
    .benefit-card blockquote,
    .benefit-response,
    .benefit-tags {
        left: 20px;
        right: 20px;
    }
}

@media (max-width: 1050px) {
    .benefit-dashboard {
        min-height: auto;
    }

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

@media (max-width: 680px) {
    .benefits-heading p {
        font-size: 15px;
    }

    .dashboard-copy h3 {
        font-size: 27px;
    }

    .dashboard-copy p {
        font-size: 13px;
    }

    .dashboard-row-copy span {
        font-size: 9px;
    }

    .dashboard-row-copy strong {
        font-size: 12px;
    }

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

    .benefit-card h3 {
        font-size: 21px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .benefits-cta strong {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .visual-orbit--two,
    .floating-card,
    .scroll-hint i::after,
    .benefit-card-shine {
        animation: none !important;
        transition: none !important;
    }
}


/* ===== Увеличенный мелкий текст и сворачиваемая навигация ===== */

/* Увеличиваем именно второстепенные надписи в нижней части карточек. */
.dashboard-row-copy span {
    font-size: 11px;
}

.status-capsule {
    font-size: 10px;
}

.dashboard-progress-head span {
    font-size: 12px;
}

.dashboard-progress small {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.45;
}

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

.benefit-label {
    font-size: 10px;
}

.benefit-mini-status {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
    line-height: 1.35;
}

.benefit-card blockquote {
    padding: 13px 14px;
    font-size: 12px;
    line-height: 1.5;
}

.benefit-person small {
    font-size: 11px;
    line-height: 1.35;
}

.benefit-response {
    padding-top: 13px;
}

.benefit-response span {
    font-size: 11px;
}

.benefit-response strong {
    font-size: 14px;
}

.benefit-tags {
    gap: 8px;
}

.benefit-tags span {
    padding: 8px 11px;
    font-size: 10.5px;
}

/*
 * Навигация больше не лежит постоянно поверх контента.
 * В обычном состоянии видна только небольшая стеклянная стрелка.
 * При наведении слева от неё раскрывается компактная панель.
 */
.section-rail {
    position: fixed;
    z-index: 47;
    top: 50%;
    right: 13px;
    width: 48px;
    height: 78px;
    transform: translateY(-50%);
}

.section-rail-toggle {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 0;
    width: 46px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(207, 168, 255, .26);
    border-radius: 22px;
    color: #d9c7ff;
    background:
        radial-gradient(circle at 25% 18%, rgba(64, 179, 255, .19), transparent 46%),
        linear-gradient(145deg, rgba(88, 66, 174, .26), rgba(255,255,255,.045)),
        rgba(10, 11, 29, .76);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 12px 34px rgba(31, 21, 83, .32);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transform: translateY(-50%);
    cursor: pointer;
    transition:
        color .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.section-rail-toggle::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    top: 11px;
    border-radius: 50%;
    background: #b77aff;
    box-shadow: 0 0 13px rgba(183, 122, 255, .82);
}

.section-rail-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.section-rail-panel {
    position: absolute;
    top: 50%;
    right: 57px;
    width: 224px;
    padding: 15px;
    border: 1px solid rgba(207, 168, 255, .22);
    border-radius: 23px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 95% 4%, rgba(177, 87, 255, .17), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
        rgba(9, 10, 27, .88);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 24px 58px rgba(0,0,0,.34);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    transform: translate3d(18px, -50%, 0) scale(.97);
    transform-origin: right center;
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .32s cubic-bezier(.22, 1, .36, 1);
}

.section-rail:hover .section-rail-panel,
.section-rail:focus-within .section-rail-panel,
.section-rail.is-open .section-rail-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, -50%, 0) scale(1);
}

.section-rail:hover .section-rail-toggle,
.section-rail:focus-within .section-rail-toggle,
.section-rail.is-open .section-rail-toggle {
    color: #fff;
    border-color: rgba(194, 145, 255, .48);
    background:
        radial-gradient(circle at 28% 16%, rgba(64, 179, 255, .27), transparent 46%),
        linear-gradient(145deg, rgba(105, 75, 206, .38), rgba(255,255,255,.065)),
        rgba(12, 12, 32, .88);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.23),
        0 15px 38px rgba(55, 31, 134, .38);
}

.section-rail:hover .section-rail-toggle svg,
.section-rail:focus-within .section-rail-toggle svg,
.section-rail.is-open .section-rail-toggle svg {
    transform: rotate(180deg);
}

.section-rail-heading {
    padding: 3px 7px 12px;
    border-bottom: 1px solid rgba(255,255,255,.075);
}

.section-rail-heading span,
.section-rail-heading small {
    display: block;
}

.section-rail-heading span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.section-rail-heading small {
    margin-top: 3px;
    color: #8189a9;
    font-size: 9px;
}

.section-rail .side-dot {
    position: relative;
    width: 100%;
    height: 42px;
    margin-top: 5px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #aeb5d1;
    background: transparent;
    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease,
        transform .22s cubic-bezier(.22,1,.36,1);
}

.section-rail .side-dot::before {
    display: none;
}

.section-rail .side-dot i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    box-shadow: none;
    transition:
        background .2s ease,
        box-shadow .2s ease,
        transform .22s ease;
}

.section-rail .side-dot span {
    position: static;
    right: auto;
    opacity: 1;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    transition: none;
}

.section-rail .side-dot b {
    color: #6f7694;
    font-size: 9px;
    font-weight: 800;
}

.section-rail .side-dot:hover {
    color: #fff;
    border-color: rgba(143, 119, 255, .17);
    background: rgba(255,255,255,.045);
    transform: translateX(-2px);
}

.section-rail .side-dot:hover i {
    background: #63b8ff;
    box-shadow: 0 0 12px rgba(99, 184, 255, .68);
    transform: scale(1.18);
}

.section-rail .side-dot.is-active {
    color: #fff;
    border-color: rgba(172, 128, 255, .28);
    background:
        linear-gradient(100deg, rgba(47, 149, 255, .13), rgba(153, 78, 239, .14));
}

.section-rail .side-dot.is-active i {
    width: 9px;
    height: 9px;
    margin-left: -1px;
    background: linear-gradient(135deg, #37b9ff, #bd62ef);
    box-shadow: 0 0 15px rgba(157, 91, 255, .78);
}

.section-rail .side-dot.is-active b {
    color: #c7a9ff;
}

/* На экране карты панель полностью скрыта, чтобы ничего не перекрывало. */
body.contacts-active .section-rail {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) translateX(16px);
}

.section-rail {
    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .25s ease;
}

/* На планшетах и телефонах достаточно меню в хедере. */
@media (max-width: 1050px) {
    .section-rail {
        display: none;
    }
}

@media (max-width: 680px) {
    .benefit-mini-status {
        font-size: 10.5px;
    }

    .benefit-card blockquote {
        font-size: 11.5px;
    }

    .benefit-response span {
        font-size: 10.5px;
    }

    .benefit-tags span {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-rail-panel,
    .section-rail-toggle svg,
    .section-rail .side-dot {
        transition: none;
    }
}


/* ===== Единые нижние статусы карточек преимуществ ===== */

/* Три нижних сообщения теперь имеют одинаковую стеклянную конструкцию. */
.benefit-mini-status {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 18px;
    min-height: 48px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(93, 164, 255, .18);
    border-radius: 15px;
    color: #c7cee7;
    background:
        linear-gradient(120deg, rgba(37, 111, 218, .10), rgba(77, 84, 177, .07)),
        rgba(255,255,255,.025);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.07),
        0 10px 24px rgba(8, 12, 37, .12);
    font-size: 12px;
    line-height: 1.38;
}

.benefit-mini-status i {
    width: 8px;
    height: 8px;
    display: block;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #38bdff;
    box-shadow:
        0 0 0 4px rgba(56, 189, 255, .07),
        0 0 14px rgba(56, 189, 255, .84);
}

.benefit-mini-status span {
    min-width: 0;
    color: inherit;
    font-size: inherit;
    font-weight: 500;
}

.benefit-mini-status strong {
    margin-left: auto;
    color: #dcbcff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.benefit-mini-status--violet {
    border-color: rgba(164, 107, 255, .21);
    background:
        linear-gradient(120deg, rgba(118, 66, 220, .11), rgba(178, 71, 229, .08)),
        rgba(255,255,255,.025);
}

.benefit-mini-status--violet i {
    background: #a96cff;
    box-shadow:
        0 0 0 4px rgba(169, 108, 255, .07),
        0 0 14px rgba(169, 108, 255, .78);
}

.benefit-mini-status--pink {
    border-color: rgba(207, 103, 255, .20);
    background:
        linear-gradient(120deg, rgba(137, 76, 218, .11), rgba(218, 83, 238, .08)),
        rgba(255,255,255,.025);
}

.benefit-mini-status--pink i {
    background: #d269ff;
    box-shadow:
        0 0 0 4px rgba(210, 105, 255, .07),
        0 0 14px rgba(210, 105, 255, .78);
}

/* Старые отдельные варианты больше не используются. */
.benefit-card blockquote,
.benefit-response {
    display: none;
}

@media (max-width: 1280px) {
    .benefit-mini-status {
        left: 20px;
        right: 20px;
        min-height: 46px;
        padding: 9px 12px;
        font-size: 11.5px;
    }

    .benefit-mini-status strong {
        font-size: 12.5px;
    }
}

@media (max-width: 680px) {
    .benefit-mini-status {
        position: static;
        margin-top: 18px;
        min-height: 48px;
    }

    .benefit-mini-status--split {
        flex-wrap: wrap;
    }

    .benefit-mini-status--split strong {
        width: 100%;
        margin-left: 19px;
    }
}


/* ===== Статичный раздел «Как работаем» ===== */
.process-section {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 18px) 0 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 24%, rgba(32, 164, 255, .12), transparent 29%),
        radial-gradient(circle at 88% 72%, rgba(192, 77, 255, .14), transparent 31%),
        linear-gradient(180deg, #080918, #09091b 55%, #070815);
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.process-grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(circle at center, #000, transparent 78%);
    mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.process-background {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.process-background--one {
    width: 470px;
    height: 470px;
    top: 4%;
    right: -270px;
    border: 1px solid rgba(173, 106, 255, .13);
    box-shadow:
        0 0 0 68px rgba(146, 73, 255, .02),
        0 0 0 136px rgba(72, 127, 255, .014);
}

.process-background--two {
    width: 285px;
    height: 285px;
    left: -170px;
    bottom: -120px;
    border: 1px solid rgba(49, 182, 255, .12);
    box-shadow:
        0 0 0 48px rgba(49, 182, 255, .018),
        0 0 0 96px rgba(49, 182, 255, .01);
}

.process-container {
    position: relative;
    z-index: 2;
}

.process-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
    align-items: end;
    gap: 54px;
}

.process-heading h2 {
    max-width: 850px;
    margin: 8px 0 0;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1.03;
    letter-spacing: -.052em;
    font-weight: 600;
}

.process-heading h2 span {
    display: block;
}

.process-heading p {
    max-width: 620px;
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.68;
}

.process-route {
    position: relative;
    min-height: 395px;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.process-track {
    position: absolute;
    z-index: 1;
    left: 7%;
    right: 7%;
    top: 50%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    box-shadow:
        inset 0 1px 3px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,.025);
    transform: translateY(-50%);
}

.process-track span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2eb9ff, #716fff 55%, #c55aee);
    box-shadow:
        0 0 18px rgba(92, 97, 255, .50),
        0 0 32px rgba(184, 83, 239, .20);
    transform-origin: left center;
}

.process-card {
    position: relative;
    z-index: 3;
    min-height: 315px;
    padding: 22px;
    overflow: visible;
    border: 1px solid rgba(207, 168, 255, .18);
    border-radius: 24px;
    background:
        radial-gradient(circle at 95% 0%, rgba(119, 83, 255, .16), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.078), rgba(255,255,255,.026)),
        rgba(13, 15, 36, .82);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 20px 48px rgba(0,0,0,.23);
    -webkit-backdrop-filter: blur(13px) saturate(120%);
    backdrop-filter: blur(13px) saturate(120%);
    contain: layout paint style;
    transition:
        transform .28s cubic-bezier(.22,1,.36,1),
        border-color .24s ease,
        box-shadow .24s ease;
}

.process-card--high {
    transform: translateY(-18px);
}

.process-card--low {
    transform: translateY(18px);
}

.process-card:hover {
    border-color: rgba(173, 128, 255, .38);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 25px 58px rgba(54, 34, 130, .28);
}

.process-card--high:hover {
    transform: translateY(-23px);
}

.process-card--low:hover {
    transform: translateY(13px);
}

.process-card-number {
    position: absolute;
    top: 13px;
    right: 18px;
    color: rgba(255,255,255,.075);
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.06em;
}

.process-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
}

.process-card-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex: 0 0 43px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(39, 181, 255, .92), rgba(82, 95, 241, .90));
    box-shadow: 0 9px 23px rgba(37, 114, 221, .22);
}

.process-card-icon--violet {
    background: linear-gradient(135deg, rgba(106, 91, 255, .92), rgba(167, 75, 238, .90));
}

.process-card-icon--pink {
    background: linear-gradient(135deg, rgba(143, 85, 255, .92), rgba(218, 77, 231, .90));
}

.process-card-icon--mixed {
    background: linear-gradient(135deg, rgba(43, 175, 255, .92), rgba(126, 89, 255, .90) 55%, rgba(206, 82, 232, .90));
}

.process-card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card-icon img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.process-card-time {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(126, 160, 255, .18);
    border-radius: 999px;
    color: #c1ccef;
    background: rgba(53, 106, 213, .09);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .025em;
}

.process-card h3 {
    position: relative;
    z-index: 2;
    margin: 20px 0 9px;
    max-width: 88%;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.process-card > p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.58;
}

.process-card-info {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.process-card-info span,
.process-card-info strong {
    display: block;
}

.process-card-info span {
    color: #8c95b7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.process-card-info strong {
    margin-top: 5px;
    color: #e7e9f5;
    font-size: 12px;
    line-height: 1.45;
}

.process-card-result {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    min-height: 48px;
    padding: 10px 12px 10px 31px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(92, 168, 255, .16);
    border-radius: 14px;
    color: #cfd5ed;
    background:
        linear-gradient(110deg, rgba(45, 128, 235, .09), rgba(97, 88, 210, .07)),
        rgba(255,255,255,.02);
    font-size: 11px;
    line-height: 1.4;
}

.process-card-result i {
    position: absolute;
    left: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4bc2ff;
    box-shadow: 0 0 13px rgba(75,194,255,.78);
}

.process-card-result--violet {
    border-color: rgba(159, 108, 255, .18);
    background:
        linear-gradient(110deg, rgba(107, 74, 219, .09), rgba(176, 69, 225, .07)),
        rgba(255,255,255,.02);
}

.process-card-result--violet i {
    background: #a36cff;
    box-shadow: 0 0 13px rgba(163,108,255,.76);
}

.process-card-result--pink {
    border-color: rgba(203, 91, 255, .18);
    background:
        linear-gradient(110deg, rgba(124, 74, 219, .09), rgba(215, 75, 223, .07)),
        rgba(255,255,255,.02);
}

.process-card-result--pink i {
    background: #d567ff;
    box-shadow: 0 0 13px rgba(213,103,255,.76);
}

.process-card-checks {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    display: grid;
    gap: 8px;
}

.process-card-checks span {
    min-height: 37px;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 11px;
    color: #c8cee5;
    background: rgba(255,255,255,.025);
    font-size: 11px;
}

.process-card-checks i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #65dfb0;
    box-shadow: 0 0 11px rgba(101,223,176,.60);
}

.process-node {
    position: absolute;
    z-index: 5;
    left: 50%;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(181, 139, 255, .43);
    border-radius: 50%;
    background: rgba(16, 16, 43, .97);
    box-shadow:
        0 0 0 7px rgba(132, 87, 255, .05),
        0 0 22px rgba(104, 97, 255, .40);
    transform: translateX(-50%);
}

.process-card--high .process-node {
    bottom: -48px;
}

.process-card--low .process-node {
    top: -48px;
}

.process-node i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39bcff, #c45cec);
    box-shadow: 0 0 14px rgba(170, 91, 255, .80);
}

.process-cta {
    position: relative;
    min-height: 66px;
    margin-top: 18px;
    padding: 9px 10px 9px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 5px 22px;
    overflow: hidden;
    border: 1px solid rgba(207, 168, 255, .18);
    border-radius: 20px;
    background:
        radial-gradient(circle at 86% 50%, rgba(151, 80, 255, .16), transparent 28%),
        linear-gradient(125deg, rgba(31, 111, 218, .09), rgba(140, 60, 205, .10)),
        rgba(255,255,255,.04);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11),
        0 18px 42px rgba(0,0,0,.20);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.process-cta div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.process-cta div span {
    color: #8f98ba;
    font-size: 11px;
}

.process-cta div strong {
    font-size: 16px;
}

.process-cta a {
    grid-row: 1 / span 2;
    grid-column: 2;
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #269fff, #765fff 53%, #bd52e9);
    box-shadow: 0 12px 28px rgba(76, 47, 179, .25), inset 0 1px 0 rgba(255,255,255,.23);
    font-size: 11px;
    font-weight: 800;
    transition: transform .24s ease, box-shadow .24s ease;
}

.process-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(92, 51, 199, .34), inset 0 1px 0 rgba(255,255,255,.28);
}

.process-cta a svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta > small {
    color: #7b84a4;
    font-size: 9px;
}

.process-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity .5s ease,
        transform .56s cubic-bezier(.22,1,.36,1);
}

.process-card--high.process-reveal {
    transform: translateY(-2px);
}

.process-card--low.process-reveal {
    transform: translateY(34px);
}

.process-section.is-visible .process-card--high.process-reveal {
    opacity: 1;
    transform: translateY(-18px);
}

.process-section.is-visible .process-card--low.process-reveal {
    opacity: 1;
    transform: translateY(18px);
}

.process-section.is-visible .process-cta.process-reveal {
    opacity: 1;
    transform: translateY(0);
}

.process-section.is-visible .process-card:nth-of-type(1) { transition-delay: .04s; }
.process-section.is-visible .process-card:nth-of-type(2) { transition-delay: .10s; }
.process-section.is-visible .process-card:nth-of-type(3) { transition-delay: .16s; }
.process-section.is-visible .process-card:nth-of-type(4) { transition-delay: .22s; }
.process-section.is-visible .process-cta { transition-delay: .26s; }

@media (max-width: 1350px) {
    .process-route {
        gap: 14px;
    }

    .process-card {
        min-height: 325px;
        padding: 19px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card > p {
        font-size: 12px;
    }

    .process-card-result {
        left: 19px;
        right: 19px;
        bottom: 18px;
    }
}

@media (max-width: 1120px) {
    .process-section {
        height: auto;
        min-height: 100svh;
        overflow: visible;
        padding-bottom: 50px;
    }

    .process-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-route {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .process-track,
    .process-node {
        display: none;
    }

    .process-card,
    .process-card--high,
    .process-card--low,
    .process-section.is-visible .process-card--high.process-reveal,
    .process-section.is-visible .process-card--low.process-reveal {
        min-height: 315px;
        transform: translateY(0);
    }
}

@media (max-width: 680px) {
    .process-section {
        padding-top: calc(var(--header-height) + 30px);
    }

    .process-heading h2 {
        font-size: 42px;
    }

    .process-heading p {
        font-size: 14px;
    }

    .process-route {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
        padding: 20px;
    }

    .process-card h3 {
        font-size: 21px;
    }

    .process-card > p {
        font-size: 13px;
    }

    .process-card-result {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 18px;
    }

    .process-cta {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .process-cta div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .process-cta a {
        grid-row: auto;
        grid-column: auto;
        width: 100%;
        margin-top: 8px;
    }

    .process-cta > small {
        font-size: 9px;
    }
}

@media (hover: none) {
    .process-card:hover,
    .process-card--high:hover,
    .process-card--low:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-reveal,
    .process-card,
    .process-cta {
        opacity: 1;
        transform: none !important;
        transition: none !important;
    }
}


/* ===== Шахматная компоновка этапов «Как работаем» ===== */

/*
 * Этапы намеренно занимают больше одного экрана:
 * так внутри карточек остаётся воздух, а тексты не накладываются друг на друга.
 */
.process-section {
    min-height: auto;
    padding-bottom: 64px;
    overflow: hidden;
}

.process-route {
    position: relative;
    display: block;
    width: min(100%, 1420px);
    height: 1080px;
    margin: 42px auto 0;
}

/* Центральная вертикальная линия маршрута. */
.process-track {
    left: 50%;
    right: auto;
    top: 38px;
    bottom: 42px;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
}

.process-track span {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #35baff 0%,
        #6f73ff 46%,
        #b75af0 77%,
        #d15ce8 100%
    );
    box-shadow:
        0 0 18px rgba(74, 151, 255, .46),
        0 0 32px rgba(174, 83, 240, .22);
}

/* Карточки располагаются поочерёдно слева и справа от линии. */
.process-card {
    position: absolute;
    width: calc(50% - 64px);
    min-height: 382px;
    padding: 27px 27px 24px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    transform: none;
}

.process-card:nth-of-type(1) {
    top: 0;
    left: 0;
}

.process-card:nth-of-type(2) {
    top: 205px;
    right: 0;
}

.process-card:nth-of-type(3) {
    top: 515px;
    left: 0;
}

.process-card:nth-of-type(4) {
    top: 720px;
    right: 0;
}

/* Короткие соединители от карточек к центральной линии. */
.process-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    width: 64px;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(55, 184, 255, .2), rgba(118, 105, 255, .9));
    box-shadow: 0 0 13px rgba(102, 111, 255, .38);
}

.process-card:nth-of-type(odd)::after {
    left: 100%;
}

.process-card:nth-of-type(even)::after {
    right: 100%;
    background: linear-gradient(90deg, rgba(184, 82, 239, .9), rgba(118, 105, 255, .2));
}

.process-card--high,
.process-card--low,
.process-section.is-visible .process-card--high.process-reveal,
.process-section.is-visible .process-card--low.process-reveal {
    transform: none;
}

.process-card:hover,
.process-card--high:hover,
.process-card--low:hover {
    transform: translateY(-5px);
}

/* Узлы теперь находятся на центральной вертикальной линии. */
.process-node,
.process-card--high .process-node,
.process-card--low .process-node {
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
}

.process-card:nth-of-type(odd) .process-node {
    right: -76px;
}

.process-card:nth-of-type(even) .process-node {
    left: -76px;
}

/* Контент больше не конкурирует за одно и то же место. */
.process-card h3 {
    max-width: 82%;
    margin-top: 22px;
    font-size: 25px;
}

.process-card > p {
    font-size: 14px;
    line-height: 1.62;
}

.process-card-info {
    margin-top: 20px;
    padding-top: 16px;
}

.process-card-info span {
    font-size: 11px;
}

.process-card-info strong {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.48;
}

.process-card-checks {
    margin-top: 22px;
    gap: 10px;
}

.process-card-checks span {
    min-height: 43px;
    padding: 0 13px;
    font-size: 12px;
}

/* Нижний результат участвует в обычной раскладке и никогда не перекрывает текст. */
.process-card-result {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 54px;
    margin-top: auto;
    padding: 11px 14px 11px 34px;
    font-size: 12px;
    line-height: 1.45;
}

.process-card-result i {
    left: 14px;
}

/* CTA располагается после длинного маршрута с нормальным отступом. */
.process-cta {
    width: min(100%, 1420px);
    margin: 28px auto 0;
}

/* Анимация появления сохраняет шахматную позицию и не двигает карточки друг на друга. */
.process-card.process-reveal {
    opacity: 0;
    transform: translateY(18px);
}

.process-section.is-visible .process-card.process-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Средние экраны: сохраняем шахматную схему, но уменьшаем расстояния. */
@media (max-width: 1350px) {
    .process-route {
        height: 1110px;
    }

    .process-card {
        width: calc(50% - 48px);
        min-height: 398px;
        padding: 24px 23px 22px;
    }

    .process-card:nth-of-type(2) {
        top: 220px;
    }

    .process-card:nth-of-type(3) {
        top: 535px;
    }

    .process-card:nth-of-type(4) {
        top: 755px;
    }

    .process-card::after {
        width: 48px;
    }

    .process-card:nth-of-type(odd) .process-node {
        right: -60px;
    }

    .process-card:nth-of-type(even) .process-node {
        left: -60px;
    }
}

/* Планшеты: две колонки без линии, карточки идут аккуратной сеткой 2×2. */
@media (max-width: 1120px) {
    .process-section {
        overflow: visible;
    }

    .process-route {
        height: auto;
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .process-track,
    .process-node,
    .process-card::after {
        display: none;
    }

    .process-card,
    .process-card:nth-of-type(1),
    .process-card:nth-of-type(2),
    .process-card:nth-of-type(3),
    .process-card:nth-of-type(4) {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        min-height: 390px;
    }

    .process-card:nth-of-type(even) {
        margin-top: 54px;
    }

    .process-card.process-reveal,
    .process-section.is-visible .process-card.process-reveal {
        transform: none;
    }
}

/* Телефоны: один столбец, вся информация читается без наложений. */
@media (max-width: 680px) {
    .process-route {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-card,
    .process-card:nth-of-type(even) {
        min-height: auto;
        margin-top: 0;
        padding: 22px 20px;
    }

    .process-card h3 {
        max-width: 86%;
        font-size: 23px;
    }

    .process-card > p {
        font-size: 13px;
    }

    .process-card-result {
        margin-top: 20px;
    }
}

@media (hover: none) {
    .process-card:hover,
    .process-card--high:hover,
    .process-card--low:hover {
        transform: none;
    }
}


/* ===== Обновлённый CTA раздела «Как работаем» ===== */

.process-cta {
    position: relative;
    width: min(100%, 1420px);
    min-height: 132px;
    margin: 36px auto 0;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(199, 161, 255, .25);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 24%, rgba(200, 80, 255, .20), transparent 31%),
        radial-gradient(circle at 8% 90%, rgba(39, 169, 255, .15), transparent 35%),
        linear-gradient(120deg, rgba(35, 69, 150, .18), rgba(91, 43, 137, .16)),
        rgba(14, 15, 38, .82);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 24px 58px rgba(0,0,0,.27);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
}

.process-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            112deg,
            rgba(255,255,255,.10) 0%,
            transparent 28%,
            transparent 70%,
            rgba(197,115,255,.06) 100%
        );
}

.process-cta::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #32b5ff, #7868ff 55%, #c95bed, transparent);
    opacity: .72;
    box-shadow: 0 0 18px rgba(133, 88, 255, .45);
}

.process-cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.process-cta-decoration--one {
    width: 210px;
    height: 210px;
    right: -95px;
    top: -112px;
    border: 1px solid rgba(199, 132, 255, .16);
    box-shadow:
        0 0 0 34px rgba(163, 83, 255, .025),
        0 0 0 68px rgba(103, 105, 255, .016);
}

.process-cta-decoration--two {
    width: 145px;
    height: 145px;
    left: -80px;
    bottom: -95px;
    border: 1px solid rgba(53, 183, 255, .13);
    box-shadow: 0 0 0 28px rgba(53, 183, 255, .018);
}

.process-cta-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.28), transparent 33%),
        linear-gradient(135deg, #28abff, #7468ff 56%, #bd55eb);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 14px 32px rgba(75, 66, 208, .34);
}

.process-cta-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.process-cta-kicker {
    width: fit-content;
    min-height: 26px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(103, 189, 255, .15);
    border-radius: 999px;
    color: #bdc9e9;
    background: rgba(50, 129, 230, .075);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.process-cta-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #43c6ff;
    box-shadow:
        0 0 0 4px rgba(67,198,255,.06),
        0 0 13px rgba(67,198,255,.76);
}

.process-cta-copy strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.process-cta-copy p {
    max-width: 820px;
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.process-cta-action {
    position: relative;
    z-index: 2;
    min-width: 230px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
}

.process-cta-action a {
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(110deg, #269fff 0%, #706aff 53%, #c04fed 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 15px 34px rgba(86, 49, 192, .34);
    font-size: 14px;
    font-weight: 800;
    transition:
        transform .25s cubic-bezier(.22,1,.36,1),
        box-shadow .25s ease,
        filter .25s ease;
}

.process-cta-action a:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.34),
        0 19px 42px rgba(101, 54, 211, .43);
}

.process-cta-action a svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-action small {
    color: #8992b2;
    font-size: 10px;
    text-align: center;
}

@media (max-width: 1120px) {
    .process-cta {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .process-cta-action {
        grid-column: 1 / -1;
        width: min(100%, 330px);
        margin: 4px auto 0;
    }
}

@media (max-width: 680px) {
    .process-cta {
        min-height: 0;
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 24px;
        text-align: left;
    }

    .process-cta-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .process-cta-copy strong {
        font-size: 23px;
    }

    .process-cta-copy p {
        font-size: 13px;
    }

    .process-cta-action {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .process-cta-action a {
        min-height: 56px;
        font-size: 13px;
    }
}


/* ===== Финальная стабилизация прокрутки и CTA «Как работаем» ===== */

/*
 * Раздел выше одного экрана, поэтому обычный обязательный scroll-snap
 * заставлял браузер перескакивать к началу или концу секции.
 * Пока пользователь читает этот блок, snap отключается через JS-класс.
 */
html.process-reading {
    scroll-snap-type: none !important;
    scroll-behavior: auto;
}

.process-section {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
    contain: none;
}

/* Убираем возможный сдвиг из-за появления карточек прямо во время прокрутки. */
.process-reveal,
.process-card.process-reveal,
.process-section.is-visible .process-card.process-reveal,
.process-section.is-visible .process-cta.process-reveal {
    opacity: 1;
    transform: none;
    transition:
        border-color .24s ease,
        box-shadow .24s ease,
        background .24s ease;
}

/* Новый CTA: понятная иерархия и две сбалансированные части. */
.process-cta {
    position: relative;
    width: min(100%, 1420px);
    min-height: 250px;
    margin: 44px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(390px, .65fr);
    overflow: hidden;
    border: 1px solid rgba(199, 161, 255, .27);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(37, 62, 135, .28), rgba(50, 29, 93, .35)),
        rgba(12, 13, 34, .90);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 28px 70px rgba(0,0,0,.30);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
    isolation: isolate;
}

.process-cta::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255,255,255,.10), transparent 29%, transparent 70%, rgba(198,100,255,.055));
}

.process-cta::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 36px;
    right: 36px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, #36b7ff 18%, #766dff 55%, #ce5aeb 82%, transparent);
    box-shadow: 0 0 20px rgba(120, 91, 255, .48);
}

.process-cta-aura {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.process-cta-aura--blue {
    width: 320px;
    height: 320px;
    left: -150px;
    bottom: -210px;
    background: rgba(40, 172, 255, .17);
    filter: blur(54px);
}

.process-cta-aura--violet {
    width: 360px;
    height: 360px;
    right: -160px;
    top: -220px;
    background: rgba(195, 73, 255, .18);
    filter: blur(58px);
}

.process-cta-main {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 36px 38px;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.process-cta-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.21);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 27% 17%, rgba(255,255,255,.31), transparent 34%),
        linear-gradient(135deg, #2aaeff, #716cff 55%, #bd56ec);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.32),
        0 17px 38px rgba(75, 64, 204, .38);
}

.process-cta-icon svg {
    width: 33px;
    height: 33px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-copy {
    min-width: 0;
}

.process-cta-kicker {
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(98, 189, 255, .18);
    border-radius: 999px;
    color: #c6d1ef;
    background: rgba(44, 127, 227, .09);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.process-cta-kicker i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43c5ff;
    box-shadow:
        0 0 0 4px rgba(67,197,255,.065),
        0 0 14px rgba(67,197,255,.80);
}

.process-cta-copy strong {
    display: block;
    max-width: 800px;
    margin-top: 16px;
    color: #fff;
    font-size: clamp(28px, 2.2vw, 39px);
    line-height: 1.10;
    letter-spacing: -.045em;
}

.process-cta-copy p {
    max-width: 780px;
    margin: 13px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.process-cta-side {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 28px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.process-cta-points {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.process-cta-points span {
    min-height: 39px;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 12px;
    color: #c9cfe4;
    background: rgba(255,255,255,.027);
    font-size: 12px;
}

.process-cta-points i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #66ddb2;
    box-shadow: 0 0 12px rgba(102,221,178,.64);
}

.process-cta-side a {
    width: 100%;
    min-height: 60px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(110deg, #299fff 0%, #706aff 52%, #c04fee 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.31),
        0 16px 36px rgba(86, 49, 192, .36);
    font-size: 14px;
    font-weight: 800;
    transition:
        transform .24s cubic-bezier(.22,1,.36,1),
        box-shadow .24s ease,
        filter .24s ease;
}

.process-cta-side a:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.35),
        0 21px 45px rgba(104, 57, 218, .46);
}

.process-cta-side a svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-side small {
    display: block;
    margin-top: 11px;
    color: #858ead;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1120px) {
    .process-cta {
        grid-template-columns: 1fr;
    }

    .process-cta-side {
        border-top: 1px solid rgba(255,255,255,.08);
        border-left: 0;
    }

    .process-cta-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .process-cta {
        min-height: 0;
        border-radius: 26px;
    }

    .process-cta-main {
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-cta-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .process-cta-copy strong {
        font-size: 28px;
    }

    .process-cta-copy p {
        font-size: 14px;
    }

    .process-cta-side {
        padding: 22px;
    }

    .process-cta-points {
        grid-template-columns: 1fr;
    }
}


/* ===== Production cleanup: scroll, contacts and compact CTA ===== */

/*
 * Proximity вместо mandatory:
 * короткие экраны мягко выравниваются, но длинный раздел «Как работаем»
 * и переход из контактов больше не перескакивают через соседнюю секцию.
 */
html,
html.process-reading {
    scroll-snap-type: y proximity !important;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

.section-screen {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    scroll-margin-top: 0;
}

.process-section {
    scroll-snap-align: none !important;
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}

.contacts-section {
    scroll-snap-align: start !important;
    content-visibility: visible !important;
}

/* Компактный CTA — по высоте близок к первоначальному варианту. */
.process-cta {
    position: relative;
    width: min(100%, 1420px);
    min-height: 118px;
    margin: 30px auto 0;
    padding: 17px 20px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(199, 161, 255, .24);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 10%, rgba(198, 80, 255, .16), transparent 31%),
        radial-gradient(circle at 3% 100%, rgba(39, 169, 255, .12), transparent 34%),
        linear-gradient(120deg, rgba(35, 69, 150, .16), rgba(91, 43, 137, .15)),
        rgba(13, 14, 35, .88);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 20px 48px rgba(0,0,0,.24);
    -webkit-backdrop-filter: blur(12px) saturate(118%);
    backdrop-filter: blur(12px) saturate(118%);
}

.process-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255,255,255,.075), transparent 30%, transparent 74%, rgba(199,103,255,.045));
}

.process-cta::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #32b6ff, #756bff 55%, #ca58ed, transparent);
    opacity: .72;
    box-shadow: 0 0 15px rgba(122, 91, 255, .36);
}

.process-cta-icon {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.28), transparent 34%),
        linear-gradient(135deg, #2aabff, #716bff 55%, #bb56eb);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 12px 28px rgba(75, 64, 204, .31);
}

.process-cta-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.process-cta-kicker {
    width: fit-content;
    min-height: 24px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(99, 188, 255, .16);
    border-radius: 999px;
    color: #c4cfea;
    background: rgba(45, 127, 226, .075);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.process-cta-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #43c5ff;
    box-shadow: 0 0 12px rgba(67,197,255,.76);
}

.process-cta-copy strong {
    display: block;
    margin-top: 7px;
    color: #fff;
    font-size: clamp(19px, 1.45vw, 25px);
    line-height: 1.18;
    letter-spacing: -.03em;
}

.process-cta-copy p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.48;
}

.process-cta-action {
    position: relative;
    z-index: 2;
    min-width: 225px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.process-cta-action a {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #299fff 0%, #706aff 52%, #c04fee 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.29),
        0 13px 30px rgba(86, 49, 192, .31);
    font-size: 13px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.process-cta-action a:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.33),
        0 17px 36px rgba(102, 55, 210, .40);
}

.process-cta-action a svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-cta-action small {
    color: #8992b1;
    font-size: 9px;
    white-space: nowrap;
}

/* Контакты без пустого «хвоста» после футера. */
.contacts-section {
    height: auto !important;
    min-height: 100svh !important;
    padding: calc(var(--header-height) + 12px) 0 12px !important;
    overflow: hidden;
}

.contacts-container {
    height: auto !important;
    min-height: calc(100svh - var(--header-height) - 24px) !important;
    display: grid;
    grid-template-rows: auto auto clamp(280px, 35vh, 370px) auto !important;
    align-content: start;
    gap: 16px !important;
}

.contacts-heading h2 {
    margin-top: 6px;
}

.map-card {
    height: clamp(280px, 35vh, 370px) !important;
    min-height: 0 !important;
}

.site-footer {
    position: relative;
    z-index: 4;
    min-height: 34px !important;
    margin: 0 !important;
    padding: 3px 0 0 !important;
    transform: none !important;
    align-self: start;
}

/* Предотвращаем появление горизонтальной прокрутки из-за декора. */
body {
    max-width: 100%;
    overflow-x: clip;
}

img {
    max-width: 100%;
}

/* Фокус клавиатуры виден, но не ломает дизайн. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(92, 183, 255, .92);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .process-cta {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .process-cta-action {
        grid-column: 1 / -1;
        width: min(100%, 330px);
        margin: 2px auto 0;
    }

    .contacts-section {
        overflow: visible;
    }

    .contacts-container {
        grid-template-rows: auto auto minmax(360px, auto) auto !important;
    }

    .map-card {
        height: 380px !important;
    }
}

@media (max-width: 680px) {
    html,
    html.process-reading {
        scroll-snap-type: none !important;
    }

    .process-cta {
        min-height: 0;
        padding: 18px;
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 23px;
    }

    .process-cta-icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }

    .process-cta-copy strong {
        font-size: 22px;
    }

    .process-cta-copy p {
        font-size: 13px;
    }

    .process-cta-action {
        width: 100%;
        min-width: 0;
        margin: 0;
    }

    .contacts-section {
        padding-bottom: 10px !important;
    }

    .contacts-container {
        min-height: 0 !important;
        grid-template-rows: auto auto auto auto !important;
    }

    .map-card {
        height: 390px !important;
    }

    .site-footer {
        min-height: 46px !important;
        padding-top: 6px !important;
    }
}


/* ===== Возвращённое перелистывание и ультракомпактный CTA ===== */

/* Перелистывание управляется JS: это устраняет двойной snap и скачки назад. */
html,
html.process-reading {
    scroll-snap-type: none !important;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

html.is-programmatic-scroll {
    scroll-behavior: auto !important;
}

.section-screen,
.process-section,
.contacts-section {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}

/* CTA стал ещё тоньше, сохранив читаемый текст и заметную кнопку. */
.process-cta {
    min-height: 88px;
    margin-top: 22px;
    padding: 10px 14px;
    grid-template-columns: 46px minmax(0, 1fr) 218px;
    gap: 14px;
    border-radius: 22px;
}

.process-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
}

.process-cta-icon svg {
    width: 22px;
    height: 22px;
}

.process-cta-kicker {
    min-height: 20px;
    padding: 0 8px;
    font-size: 8px;
}

.process-cta-kicker i {
    width: 6px;
    height: 6px;
}

.process-cta-copy strong {
    margin-top: 5px;
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.16;
}

.process-cta-copy p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.35;
}

.process-cta-action {
    min-width: 218px;
    gap: 4px;
}

.process-cta-action a {
    min-height: 46px;
    padding: 0 17px;
    gap: 10px;
    font-size: 12px;
}

.process-cta-action a svg {
    width: 17px;
}

.process-cta-action small {
    font-size: 8px;
}

/* В разделе контактов нет дополнительного пустого хвоста снизу. */
.contacts-section {
    padding-bottom: 8px !important;
}

.contacts-container {
    min-height: calc(100svh - var(--header-height) - 20px) !important;
}

.site-footer {
    min-height: 30px !important;
    padding-top: 1px !important;
}

@media (max-width: 1120px) {
    .process-cta {
        min-height: 0;
        padding: 14px;
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .process-cta-action {
        grid-column: 1 / -1;
        width: min(100%, 300px);
        min-width: 0;
        margin: 2px auto 0;
    }
}

@media (max-width: 680px) {
    html,
    html.process-reading {
        scroll-snap-type: none !important;
    }

    .process-cta {
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-cta-copy strong {
        font-size: 21px;
    }

    .process-cta-copy p {
        font-size: 12px;
    }

    .process-cta-action {
        width: 100%;
        margin: 0;
    }
}


/* ===== Отступ и финальный компактный CTA ===== */

/* Отделяем панель от четвёртого этапа, чтобы элементы не слипались. */
.process-cta {
    min-height: 70px;
    margin-top: 58px;
    padding: 7px 12px;
    grid-template-columns: 38px minmax(0, 1fr) 205px;
    gap: 11px;
    border-radius: 19px;
}

.process-cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
}

.process-cta-icon svg {
    width: 19px;
    height: 19px;
}

.process-cta-kicker {
    min-height: 18px;
    padding: 0 7px;
    font-size: 7px;
}

.process-cta-kicker i {
    width: 5px;
    height: 5px;
}

.process-cta-copy strong {
    margin-top: 3px;
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.15;
}

.process-cta-copy p {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.3;
}

.process-cta-action {
    min-width: 205px;
    gap: 2px;
}

.process-cta-action a {
    min-height: 40px;
    padding: 0 15px;
    gap: 9px;
    font-size: 11px;
}

.process-cta-action a svg {
    width: 16px;
}

.process-cta-action small {
    font-size: 7px;
}

/* На средних экранах сохраняем отступ, но разрешаем перенос кнопки ниже. */
@media (max-width: 1120px) {
    .process-cta {
        margin-top: 46px;
        padding: 11px;
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .process-cta-action {
        width: min(100%, 280px);
    }
}

@media (max-width: 680px) {
    .process-cta {
        margin-top: 34px;
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-cta-icon {
        width: 42px;
        height: 42px;
    }

    .process-cta-copy strong {
        font-size: 19px;
    }

    .process-cta-copy p {
        font-size: 11px;
    }

    .process-cta-action {
        width: 100%;
    }
}

/* ===== Scroll gesture fix + exact value cleanup ===== */

/* Плавность полностью контролирует JS. CSS smooth здесь вызывал двойную интерполяцию и дрожание. */
html,
html.process-reading,
html.is-programmatic-scroll {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

/* В числовом glass-блоке оставляем только само значение. */
.range-value-caption {
    display: none !important;
}

.range-value-input {
    padding: 0 8px !important;
    display: block;
    line-height: 58px;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.range-value-shell {
    place-items: center;
}

@media (max-width: 680px) {
    .range-value-input {
        line-height: 54px;
        font-size: 20px;
    }
}


/* ===== Кнопка быстрого возврата наверх ===== */
.back-to-top {
    position: fixed;
    z-index: 46;
    right: 18px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(203, 169, 255, .30);
    border-radius: 19px;
    color: #e9ddff;
    background:
        radial-gradient(circle at 30% 18%, rgba(77, 187, 255, .22), transparent 45%),
        linear-gradient(145deg, rgba(97, 71, 186, .30), rgba(255,255,255,.05)),
        rgba(10, 11, 29, .80);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        0 14px 34px rgba(29, 20, 80, .34);
    -webkit-backdrop-filter: blur(15px) saturate(125%);
    backdrop-filter: blur(15px) saturate(125%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(.92);
    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .30s cubic-bezier(.22,1,.36,1),
        border-color .22s ease,
        box-shadow .22s ease,
        color .22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,.13), transparent 42%, rgba(192,94,255,.06));
}

.back-to-top-glow {
    position: absolute;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #bf73ff;
    box-shadow:
        0 0 0 4px rgba(191, 115, 255, .05),
        0 0 14px rgba(191, 115, 255, .82);
}

.back-to-top svg {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    margin-top: 7px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
}

.back-to-top-label {
    position: absolute;
    right: 62px;
    min-width: 64px;
    padding: 7px 10px;
    border: 1px solid rgba(205, 173, 255, .18);
    border-radius: 11px;
    color: #d8d4e8;
    background: rgba(10, 11, 29, .82);
    box-shadow: 0 10px 25px rgba(0,0,0,.22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(7px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top:hover {
    color: #fff;
    border-color: rgba(194, 145, 255, .52);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.25),
        0 17px 40px rgba(59, 35, 139, .40);
    transform: translateY(-2px) scale(1.03);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

.back-to-top:hover .back-to-top-label {
    opacity: 1;
    transform: translateX(0);
}

body.privacy-opened .back-to-top,
body.menu-open .back-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1050px) {
    .back-to-top {
        right: 14px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .back-to-top-label {
        display: none;
    }
}

@media (max-width: 680px) {
    .back-to-top {
        right: 12px;
        bottom: 14px;
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .back-to-top svg {
        width: 21px;
        height: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top,
    .back-to-top svg,
    .back-to-top-label {
        transition: none;
    }
}


/* ===== Финальная переработка CTA-блока ===== */
.process-cta {
    min-height: 64px;
    margin-top: 54px;
    padding: 10px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border-radius: 21px;
}

.process-cta-icon {
    display: none !important;
}

.process-cta-copy {
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) minmax(240px, .95fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 28px;
    row-gap: 4px;
    min-width: 0;
}

.process-cta-kicker {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: #aebde3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.process-cta-kicker i {
    display: none;
}

.process-cta-copy strong {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    color: #ffffff;
    font-size: clamp(19px, 1.45vw, 25px);
    line-height: 1.16;
    letter-spacing: -.03em;
    max-width: 620px;
}

.process-cta-copy p {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    color: #d9ddf2;
    font-size: clamp(16px, 1.05vw, 19px);
    line-height: 1.42;
    align-self: center;
    max-width: 460px;
}

.process-cta-action {
    min-width: 310px;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.process-cta-action a {
    min-width: 286px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.process-cta-action a svg {
    width: 18px;
}

.process-cta-action small {
    color: #cdd2e7;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1320px) {
    .process-cta {
        padding: 12px 16px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-cta-copy {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 6px;
    }

    .process-cta-kicker,
    .process-cta-copy strong,
    .process-cta-copy p {
        grid-column: 1;
        max-width: none;
    }

    .process-cta-kicker {
        grid-row: 1;
    }

    .process-cta-copy strong {
        grid-row: 2;
    }

    .process-cta-copy p {
        grid-row: 3;
        font-size: 16px;
    }

    .process-cta-action {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .process-cta {
        min-height: 0;
        margin-top: 36px;
        padding: 14px;
        gap: 12px;
    }

    .process-cta-kicker {
        font-size: 11px;
        white-space: normal;
    }

    .process-cta-copy strong {
        font-size: 20px;
    }

    .process-cta-copy p {
        font-size: 15px;
        line-height: 1.45;
    }

    .process-cta-action {
        width: 100%;
        align-items: stretch;
    }

    .process-cta-action a {
        min-width: 0;
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }

    .process-cta-action small {
        font-size: 12px;
        text-align: left;
    }
}


/* ===== Сглаживание переходов между секциями ===== */
.hero,
.services-section,
.calculator-section,
.benefits-section,
.process-section,
.contacts-section {
    isolation: isolate;
}

.hero::after,
.services-section::after,
.calculator-section::after,
.benefits-section::after,
.process-section::after,
.contacts-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    bottom: -1px;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(7, 8, 21, 0.84) 0,
            rgba(7, 8, 21, 0.22) 56px,
            rgba(7, 8, 21, 0.0) 124px
        ),
        linear-gradient(to top,
            rgba(7, 8, 21, 0.92) 0,
            rgba(7, 8, 21, 0.30) 58px,
            rgba(7, 8, 21, 0.0) 136px
        );
}

/* Для первого экрана верхний затемняющий градиент не нужен. */
.hero::after {
    background:
        linear-gradient(to top,
            rgba(7, 8, 21, 0.94) 0,
            rgba(7, 8, 21, 0.34) 62px,
            rgba(7, 8, 21, 0.0) 146px
        );
}

/* Немного мягче для внутренних разделов, чтобы стык был плавным без явной полосы. */
.services-section::after,
.calculator-section::after,
.benefits-section::after,
.process-section::after,
.contacts-section::after {
    background:
        linear-gradient(to bottom,
            rgba(7, 8, 21, 0.76) 0,
            rgba(7, 8, 21, 0.18) 48px,
            rgba(7, 8, 21, 0.0) 114px
        ),
        linear-gradient(to top,
            rgba(7, 8, 21, 0.88) 0,
            rgba(7, 8, 21, 0.26) 54px,
            rgba(7, 8, 21, 0.0) 126px
        );
}

/* На мобильных уменьшаем высоту переходных градиентов, чтобы не съедать контент. */
@media (max-width: 780px) {
    .hero::after,
    .services-section::after,
    .calculator-section::after,
    .benefits-section::after,
    .process-section::after,
    .contacts-section::after {
        background:
            linear-gradient(to bottom,
                rgba(7, 8, 21, 0.72) 0,
                rgba(7, 8, 21, 0.16) 32px,
                rgba(7, 8, 21, 0.0) 82px
            ),
            linear-gradient(to top,
                rgba(7, 8, 21, 0.84) 0,
                rgba(7, 8, 21, 0.24) 40px,
                rgba(7, 8, 21, 0.0) 96px
            );
    }

    .hero::after {
        background:
            linear-gradient(to top,
                rgba(7, 8, 21, 0.90) 0,
                rgba(7, 8, 21, 0.30) 42px,
                rgba(7, 8, 21, 0.0) 100px
            );
    }
}


/* ===== Плавные переходы между экранами ===== */

/*
 * У всех секций один базовый цвет на верхней и нижней кромке.
 * Цветные glow-пятна появляются только внутри секции и постепенно растворяются,
 * поэтому между экранами больше нет резкой горизонтальной границы.
 */
:root {
    --section-edge: #080918;
}

main {
    background: var(--section-edge);
}

.section-screen {
    position: relative;
    isolation: isolate;
    border: 0;
}

/* Первый экран мягко растворяется в общий цвет следующей секции. */
.hero {
    background:
        linear-gradient(
            180deg,
            rgba(8, 9, 24, 0) 0%,
            rgba(8, 9, 24, 0) 72%,
            rgba(8, 9, 24, .46) 88%,
            var(--section-edge) 100%
        );
}

/* Услуги */
.services-section {
    background:
        radial-gradient(circle at 14% 27%, rgba(23, 167, 255, .12), transparent 30%),
        radial-gradient(circle at 86% 73%, rgba(190, 74, 255, .14), transparent 32%),
        linear-gradient(
            180deg,
            var(--section-edge) 0%,
            #080918 7%,
            #09091b 48%,
            #09091b 70%,
            var(--section-edge) 100%
        );
}

/* Калькулятор */
.calculator-section {
    background:
        radial-gradient(circle at 78% 34%, rgba(167, 68, 255, .17), transparent 33%),
        radial-gradient(circle at 8% 69%, rgba(23, 167, 255, .10), transparent 31%),
        linear-gradient(
            180deg,
            var(--section-edge) 0%,
            #070815 8%,
            #09091b 50%,
            #080918 74%,
            var(--section-edge) 100%
        );
}

/* Почему мы */
.benefits-section {
    background:
        radial-gradient(circle at 10% 24%, rgba(23, 167, 255, .13), transparent 31%),
        radial-gradient(circle at 88% 67%, rgba(202, 77, 255, .15), transparent 33%),
        linear-gradient(
            180deg,
            var(--section-edge) 0%,
            #080918 8%,
            #09091b 48%,
            #09091b 72%,
            var(--section-edge) 100%
        );
}

/* Как работаем */
.process-section {
    background:
        radial-gradient(circle at 12% 28%, rgba(32, 164, 255, .12), transparent 32%),
        radial-gradient(circle at 88% 67%, rgba(192, 77, 255, .14), transparent 34%),
        linear-gradient(
            180deg,
            var(--section-edge) 0%,
            #080918 7%,
            #09091b 44%,
            #09091b 76%,
            var(--section-edge) 100%
        );
}

/* Контакты */
.contacts-section {
    background:
        radial-gradient(circle at 88% 34%, rgba(138, 60, 255, .18), transparent 33%),
        radial-gradient(circle at 12% 76%, rgba(23, 167, 255, .11), transparent 31%),
        linear-gradient(
            180deg,
            var(--section-edge) 0%,
            #070815 9%,
            #080918 48%,
            #070815 82%,
            var(--section-edge) 100%
        );
}

/*
 * Мягкая внутренняя дымка у границ. Она не выходит за пределы секций,
 * поэтому не влияет на offsetTop и на уже настроенную прокрутку.
 */
.services-section,
.calculator-section,
.benefits-section,
.process-section,
.contacts-section {
    box-shadow:
        inset 0 74px 72px -76px rgba(116, 94, 210, .12),
        inset 0 -74px 72px -76px rgba(116, 94, 210, .10);
}

/* Убираем возможную однопиксельную щель между секциями при масштабировании браузера. */
.section-screen + .section-screen {
    margin-top: -1px;
    padding-top: calc(var(--header-height) + 1px);
}

/* У длинного раздела сохраняем его собственный верхний отступ. */
.process-section.section-screen {
    padding-top: calc(var(--header-height) + 19px);
}

/* Контакты имеют более компактный отступ, который был настроен отдельно. */
.contacts-section.section-screen {
    padding-top: calc(var(--header-height) + 13px) !important;
}

@media (max-width: 680px) {
    .services-section,
    .calculator-section,
    .benefits-section,
    .process-section,
    .contacts-section {
        box-shadow:
            inset 0 52px 54px -56px rgba(116, 94, 210, .10),
            inset 0 -52px 54px -56px rgba(116, 94, 210, .08);
    }

    .section-screen + .section-screen {
        margin-top: 0;
    }
}


/* ===== CTA: единая типографика и выравнивание ===== */
.process-cta {
    min-height: 64px;
    padding: 10px 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.process-cta-copy {
    display: grid;
    grid-template-columns: .78fr 1.28fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 30px;
    min-width: 0;
}

.process-cta-kicker,
.process-cta-copy strong,
.process-cta-copy p {
    grid-row: 1;
    align-self: center;
    margin: 0;
    line-height: 1.34;
    font-family: inherit;
}

.process-cta-kicker {
    grid-column: 1;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: none;
    color: #d7dcef;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
}

.process-cta-kicker i {
    display: none;
}

.process-cta-copy strong {
    grid-column: 2;
    max-width: none;
    color: #ffffff;
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.018em;
}

.process-cta-copy p {
    grid-column: 3;
    max-width: none;
    color: #d7dcef;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.process-cta-action {
    min-width: 286px;
}

@media (max-width: 1360px) {
    .process-cta-copy {
        grid-template-columns: .72fr 1.18fr 1fr;
        gap: 20px;
    }

    .process-cta-kicker,
    .process-cta-copy p {
        font-size: 15px;
    }

    .process-cta-copy strong {
        font-size: 16px;
    }
}

@media (max-width: 1120px) {
    .process-cta {
        grid-template-columns: 1fr;
    }

    .process-cta-copy {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 5px;
    }

    .process-cta-kicker,
    .process-cta-copy strong,
    .process-cta-copy p {
        grid-column: 1;
    }

    .process-cta-kicker { grid-row: 1; }
    .process-cta-copy strong { grid-row: 2; }
    .process-cta-copy p { grid-row: 3; }

    .process-cta-action {
        min-width: 0;
        width: min(100%, 320px);
    }
}


/* ===== Финальная оптимизация: контакты, логотип, производительность ===== */

/* Логотип в хедере чуть крупнее и визуально выровнен относительно SOPROVIT. */
.brand {
    gap: 11px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    margin-left: -2px;
    transform: translateY(-1px);
}

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

.brand-name {
    line-height: 1;
    transform: translateY(1px);
}

/*
 * На desktop весь экран контактов, включая копирайт и политику,
 * помещается сразу после перехода по пункту «Контакты».
 */
@media (min-width: 1121px) {
    .contacts-section.section-screen {
        height: 100svh !important;
        min-height: 100svh !important;
        padding-top: calc(var(--header-height) + 10px) !important;
        padding-bottom: 8px !important;
        overflow: hidden !important;
    }

    .contacts-container {
        height: calc(100svh - var(--header-height) - 18px) !important;
        min-height: 0 !important;
        grid-template-rows: auto auto minmax(190px, 1fr) 42px !important;
        align-content: stretch !important;
        gap: 12px !important;
    }

    .contacts-heading h2 {
        margin: 4px 0 6px !important;
    }

    .contacts-heading p {
        line-height: 1.45;
    }

    .contacts-top {
        gap: 28px;
    }

    .map-card {
        height: 100% !important;
        min-height: 190px !important;
    }

    .site-footer {
        min-height: 42px !important;
        height: 42px;
        margin: 0 !important;
        padding: 0 0 8px !important;
        align-self: stretch;
        display: flex;
        align-items: center;
        transform: translateY(-3px) !important;
    }
}

/*
 * Fixed blur на больших 620px слоях постоянно заставлял браузер
 * перерасчитывать размытие во время прокрутки. Сохраняем тот же glow,
 * но рисуем его обычным radial-gradient.
 */
.ambient {
    width: 700px;
    height: 700px;
    filter: none !important;
    opacity: .92;
    contain: strict;
}

.ambient--blue {
    background:
        radial-gradient(circle, rgba(35, 102, 255, .20) 0%, rgba(35, 102, 255, .10) 38%, transparent 72%);
}

.ambient--violet {
    background:
        radial-gradient(circle, rgba(174, 58, 255, .21) 0%, rgba(174, 58, 255, .10) 38%, transparent 72%);
}

/* Fixed glass-хедер остаётся визуально мягким, но с меньшим GPU blur. */
.site-header::before {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Изолируем крупные карточки, чтобы hover/перерисовка не затрагивала весь экран. */
.tariff-card,
.benefit-card,
.benefit-dashboard,
.calculator-result {
    contain: layout paint style;
}

/* На тач-устройствах hover-блики не нужны и только расходуют ресурсы. */
@media (hover: none) {
    .tariff-card::after,
    .benefit-card-shine {
        display: none !important;
    }
}

@media (max-width: 1050px) {
    .brand-mark {
        width: 46px;
        height: 46px;
        margin-left: 0;
    }
}

@media (max-width: 680px) {
    .brand-mark {
        width: 43px;
        height: 43px;
    }
}


/* ===== Яркий CTA в хедере ===== */
.header-cta {
    min-height: 56px;
    padding: 0 27px;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    background:
        radial-gradient(circle at 18% 8%, rgba(255,255,255,.24), transparent 33%),
        linear-gradient(105deg, #18a9ff 0%, #467dff 31%, #855cff 62%, #d14cf0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -1px 0 rgba(92,53,210,.28),
        0 10px 26px rgba(63, 109, 255, .24),
        0 14px 38px rgba(170, 65, 239, .22);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.012em;
    text-shadow: 0 1px 8px rgba(24, 17, 72, .25);
    transform: translateZ(0);
    transition:
        transform .25s cubic-bezier(.22,1,.36,1),
        box-shadow .25s ease,
        filter .25s ease;
}

.header-cta::before {
    inset: 1px;
    background:
        linear-gradient(
            115deg,
            rgba(255,255,255,.24) 0%,
            rgba(255,255,255,.07) 31%,
            transparent 54%,
            rgba(255,255,255,.06) 100%
        );
}

.header-cta::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: -9px;
    height: 18px;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(157, 70, 244, .28);
    filter: blur(12px);
    opacity: .72;
    transition: opacity .25s ease, transform .25s ease;
}

.header-cta svg {
    width: 21px;
    height: 21px;
    stroke-width: 2.15;
    transition: transform .28s cubic-bezier(.22,1,.36,1);
}

.header-cta:hover {
    transform: translateY(-3px) scale(1.025);
    filter: saturate(1.14) brightness(1.07);
    border-color: rgba(255,255,255,.42);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.40),
        inset 0 -1px 0 rgba(92,53,210,.24),
        0 13px 31px rgba(46, 139, 255, .31),
        0 18px 46px rgba(188, 68, 241, .31);
}

.header-cta:hover::after {
    opacity: .95;
    transform: scaleX(1.08);
}

.header-cta:hover svg {
    transform: translateX(4px);
}

.header-cta:active {
    transform: translateY(-1px) scale(.985);
}

@media (max-width: 1180px) {
    .header-cta {
        min-height: 52px;
        padding: 0 21px;
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-cta,
    .header-cta::after,
    .header-cta svg {
        transition: none;
    }
}


/* ===== Модальное окно консультации ===== */
body.consultation-opened {
    overflow: hidden;
}

.consultation-modal {
    position: fixed;
    z-index: 105;
    inset: 0;
    padding: 24px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .26s ease, visibility .26s ease;
}

.consultation-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.consultation-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(153, 68, 255, .12), transparent 36%),
        rgba(3, 4, 14, .72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.consultation-shell {
    position: relative;
    width: min(760px, 100%);
    max-height: min(860px, calc(100svh - 48px));
    padding: 34px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(145, 104, 255, .96) rgba(255,255,255,.04);
    border: 1px solid rgba(200, 164, 255, .28);
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 7%, rgba(192, 80, 255, .18), transparent 29%),
        radial-gradient(circle at 7% 92%, rgba(42, 174, 255, .15), transparent 31%),
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
        rgba(10, 11, 31, .94);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 36px 100px rgba(0,0,0,.48),
        0 0 90px rgba(96, 61, 214, .10);
    -webkit-backdrop-filter: blur(22px) saturate(128%);
    backdrop-filter: blur(22px) saturate(128%);
    transform: translateY(24px) scale(.965);
    transition: transform .36s cubic-bezier(.22,1,.36,1);
    isolation: isolate;
}

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

.consultation-shell::-webkit-scrollbar {
    width: 10px;
    height: 0;
}

.consultation-shell::-webkit-scrollbar-track {
    margin: 18px 12px 18px 0;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}

.consultation-shell::-webkit-scrollbar-thumb {
    border: 2px solid rgba(14, 12, 38, .45);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(83, 182, 255, .96), rgba(133, 107, 255, .96) 52%, rgba(197, 88, 236, .96));
    box-shadow: 0 0 16px rgba(159, 98, 255, .28);
}

.consultation-orbit {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(176, 115, 255, .12);
}

.consultation-orbit--one {
    width: 340px;
    height: 340px;
    right: -170px;
    top: -170px;
}

.consultation-orbit--two {
    width: 220px;
    height: 220px;
    left: -120px;
    bottom: -120px;
    border-style: dashed;
    border-color: rgba(55, 179, 255, .11);
}

.consultation-glow {
    position: absolute;
    z-index: -2;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
}

.consultation-glow--blue {
    left: -120px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(38, 169, 255, .20), transparent 70%);
}

.consultation-glow--violet {
    right: -100px;
    top: -100px;
    background: radial-gradient(circle, rgba(190, 73, 255, .22), transparent 70%);
}

.consultation-close {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.045);
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.consultation-close span {
    position: absolute;
    left: 12px;
    top: 21px;
    width: 19px;
    height: 1.5px;
    border-radius: 999px;
    background: #d6d8e8;
}

.consultation-close span:first-child { transform: rotate(45deg); }
.consultation-close span:last-child { transform: rotate(-45deg); }

.consultation-close:hover {
    transform: rotate(4deg) scale(1.05);
    border-color: rgba(194, 145, 255, .34);
    background: rgba(154, 88, 236, .10);
}

.consultation-header {
    padding-right: 55px;
}

.consultation-kicker {
    width: fit-content;
    min-height: 28px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(89, 186, 255, .16);
    border-radius: 999px;
    color: #c6d3ee;
    background: rgba(47, 136, 235, .075);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.consultation-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fc4ff;
    box-shadow: 0 0 13px rgba(63,196,255,.80);
}

.consultation-header h2 {
    margin: 15px 0 0;
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.02;
    letter-spacing: -.047em;
    font-weight: 650;
}

.consultation-header h2 span {
    display: block;
}

.consultation-header p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #b9bfd9;
    font-size: 14px;
    line-height: 1.62;
}

.consultation-form {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.consultation-field {
    min-width: 0;
}

.consultation-field label,
.consultation-contact-method legend {
    display: block;
    margin-bottom: 8px;
    color: #b8bfdc;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .03em;
}

.consultation-input {
    min-height: 59px;
    padding: 0 17px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(195, 165, 255, .19);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.022)),
        rgba(20, 21, 45, .70);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition:
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.consultation-input:focus-within {
    border-color: rgba(119, 150, 255, .62);
    background:
        linear-gradient(145deg, rgba(74, 111, 221, .10), rgba(132, 67, 205, .06)),
        rgba(20, 21, 45, .78);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 0 0 4px rgba(102, 104, 255, .07),
        0 12px 26px rgba(42, 39, 119, .16);
}

.consultation-input.is-invalid {
    border-color: rgba(255, 102, 145, .62);
    box-shadow: 0 0 0 4px rgba(255, 82, 130, .06);
}

.consultation-input svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #8fa6df;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consultation-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 14px;
}

.consultation-input input::placeholder {
    color: #747d9d;
}

.consultation-field-error {
    min-height: 15px;
    margin-top: 5px;
    display: block;
    color: #ff8eaf;
    font-size: 9px;
}

.consultation-contact-method {
    grid-column: 1 / -1;
    margin: 0;
    padding: 0;
    border: 0;
}

.consultation-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.consultation-method {
    min-height: 54px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(190, 163, 255, .14);
    border-radius: 17px;
    color: #aeb5d0;
    background: rgba(255,255,255,.032);
    cursor: pointer;
    transition:
        transform .22s ease,
        border-color .22s ease,
        color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.consultation-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consultation-method:hover {
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(148, 127, 255, .28);
    background: rgba(255,255,255,.055);
}

.consultation-method.is-selected {
    color: #fff;
    border-color: rgba(157, 120, 255, .46);
    background:
        radial-gradient(circle at 20% 0%, rgba(49, 181, 255, .18), transparent 48%),
        linear-gradient(120deg, rgba(64, 125, 234, .13), rgba(162, 70, 220, .14));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 10px 24px rgba(57, 47, 149, .17);
}

.consultation-method-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 27px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, rgba(46, 177, 255, .88), rgba(124, 84, 255, .90));
}

.consultation-method-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consultation-method-icon img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(6, 15, 36, .22));
}

.consultation-method-icon--brand {
    background: linear-gradient(135deg, rgba(62, 169, 255, .96), rgba(184, 82, 255, .92));
}

.consultation-method-icon--whatsapp img {
    width: 18px;
    height: 18px;
}


.consultation-method-icon--max img {
    width: 16px;
    height: 16px;
}

.consultation-method > span:last-child {
    font-size: 11px;
    font-weight: 750;
}

.consultation-consent {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: #aeb6d4;
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.consultation-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.consultation-checkbox {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(184, 153, 255, .25);
    border-radius: 7px;
    background: rgba(255,255,255,.035);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.consultation-checkbox svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.65);
    transition: opacity .18s ease, transform .22s cubic-bezier(.22,1,.36,1);
}

.consultation-consent input:checked + .consultation-checkbox {
    border-color: rgba(128, 115, 255, .62);
    background: linear-gradient(135deg, #31adff, #7a67ff 58%, #bf54eb);
    box-shadow: 0 8px 18px rgba(89, 69, 204, .24);
}

.consultation-consent input:checked + .consultation-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.consultation-policy-link {
    padding: 0;
    border: 0;
    color: #b995ff;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(185,149,255,.40);
    text-underline-offset: 3px;
    cursor: pointer;
}

.consultation-policy-link:hover {
    color: #d8c1ff;
}

.consultation-consent-error {
    grid-column: 1 / -1;
    margin-top: -10px;
    font-size: 10px;
}

.consultation-honeypot {
    position: fixed !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.consultation-submit-row {
    grid-column: 1 / -1;
    margin-top: 1px;
    display: grid;
    grid-template-columns: minmax(260px, .88fr) minmax(260px, 1.12fr);
    align-items: center;
    gap: 18px;
}

.consultation-submit {
    position: relative;
    min-height: 60px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.25), transparent 31%),
        linear-gradient(108deg, #22a7ff 0%, #4e7cff 31%, #845fff 63%, #ca4ceb 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.32),
        0 16px 34px rgba(67, 88, 229, .26),
        0 18px 42px rgba(173, 65, 232, .18);
    font-size: 16px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .24s ease, filter .24s ease, box-shadow .24s ease;
}

.consultation-submit:hover {
    transform: translateY(-3px);
    filter: saturate(1.12) brightness(1.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.37),
        0 19px 42px rgba(64, 105, 244, .33),
        0 23px 50px rgba(183, 65, 236, .24);
}

.consultation-submit:disabled {
    cursor: wait;
    opacity: .46;
    transform: none;
    filter: grayscale(.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 18px rgba(32,34,76,.14);
}

.consultation-submit > svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consultation-spinner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,.28);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: consultationSpin .7s linear infinite;
}

.consultation-submit.is-loading [data-submit-text],
.consultation-submit.is-loading > svg {
    opacity: 0;
}

.consultation-submit.is-loading .consultation-spinner {
    opacity: 1;
}

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

.consultation-response-time {
    min-height: 48px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(95, 176, 255, .12);
    border-radius: 16px;
    color: #9da6c7;
    background: rgba(255,255,255,.025);
    font-size: 13px;
    line-height: 1.5;
}

.consultation-response-time i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #5de0ad;
    box-shadow: 0 0 13px rgba(93,224,173,.68);
}

.consultation-response-time strong {
    font-size: 14px;
    color: #dce2f6;
    font-weight: 800;
}

.consultation-form-message {
    grid-column: 1 / -1;
    min-height: 18px;
    color: #ff9ab7;
    font-size: 10px;
    line-height: 1.4;
}

.consultation-success {
    min-height: 510px;
    padding: 65px 40px 35px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.consultation-success.is-visible {
    display: flex;
}

.consultation-success-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.21);
    border-radius: 27px;
    color: #fff;
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,.30), transparent 33%),
        linear-gradient(135deg, #27b5f4, #6e71ff 55%, #bd56ec);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 20px 45px rgba(82, 72, 215, .31);
}

.consultation-success-icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consultation-success h2 {
    max-width: 580px;
    margin: 17px 0 0;
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.consultation-success p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #b6bdd7;
    font-size: 14px;
    line-height: 1.62;
}

.consultation-success-close {
    min-width: 220px;
    min-height: 54px;
    margin-top: 27px;
    padding: 0 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(110deg, #2aa7ff, #7169ff 55%, #bd53eb);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 14px 30px rgba(86,66,202,.26);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.consultation-form-state.is-hidden {
    display: none;
}

body.consultation-opened .back-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 760px) {
    .consultation-modal {
        padding: 10px;
    }

    .consultation-shell {
        max-height: calc(100svh - 20px);
        padding: 27px 19px 22px;
        border-radius: 27px;
    }

    .consultation-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .consultation-header {
        padding-right: 42px;
    }

    .consultation-header h2 {
        font-size: 35px;
    }

    .consultation-header p {
        font-size: 13px;
    }

    .consultation-form {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .consultation-contact-method,
    .consultation-consent,
    .consultation-consent-error,
    .consultation-submit-row,
    .consultation-form-message {
        grid-column: 1;
    }

    .consultation-methods {
        grid-template-columns: 1fr 1fr;
    }

    .consultation-submit-row {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .consultation-response-time {
        min-height: 45px;
    }

    .consultation-success {
        min-height: 470px;
        padding: 50px 8px 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .consultation-modal,
    .consultation-shell,
    .consultation-method,
    .consultation-submit,
    .consultation-checkbox svg {
        transition: none !important;
    }

    .consultation-spinner {
        animation-duration: 1.2s;
    }
}


/* ===== Исправление формы заявки после регрессии ===== */

/*
 * Внешняя стеклянная карточка больше сама не прокручивается.
 * Это гарантирует полноценное скругление справа и снизу.
 */
.consultation-shell {
    overflow: hidden !important;
    scrollbar-width: none !important;
    scrollbar-gutter: auto !important;
}

.consultation-shell::-webkit-scrollbar {
    display: none !important;
}

/* Прокрутка живёт внутри содержимого формы. */
.consultation-form-state {
    max-height: calc(100svh - 116px);
    padding-right: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 102, 255, .92) rgba(255,255,255,.035);
}

.consultation-form-state::-webkit-scrollbar {
    width: 9px;
    height: 0;
}

.consultation-form-state::-webkit-scrollbar-track {
    margin: 54px 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}

.consultation-form-state::-webkit-scrollbar-thumb {
    border: 2px solid rgba(12, 12, 34, .50);
    border-radius: 999px;
    background:
        linear-gradient(
            180deg,
            #3db8ff 0%,
            #776dff 52%,
            #c355ed 100%
        );
    box-shadow:
        0 0 14px rgba(150, 98, 255, .32);
}

.consultation-form-state::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(
            180deg,
            #5bc5ff 0%,
            #8b7cff 52%,
            #d269f1 100%
        );
}

/* Нижней горизонтальной прокрутки нет ни при каком масштабе. */
.consultation-modal,
.consultation-shell,
.consultation-form-state,
.consultation-form {
    max-width: 100%;
    overflow-x: hidden;
}

/* Согласие — крупнее и строго по центру относительно чекбокса. */
.consultation-consent {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 28px;
    color: #b7bfdc;
    font-size: 14px;
    line-height: 1.42;
}

.consultation-checkbox {
    width: 23px;
    height: 23px;
    align-self: center;
}

.consultation-policy-link {
    font-size: inherit;
    line-height: inherit;
}

/* Информационная строка справа от кнопки — читаемая, но не тяжёлая. */
.consultation-response-time {
    min-height: 54px;
    padding: 0 17px;
    font-size: 14px;
    line-height: 1.48;
}

.consultation-response-time strong {
    font-size: 15px;
    font-weight: 850;
}

/* Главная кнопка формы. */
.consultation-submit {
    min-height: 60px;
    font-size: 17px;
}

/* До согласия кнопка явно неактивна. */
.consultation-submit:disabled {
    cursor: not-allowed;
    opacity: .44;
    filter: saturate(.55);
    transform: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 7px 18px rgba(30, 31, 76, .12);
}

.consultation-submit:not(:disabled):hover {
    transform: translateY(-3px);
    filter: saturate(1.12) brightness(1.07);
}

/* Старый hover не должен оживлять disabled-кнопку. */
.consultation-submit:disabled:hover {
    transform: none;
    filter: saturate(.55);
}

/* Success-state не требует внутреннего скролла при обычной высоте экрана. */
.consultation-success {
    max-height: calc(100svh - 116px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Планшеты/маленькие ноутбуки */
@media (max-height: 820px) and (min-width: 761px) {
    .consultation-shell {
        padding-top: 28px;
        padding-bottom: 26px;
    }

    .consultation-form-state {
        max-height: calc(100svh - 92px);
    }

    .consultation-header h2 {
        font-size: 38px;
    }

    .consultation-form {
        margin-top: 22px;
        gap: 14px 18px;
    }
}

@media (max-width: 760px) {
    .consultation-form-state {
        max-height: calc(100svh - 72px);
        padding-right: 7px;
    }

    .consultation-consent {
        font-size: 13px;
    }

    .consultation-response-time {
        font-size: 13px;
    }

    .consultation-response-time strong {
        font-size: 14px;
    }
}


/* ===== Телефон и аккуратная подсветка кнопки заявки ===== */

/*
 * Синий декоративный glow в левом нижнем углу формы раньше визуально
 * сливался с кнопкой и выглядел как большой прямоугольный засвет.
 */
.consultation-glow--blue {
    width: 190px;
    height: 190px;
    left: -125px;
    bottom: -125px;
    opacity: .24;
    background:
        radial-gradient(
            circle,
            rgba(42, 174, 255, .16) 0%,
            rgba(42, 174, 255, .07) 38%,
            transparent 72%
        );
}

/* Неактивное состояние остаётся спокойным и явно disabled. */
.consultation-submit:disabled {
    border-color: rgba(255,255,255,.10);
    background:
        linear-gradient(
            105deg,
            rgba(66, 121, 171, .38),
            rgba(103, 83, 167, .38) 56%,
            rgba(151, 70, 170, .34)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.09);
    opacity: .48;
}

/* После установки галочки — ровное мягкое свечение по форме pill. */
.consultation-submit:not(:disabled) {
    border-color: rgba(255,255,255,.27);
    background:
        radial-gradient(
            circle at 17% 10%,
            rgba(255,255,255,.22),
            transparent 31%
        ),
        linear-gradient(
            108deg,
            #24a9ff 0%,
            #507dff 32%,
            #8560ff 63%,
            #c64eeb 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.32),
        0 8px 20px rgba(58, 130, 238, .17),
        0 10px 24px rgba(168, 75, 224, .14);
    filter: none;
}

.consultation-submit:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.055) saturate(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.36),
        0 10px 24px rgba(58, 137, 244, .22),
        0 12px 29px rgba(178, 76, 232, .18);
}

.consultation-submit:not(:disabled):active {
    transform: translateY(0) scale(.99);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 5px 14px rgba(71, 105, 220, .16);
}


/* ===== Финальная маска телефона и мягкая CTA-подсветка ===== */

/* Декоративный голубой glow больше не конкурирует с кнопкой. */
.consultation-glow--blue {
    width: 260px;
    height: 260px;
    left: -190px;
    bottom: -190px;
    opacity: .10;
    background:
        radial-gradient(
            circle,
            rgba(53, 183, 255, .14) 0%,
            rgba(53, 183, 255, .05) 38%,
            transparent 72%
        );
}

/*
 * В обычном активном состоянии не используем большой внешний box-shadow:
 * именно он на прокручиваемом glass-контейнере мог давать резкий
 * прямоугольный край. Свет теперь формируется самим градиентом кнопки.
 */
.consultation-submit:not(:disabled) {
    border-color: rgba(255,255,255,.30);
    background:
        radial-gradient(
            ellipse at 18% 5%,
            rgba(255,255,255,.25) 0%,
            rgba(255,255,255,.08) 25%,
            transparent 48%
        ),
        linear-gradient(
            108deg,
            #2aafff 0%,
            #5582ff 31%,
            #8662ff 63%,
            #c74feb 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -1px 0 rgba(92, 57, 182, .20);
    filter: none;
}

/* Очень лёгкая тень появляется только при наведении и остаётся округлой. */
.consultation-submit:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.045) saturate(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.38),
        inset 0 -1px 0 rgba(92, 57, 182, .18),
        0 7px 15px rgba(88, 100, 224, .12);
}

.consultation-submit:not(:disabled):active {
    transform: translateY(0) scale(.992);
    filter: brightness(.99);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        inset 0 2px 5px rgba(35, 29, 92, .16);
}

/* Даём немного воздуха снизу, чтобы даже hover-тень не касалась scroll-границы. */
.consultation-form {
    padding-bottom: 12px;
}


/* ===== Статичное окно заявки без внутреннего скролла ===== */

/*
 * Форма — статичное модальное окно. Никаких внутренних полос прокрутки:
 * весь интерфейс ужимается по высоте и остаётся внутри glass-карточки.
 */
.consultation-shell {
    width: min(820px, calc(100vw - 36px));
    max-height: calc(100svh - 32px);
    padding: 28px 30px 26px;
    overflow: hidden !important;
    scrollbar-width: none !important;
}

.consultation-shell::-webkit-scrollbar,
.consultation-form-state::-webkit-scrollbar,
.consultation-success::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.consultation-form-state,
.consultation-success {
    max-height: none !important;
    padding-right: 0 !important;
    overflow: visible !important;
    scrollbar-width: none !important;
    scrollbar-color: auto !important;
}

.consultation-header {
    padding-right: 52px;
}

.consultation-header h2 {
    margin-top: 12px;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.01;
}

.consultation-header p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.consultation-form {
    margin-top: 21px;
    padding-bottom: 0;
    gap: 12px 16px;
}

.consultation-field label,
.consultation-contact-method legend {
    margin-bottom: 6px;
}

.consultation-input {
    min-height: 54px;
}

.consultation-field-error {
    min-height: 11px;
    margin-top: 3px;
}

.consultation-methods {
    gap: 8px;
}

.consultation-method {
    min-height: 50px;
}

.consultation-consent {
    min-height: 25px;
    margin-top: 1px;
}

.consultation-consent-error {
    min-height: 10px;
    margin-top: -9px;
}

.consultation-submit-row {
    margin-top: 0;
    gap: 15px;
}

.consultation-submit {
    min-height: 56px;
}

.consultation-response-time {
    min-height: 50px;
}

.consultation-form-message {
    min-height: 10px;
}

/* На невысоких ноутбуках дополнительно уплотняем окно, но не добавляем скролл. */
@media (max-height: 820px) and (min-width: 761px) {
    .consultation-modal {
        padding: 10px;
    }

    .consultation-shell {
        width: min(850px, calc(100vw - 24px));
        max-height: calc(100svh - 20px);
        padding: 22px 26px 20px;
    }

    .consultation-kicker {
        min-height: 24px;
        font-size: 9px;
    }

    .consultation-header h2 {
        margin-top: 9px;
        font-size: 34px;
        line-height: 1;
    }

    .consultation-header p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.42;
    }

    .consultation-form {
        margin-top: 16px;
        gap: 8px 14px;
    }

    .consultation-input {
        min-height: 48px;
    }

    .consultation-method {
        min-height: 45px;
    }

    .consultation-method > span:last-child {
        font-size: 10px;
    }

    .consultation-consent {
        font-size: 12px;
        line-height: 1.34;
    }

    .consultation-submit {
        min-height: 50px;
        font-size: 15px;
    }

    .consultation-response-time {
        min-height: 46px;
        font-size: 12px;
    }

    .consultation-response-time strong {
        font-size: 13px;
    }
}

/*
 * На телефонах форма остаётся статичной; элементы переходят в один столбец.
 * Высоту не ограничиваем собственной полосой скролла.
 */
@media (max-width: 760px) {
    .consultation-modal {
        padding: 8px;
        align-items: center;
    }

    .consultation-shell {
        width: calc(100vw - 16px);
        max-height: calc(100svh - 16px);
        padding: 20px 17px 18px;
        border-radius: 24px;
    }

    .consultation-header h2 {
        font-size: 30px;
    }

    .consultation-form {
        margin-top: 16px;
        gap: 9px;
    }

    .consultation-input {
        min-height: 49px;
    }

    .consultation-method {
        min-height: 44px;
    }

    .consultation-consent {
        font-size: 12px;
    }

    .consultation-submit {
        min-height: 50px;
    }
}

/* ===== Динамические тарифы и карусель ===== */
.tariff-carousel {
    position: relative;
}

.tariff-carousel-controls {
    display: none;
}

.tariff-carousel.is-enabled {
    padding-bottom: 62px;
}

.tariff-carousel.is-enabled .tariff-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, calc((100% - 72px) / 3.15));
    gap: 18px;
    padding: 12px 84px 8px 2px;
    margin: -12px -2px -8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.tariff-carousel.is-enabled .tariff-grid::-webkit-scrollbar {
    display: none;
}

.tariff-carousel.is-enabled .tariff-card {
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Внутри горизонтального viewport рекомендуемая карточка не выходит
   за границы трека и поэтому не обрезается сверху. */
.tariff-carousel.is-enabled .tariff-card--accent {
    transform: none;
}

.tariff-carousel.is-enabled .tariff-card--accent:hover {
    transform: translateY(-6px);
}

.tariff-carousel.is-enabled .tariff-carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tariff-carousel-controls[hidden] {
    display: none !important;
}

.tariff-carousel-controls > button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(165, 139, 255, .20);
    border-radius: 14px;
    color: #dfe7ff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
        rgba(15,16,40,.70);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}

.tariff-carousel-controls > button:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(117, 149, 255, .42);
}

.tariff-carousel-controls > button:disabled {
    opacity: .28;
    cursor: default;
}

.tariff-carousel-controls svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tariff-carousel-progress {
    min-width: 88px;
    height: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(165, 139, 255, .12);
    border-radius: 14px;
    color: #8e98ba;
    background: rgba(255,255,255,.025);
    font-size: 9px;
    font-weight: 800;
}

.tariff-carousel-progress span:first-child {
    color: #eef2ff;
}

.tariff-carousel-progress i {
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(53,169,255,.7), rgba(187,79,235,.7));
}

/* Короткая ненавязчивая индикация, если цена обновилась на уже открытой странице. */
.calculator-section.pricing-was-updated .calculator-result::after {
    content: "Стоимость обновлена";
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 5;
    padding: 7px 10px;
    border: 1px solid rgba(94, 220, 168, .22);
    border-radius: 999px;
    color: #a8ebcc;
    background: rgba(44, 135, 98, .15);
    font-size: 8px;
    font-weight: 800;
    animation: pricingUpdateNotice 1.6s ease both;
}

@keyframes pricingUpdateNotice {
    0%, 100% { opacity: 0; transform: translateY(5px); }
    15%, 80% { opacity: 1; transform: translateY(0); }
}

/* ===== Предпросмотр из админ-панели ===== */
.preview-mode {
    padding-top: 38px;
}

.preview-mode .site-header {
    top: 38px;
}

.preview-banner {
    position: fixed;
    inset: 0 0 auto;
    z-index: 9999;
    height: 38px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid rgba(166, 132, 255, .30);
    color: #dcd4ff;
    background: rgba(26, 20, 55, .94);
    backdrop-filter: blur(15px);
    font-size: 9px;
}

.preview-banner strong {
    color: #8fc3ff;
    letter-spacing: .08em;
}

.preview-banner a {
    margin-left: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(174, 139, 255, .20);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.04);
    font-weight: 800;
}

@media (max-width: 1150px) {
    .tariff-carousel.is-enabled .tariff-grid {
        grid-template-columns: none;
        grid-auto-columns: minmax(320px, calc((100% - 42px) / 2.1));
        padding-right: 72px;
    }

    .tariff-carousel.is-enabled .tariff-card {
        min-height: 590px;
    }
}

@media (max-width: 720px) {
    .tariff-carousel.is-enabled {
        padding-bottom: 58px;
    }

    .tariff-carousel.is-enabled .tariff-grid {
        grid-auto-columns: 86%;
        gap: 12px;
        padding-right: 14%;
    }

    .tariff-carousel.is-enabled .tariff-card {
        min-height: auto;
    }

    .preview-banner {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }
}


.tariff-carousel.is-enabled::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 148px;
    height: calc(100% - 62px);
    pointer-events: none;
    background: linear-gradient(90deg, rgba(7, 8, 21, 0), rgba(7, 8, 21, .58) 45%, rgba(7, 8, 21, .92));
    opacity: .95;
    transition: opacity .3s ease;
}

.tariff-carousel.is-enabled.is-near-end::after {
    opacity: 0;
}

.tariff-carousel-hint {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 4;
    min-height: 54px;
    max-width: 300px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(167, 140, 255, .18);
    border-radius: 18px;
    color: #eef2ff;
    background: linear-gradient(135deg, rgba(16, 18, 45, .84), rgba(44, 24, 94, .70));
    box-shadow: 0 18px 46px rgba(6, 7, 16, .24), inset 0 1px 0 rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    transition: opacity .28s ease, transform .28s ease;
}

.tariff-carousel-hint[hidden] {
    display: none !important;
}

.tariff-carousel-hint.is-dismissed {
    opacity: 0;
    transform: translateY(-10px);
}

.tariff-carousel-hint__pulse {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #37c8ff, #bb5cff);
    box-shadow: 0 0 0 0 rgba(115, 143, 255, .44);
    animation: tariffHintPulse 1.8s ease-in-out infinite;
}

.tariff-carousel-hint strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.tariff-carousel-hint span {
    display: block;
    margin-top: 3px;
    color: rgba(240, 244, 255, .72);
    font-size: 12px;
    line-height: 1.45;
}

@keyframes tariffHintPulse {
    0% { box-shadow: 0 0 0 0 rgba(115, 143, 255, .42); }
    70% { box-shadow: 0 0 0 10px rgba(115, 143, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(115, 143, 255, 0); }
}

@media (max-width: 1150px) {
    .tariff-carousel.is-enabled::after {
        width: 120px;
    }

    .tariff-carousel-hint {
        top: 16px;
        right: 16px;
        max-width: 250px;
        padding: 10px 13px;
    }
}

@media (max-width: 720px) {
    .tariff-carousel.is-enabled::after {
        width: 88px;
        height: calc(100% - 58px);
    }

    .tariff-carousel-hint {
        top: auto;
        right: 10px;
        bottom: 68px;
        left: 10px;
        max-width: none;
        padding: 11px 13px;
    }

    .tariff-carousel-hint strong {
        font-size: 13px;
    }

    .tariff-carousel-hint span {
        font-size: 11px;
    }
}


/* ===== Более заметная карусель тарифов ===== */
/* При 4+ тарифах показываем три основные карточки и край следующей.
   Это сразу даёт понять, что ряд можно листать горизонтально. */
.tariff-carousel.is-enabled .tariff-grid {
    grid-auto-columns: calc((100% - 58px) / 3.18);
    padding-right: 6.5%;
}

.tariff-more-hint {
    position: absolute;
    z-index: 8;
    right: 4px;
    top: 18px;
    transform: none;
    min-height: 44px;
    padding: 0 14px 0 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(160, 133, 255, .28);
    border-radius: 999px 0 0 999px;
    color: #e9ecff;
    background: linear-gradient(105deg, rgba(20,25,58,.94), rgba(45,29,78,.94));
    box-shadow: -12px 0 34px rgba(44, 39, 112, .28), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    animation: tariffMoreHintPulse 2.4s ease-in-out infinite;
}

.tariff-more-hint[hidden],
.tariff-more-hint.is-hidden {
    display: none !important;
}

.tariff-more-hint span {
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.tariff-more-hint i {
    color: #ae79ff;
    font-size: 20px;
    font-style: normal;
    line-height: 1;
    animation: tariffMoreArrow 1.25s ease-in-out infinite;
}

@keyframes tariffMoreHintPulse {
    0%, 100% { box-shadow: -12px 0 30px rgba(44,39,112,.20), inset 0 1px 0 rgba(255,255,255,.08); }
    50% { box-shadow: -16px 0 42px rgba(128,72,222,.34), inset 0 1px 0 rgba(255,255,255,.11); }
}

@keyframes tariffMoreArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@media (max-width: 1150px) {
    .tariff-carousel.is-enabled .tariff-grid {
        grid-auto-columns: calc((100% - 42px) / 2.18);
        padding-right: 8%;
    }
}

@media (max-width: 720px) {
    .tariff-carousel.is-enabled .tariff-grid {
        grid-auto-columns: 84%;
        padding-right: 16%;
    }
    .tariff-more-hint {
        right: 2px;
        top: 12px;
        min-height: 40px;
        padding-left: 13px;
    }
    .tariff-more-hint span { font-size: 10px; }
}


/* Предпросмотр, встроенный в админ-панель: верхнюю служебную полосу рисует сама админка. */
.preview-mode.preview-embedded { padding-top: 0; }
.preview-mode.preview-embedded .site-header { top: 0; }

/* ===== Performance pass 2026-08: faster public site ===== */

/*
 * Большие fixed-слои с CSS blur и SVG turbulence сильно нагружали
 * композитинг при прокрутке. Фон сохраняет тот же характер, но без
 * постоянного перерасчёта размытия на каждый кадр.
 */
.page-noise {
    display: none !important;
}

.ambient {
    width: 760px;
    height: 760px;
    filter: none !important;
    border-radius: 50%;
    opacity: .9;
}

.ambient--blue {
    left: -430px;
    bottom: -430px;
    background: radial-gradient(circle, rgba(35,102,255,.22) 0%, rgba(35,102,255,.09) 34%, transparent 70%);
}

.ambient--violet {
    right: -460px;
    top: -450px;
    background: radial-gradient(circle, rgba(174,58,255,.22) 0%, rgba(174,58,255,.08) 35%, transparent 70%);
}

/*
 * Backdrop-filter на больших стеклянных поверхностях — самая дорогая часть
 * текущего оформления. Оставляем стеклянный вид за счёт полупрозрачного
 * фона/границ, но не размываем всю область позади карточки каждый кадр.
 */
.tariff-card,
.calculator-shell,
.benefit-dashboard,
.benefit-card,
.benefits-cta,
.process-card,
.process-cta,
.contact-main,
.map-card,
.tariff-carousel-hint,
.tariff-more-hint,
.consultation-shell {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Маленькие контролы сохраняют лёгкий glass, но с менее тяжёлым blur. */
.site-header,
.eyebrow,
.button--ghost,
.button,
.header-cta,
.tariff-button,
.result-button,
.section-rail-toggle,
.section-rail-panel,
.back-to-top {
    -webkit-backdrop-filter: blur(6px) !important;
    backdrop-filter: blur(6px) !important;
}

/* Ограничиваем перерисовку сложных карточек их собственными границами. */
.tariff-card,
.benefit-dashboard,
.benefit-card,
.process-card,
.process-cta {
    contain: paint;
}

/*
 * Пока страница реально движется, временно отключаем декоративные слои,
 * анимации и сложные тени. После остановки они возвращаются автоматически.
 */
body.is-scrolling .benefits-decoration,
body.is-scrolling .process-background,
body.is-scrolling .process-cta-aura,
body.is-scrolling .visual-orbit,
body.is-scrolling .tariff-glow {
    visibility: hidden !important;
}

body.is-scrolling .visual-orbit--two,
body.is-scrolling .floating-card,
body.is-scrolling .scroll-hint i::after,
body.is-scrolling .dashboard-progress-track span,
body.is-scrolling .tariff-carousel-hint__pulse,
body.is-scrolling .tariff-more-hint,
body.is-scrolling .tariff-more-hint i {
    animation-play-state: paused !important;
}

body.is-scrolling .tariff-card,
body.is-scrolling .calculator-shell,
body.is-scrolling .benefit-dashboard,
body.is-scrolling .benefit-card,
body.is-scrolling .process-card,
body.is-scrolling .process-cta,
body.is-scrolling .contact-main,
body.is-scrolling .map-card {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}

body.is-scrolling .site-header,
body.is-scrolling .section-rail-toggle,
body.is-scrolling .section-rail-panel,
body.is-scrolling .back-to-top,
body.is-scrolling .button,
body.is-scrolling .header-cta,
body.is-scrolling .tariff-button,
body.is-scrolling .result-button {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* На hover не просим браузер одновременно пересчитывать blur + тень. */
@media (hover: hover) {
    .tariff-card,
    .benefit-card,
    .process-card,
    .button,
    .header-cta,
    .tariff-button,
    .result-button {
        transition-duration: .18s !important;
    }
}

/* На устройствах, которые уже определились как слабые, отключаем всё лишнее. */
body.reduced-effects .benefits-decoration,
body.reduced-effects .process-background,
body.reduced-effects .visual-orbit--two,
body.reduced-effects .process-cta-aura {
    display: none !important;
}

body.reduced-effects .site-header,
body.reduced-effects .eyebrow,
body.reduced-effects .button,
body.reduced-effects .header-cta,
body.reduced-effects .tariff-button,
body.reduced-effects .result-button,
body.reduced-effects .section-rail-toggle,
body.reduced-effects .section-rail-panel {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Иконка VK в контактах. */
.messenger-button--vk img {
    width: 31px;
    height: 31px;
    margin-right: 9px;
    object-fit: contain;
}

/* ===== Messenger buttons — calm CTA hover ===== */

/*
 * VK / Telegram / MAX ведут себя так же спокойно, как «Получить консультацию»:
 * небольшой подъём, мягкое усиление градиента и аккуратная тень.
 * Никаких бликов, вращений, «дыхания» и резких масштабирований.
 */
.messenger-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transform: translateY(0) scale(1);
    border-color: rgba(255,255,255,.24);
    transition:
        transform .24s cubic-bezier(.22,1,.36,1) !important,
        filter .24s ease !important,
        box-shadow .24s ease !important,
        border-color .24s ease !important;
}

.messenger-button::before {
    display: none !important;
}

.messenger-button::after {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 7px;
    pointer-events: none;
    color: rgba(255,255,255,.67);
    font-size: 7px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition:
        color .24s ease !important,
        transform .24s ease !important;
}

.messenger-button img,
.messenger-button > span {
    position: relative;
    z-index: 4;
}

.messenger-button img {
    transition:
        transform .24s cubic-bezier(.22,1,.36,1) !important,
        filter .24s ease !important;
}

.messenger-button > span {
    transition:
        transform .24s cubic-bezier(.22,1,.36,1) !important;
}

/* Последний белый VK-логотип. */
.messenger-button--vk img {
    width: 41px !important;
    height: 34px !important;
    margin-left: 0 !important;
    margin-right: 9px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.18)) !important;
}

/* Telegram остаётся визуально крупнее. */
.messenger-button--telegram img {
    width: 62px !important;
    height: 62px !important;
    margin-left: -6px !important;
    margin-right: -2px !important;
}

/* Hover повторяет механику consultation-submit. */
.messenger-button:hover,
.messenger-button.is-messenger-hover {
    transform: translateY(-2px) scale(1.008) !important;
    filter: brightness(1.045) saturate(1.04) !important;
    border-color: rgba(255,255,255,.34) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.38),
        inset 0 -1px 0 rgba(92,57,182,.16),
        0 7px 15px rgba(88,100,224,.12) !important;
}

.messenger-button:hover img,
.messenger-button.is-messenger-hover img {
    transform: translateY(-1px) scale(1.025) !important;
}

.messenger-button:hover > span,
.messenger-button.is-messenger-hover > span {
    transform: translateY(-1px) !important;
}

.messenger-button:hover::after,
.messenger-button.is-messenger-hover::after {
    color: rgba(255,255,255,.82);
    transform: translateY(-1px);
}

.messenger-button:active,
.messenger-button.is-messenger-pressed {
    transform: translateY(0) scale(.992) !important;
    filter: brightness(.99) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        inset 0 2px 5px rgba(35,29,92,.16) !important;
}

@media (prefers-reduced-motion: reduce) {
    .messenger-button,
    .messenger-button img,
    .messenger-button > span,
    .messenger-button::after {
        transition-duration: .24s !important;
    }
}

@media (max-width: 680px) {
    .messenger-button--vk img {
        width: 38px !important;
        height: 31px !important;
    }

    .messenger-button--telegram img {
        width: 56px !important;
        height: 56px !important;
    }
}


/* ===== Header blur — permanently smooth edge ===== */

/*
 * Производительная оптимизация раньше включала blur непосредственно
 * на прямоугольнике .site-header, поэтому после остановки прокрутки
 * появлялась резкая горизонтальная граница ровно по высоте хедера.
 *
 * Сам header теперь ВСЕГДА прозрачный. Blur живёт только на расширенном
 * псевдоэлементе, который плавно растворяется ниже хедера.
 */
.site-header {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    overflow: visible;
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: -92px;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(7,8,21,.97) 0%,
            rgba(7,8,21,.91) 35%,
            rgba(7,8,21,.68) 57%,
            rgba(7,8,21,.34) 73%,
            rgba(7,8,21,.12) 86%,
            rgba(7,8,21,.035) 94%,
            transparent 100%
        ) !important;
    -webkit-backdrop-filter: blur(10px) saturate(108%) !important;
    backdrop-filter: blur(10px) saturate(108%) !important;
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 55%,
            rgba(0,0,0,.88) 66%,
            rgba(0,0,0,.54) 79%,
            rgba(0,0,0,.18) 91%,
            transparent 100%
        ) !important;
    mask-image:
        linear-gradient(
            to bottom,
            #000 0%,
            #000 55%,
            rgba(0,0,0,.88) 66%,
            rgba(0,0,0,.54) 79%,
            rgba(0,0,0,.18) 91%,
            transparent 100%
        ) !important;
}

/* Дополнительный очень мягкий цветовой fade скрывает даже 1px стык
   backdrop-filter в браузерах на Windows. */
.site-header::after {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 0;
    top: calc(100% - 18px);
    height: 110px;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(7,8,21,.17),
            rgba(7,8,21,.07) 38%,
            rgba(7,8,21,.018) 70%,
            transparent 100%
        );
}

/*
 * Во время и после прокрутки используется одна и та же схема хедера.
 * Поэтому после снятия body.is-scrolling визуальный край больше не меняется.
 */
body.is-scrolling .site-header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

body.is-scrolling .site-header::before {
    -webkit-backdrop-filter: blur(10px) saturate(108%) !important;
    backdrop-filter: blur(10px) saturate(108%) !important;
}


/* ===== Final visual fixes 2026-08-21 ===== */

/* 1. Подсветка номера тарифа больше не исчезает во время прокрутки.
   Вместо тяжёлого blur используем дешёвый radial-gradient. */
.tariff-glow {
    visibility: visible !important;
    filter: none !important;
    width: 260px;
    height: 260px;
    right: -118px;
    top: -128px;
    background:
        radial-gradient(
            circle,
            rgba(126, 74, 255, .30) 0%,
            rgba(126, 74, 255, .17) 34%,
            rgba(126, 74, 255, .07) 54%,
            transparent 73%
        ) !important;
}

.tariff-card--accent .tariff-glow {
    background:
        radial-gradient(
            circle,
            rgba(220, 83, 255, .34) 0%,
            rgba(190, 73, 255, .19) 34%,
            rgba(160, 68, 255, .08) 55%,
            transparent 73%
        ) !important;
}

body.is-scrolling .tariff-glow {
    visibility: visible !important;
    filter: none !important;
}


/* 2. Нижняя плашка «Вы развиваете бизнес / Мы поддерживаем порядок...»
   — единая типографика и аккуратный разделитель. */
.benefits-cta {
    padding-left: 24px;
}

.benefits-cta div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefits-cta span,
.benefits-cta strong {
    margin: 0;
    font-size: 16px !important;
    line-height: 1.3;
    letter-spacing: -.012em;
}

.benefits-cta span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #aab4d5;
    font-weight: 560;
}

.benefits-cta span::after {
    content: "";
    width: 1px;
    height: 18px;
    flex: 0 0 1px;
    border-radius: 999px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(141, 136, 218, .58) 25%,
            rgba(141, 136, 218, .58) 75%,
            transparent
        );
}

.benefits-cta strong {
    color: #ffffff;
    font-weight: 720;
}

@media (max-width: 760px) {
    .benefits-cta div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .benefits-cta span::after {
        display: none;
    }

    .benefits-cta span,
    .benefits-cta strong {
        font-size: 14px !important;
    }
}


/* 3. Подпись под «Обсудить переход» начинается ровно по левому краю кнопки. */
.process-cta-action {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
}

.process-cta-action a {
    width: 100%;
    box-sizing: border-box;
}

.process-cta-action small {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
}


/* ===== Messenger stability + reliable section rail 2026-08-21 ===== */

/* Кнопки мессенджеров: стабильная геометрия без raster-scale артефактов. */
.messenger-button {
    border-radius: 999px !important;
    transform: translateY(0) !important;
    filter: none !important;
    background:
        linear-gradient(
            115deg,
            rgba(23, 176, 219, .96) 0%,
            rgba(77, 111, 238, .97) 50%,
            rgba(170, 77, 231, .95) 100%
        ) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        inset 0 -1px 0 rgba(25,9,61,.24),
        0 12px 28px rgba(62,45,151,.23) !important;
    transition:
        transform .24s cubic-bezier(.22,1,.36,1) !important,
        box-shadow .24s ease !important,
        border-color .24s ease !important,
        background .24s ease !important;
    backface-visibility: hidden;
}

/* Текст и иконки не сдвигаются — после hover ничего не «прыгает». */
.messenger-button > span,
.messenger-button img {
    transform: none !important;
}

.messenger-button > span {
    transition: color .24s ease !important;
}

.messenger-button img {
    transition: filter .24s ease !important;
}

/* Мягкий CTA-hover без масштабирования всей pill-кнопки. */
.messenger-button:hover,
.messenger-button.is-messenger-hover {
    transform: translateY(-3px) !important;
    border-color: rgba(255,255,255,.40) !important;
    background:
        linear-gradient(
            115deg,
            rgba(31, 188, 231, .98) 0%,
            rgba(84, 121, 247, .99) 50%,
            rgba(181, 84, 239, .98) 100%
        ) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.40),
        inset 0 -1px 0 rgba(53,31,123,.18),
        0 10px 22px rgba(72,103,224,.18),
        0 8px 20px rgba(168,73,221,.13) !important;
    filter: none !important;
}

.messenger-button:hover > span,
.messenger-button.is-messenger-hover > span {
    transform: none !important;
    color: #fff !important;
}

.messenger-button:hover img,
.messenger-button.is-messenger-hover img {
    transform: none !important;
    filter:
        drop-shadow(0 3px 8px rgba(0,0,0,.18))
        drop-shadow(0 0 5px rgba(255,255,255,.11)) !important;
}

.messenger-button:active,
.messenger-button.is-messenger-pressed {
    transform: translateY(-1px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        inset 0 2px 5px rgba(35,29,92,.13) !important;
}

/* Убираем сдвиг нижней подписи на hover — она тоже остаётся на месте. */
.messenger-button:hover::after,
.messenger-button.is-messenger-hover::after {
    transform: none !important;
    color: rgba(255,255,255,.82);
}

/*
 * Боковая навигация: добавляем невидимый «мостик» между стрелкой и панелью.
 * Раньше между ними был физический зазор, поэтому курсор успевал покинуть
 * .section-rail и меню закрывалось до попадания на раскрытую панель.
 */
.section-rail::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 42px;
    width: 28px;
    height: 118px;
    transform: translateY(-50%);
    pointer-events: auto;
    background: transparent;
}

.section-rail-panel {
    right: 51px !important;
}

/* При JS-классе панель гарантированно остаётся открытой во время перехода курсора. */
.section-rail.is-open .section-rail-panel {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, -50%, 0) scale(1) !important;
}


/* ===== Visual polish: hero cards, tariff heading, selection 2026-08-21 ===== */

/* 1. Hero glass cards:
   убираем backdrop-filter с движущихся карточек — именно он давал
   мерцание/пересборку тени при прокрутке в Windows-браузерах.
   Внешне glass сохраняется за счёт более плотного градиента. */
.floating-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        linear-gradient(
            135deg,
            rgba(38, 39, 75, .94) 0%,
            rgba(25, 25, 54, .93) 58%,
            rgba(20, 19, 45, .92) 100%
        ) !important;
    box-shadow:
        0 18px 42px rgba(4, 5, 18, .34),
        0 6px 16px rgba(53, 36, 118, .12),
        inset 0 1px 0 rgba(255,255,255,.12) !important;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    contain: layout paint;
}

/* Во время прокрутки тень остаётся ровно той же — никаких подмен
   на performance-версию и никаких визуальных вспышек. */
body.is-scrolling .floating-card {
    box-shadow:
        0 18px 42px rgba(4, 5, 18, .34),
        0 6px 16px rgba(53, 36, 118, .12),
        inset 0 1px 0 rgba(255,255,255,.12) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* GPU-friendly версия исходного плавного движения. */
@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}


/* 2. Заголовок тарифов:
   описание больше не висит отдельным блоком далеко справа.
   Оно логически продолжает заголовок и оформлено как аккуратная заметка. */
.services-heading {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 15px !important;
    margin-bottom: 28px;
}

.services-heading > div {
    max-width: 900px;
}

.services-heading p {
    position: relative;
    max-width: 780px;
    margin: 2px 0 0 2px !important;
    padding: 3px 0 3px 18px;
    color: #b7c0dc !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    letter-spacing: -.01em;
}

.services-heading p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            to bottom,
            #39b8ff,
            #7d68ff 52%,
            #c551ed
        );
    box-shadow: 0 0 12px rgba(125,104,255,.20);
}

@media (max-width: 760px) {
    .services-heading {
        gap: 11px !important;
    }

    .services-heading p {
        max-width: none;
        padding-left: 14px;
        font-size: 13px !important;
    }
}


/* 3. Цвет выделения текста на публичном сайте. */
::selection {
    color: #fff;
    background: rgba(126, 86, 239, .82);
    text-shadow: none;
}

::-moz-selection {
    color: #fff;
    background: rgba(126, 86, 239, .82);
    text-shadow: none;
}

/* У полей ввода выделение чуть светлее, чтобы цифры/текст читались лучше. */
input::selection,
textarea::selection {
    color: #fff;
    background: rgba(145, 95, 246, .72);
}


/* ===== Performance pass 3 — lighter glass/shadows 2026-08-21 ===== */

/*
 * Основной принцип:
 * - blur оставляем только там, где он действительно заметен (фиксированный header,
 *   модальные окна);
 * - на крупных карточках glass имитируется полупрозрачными градиентами;
 * - большие 50–100px тени заменены на 20–40px аналоги;
 * - полноэкранный SVG turbulence заменён на дешёвый CSS-паттерн.
 */

/* Дешёвый статический noise вместо SVG feTurbulence на весь viewport. */
.page-noise {
    opacity: .022 !important;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.22) .45px, transparent .55px) !important;
    background-size: 4px 4px !important;
}

/* Большие ambient-пятна без filter: blur(120px). */
.ambient {
    width: 760px !important;
    height: 760px !important;
    filter: none !important;
    border-radius: 50%;
}

.ambient--blue {
    left: -390px !important;
    bottom: -410px !important;
    background:
        radial-gradient(
            circle,
            rgba(35,102,255,.18) 0%,
            rgba(35,102,255,.085) 38%,
            rgba(35,102,255,.025) 58%,
            transparent 73%
        ) !important;
}

.ambient--violet {
    right: -410px !important;
    top: -390px !important;
    background:
        radial-gradient(
            circle,
            rgba(174,58,255,.19) 0%,
            rgba(174,58,255,.085) 38%,
            rgba(174,58,255,.025) 58%,
            transparent 73%
        ) !important;
}

/* Крупные glass-блоки: без realtime backdrop-filter. */
.tariff-card,
.calculator-shell,
.benefit-dashboard,
.benefit-card,
.benefits-cta,
.process-card,
.process-cta,
.section-rail-toggle,
.section-rail-panel,
.back-to-top,
.back-to-top-label,
.tariff-carousel-hint,
.tariff-more-hint {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Карточки тарифов: тот же объём за счёт более плотного фона и короткой тени. */
.tariff-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.028)),
        rgba(15,16,38,.89) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 14px 32px rgba(0,0,0,.19) !important;
}

.tariff-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 18px 38px rgba(67,42,166,.20) !important;
}

/* Калькулятор — один из самых больших glass-слоёв страницы. */
.calculator-shell {
    background:
        radial-gradient(circle at 86% 8%, rgba(131,76,255,.07), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
        rgba(12,13,33,.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11),
        0 17px 42px rgba(0,0,0,.22) !important;
}

/* Поля калькулятора больше не размывают всё, что находится под каждым input. */
.liquid-select__button,
.field input[type="number"],
.range-row {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
        rgba(20,21,47,.91) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        inset 0 -1px 0 rgba(50,24,95,.12),
        0 7px 18px rgba(0,0,0,.10) !important;
}

.liquid-select__menu {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        linear-gradient(145deg, rgba(48,48,88,.96), rgba(14,15,37,.98)) !important;
    box-shadow:
        0 14px 34px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.11) !important;
}

.term-switch {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        rgba(10,11,29,.88) !important;
}

.liquid-range-thumb,
.range-row input[type="range"]::-webkit-slider-thumb {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* CTA-кнопки сами по себе непрозрачные — backdrop-filter им ничего не даёт. */
.button,
.header-cta,
.tariff-button,
.result-button {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Карточки преимуществ и процесса: уменьшаем стоимость repaint при прокрутке. */
.benefit-dashboard,
.benefit-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.benefit-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 15px 34px rgba(61,40,143,.17) !important;
}

.process-card {
    background:
        radial-gradient(circle at 95% 0%, rgba(119,83,255,.13), transparent 36%),
        linear-gradient(145deg, rgba(255,255,255,.066), rgba(255,255,255,.020)),
        rgba(13,15,36,.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11),
        0 13px 30px rgba(0,0,0,.18) !important;
}

.process-card:hover {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 17px 36px rgba(54,34,130,.20) !important;
}

.process-cta {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 13px 32px rgba(0,0,0,.18) !important;
}

/* Aura CTA без двух огромных filter: blur(54/58px). */
.process-cta-aura--blue {
    filter: none !important;
    background:
        radial-gradient(
            circle,
            rgba(40,172,255,.15) 0%,
            rgba(40,172,255,.06) 42%,
            transparent 72%
        ) !important;
}

.process-cta-aura--violet {
    filter: none !important;
    background:
        radial-gradient(
            circle,
            rgba(195,73,255,.16) 0%,
            rgba(195,73,255,.065) 42%,
            transparent 72%
        ) !important;
}

/* Боковое меню и вспомогательные плавающие элементы. */
.section-rail-toggle {
    background:
        radial-gradient(circle at 25% 18%, rgba(64,179,255,.14), transparent 46%),
        linear-gradient(145deg, rgba(88,66,174,.22), rgba(255,255,255,.035)),
        rgba(10,11,29,.93) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 8px 20px rgba(31,21,83,.22) !important;
}

.section-rail-panel {
    background:
        radial-gradient(circle at 95% 4%, rgba(177,87,255,.14), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
        rgba(9,10,27,.97) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11),
        0 14px 34px rgba(0,0,0,.26) !important;
}

.back-to-top,
.back-to-top-label {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Подсказки карусели появляются редко, но тоже больше не создают blur-layer. */
.tariff-carousel-hint,
.tariff-more-hint {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        linear-gradient(135deg, rgba(17,19,47,.97), rgba(45,25,95,.94)) !important;
}

/*
 * Header blur специально НЕ отключаем:
 * это единственный крупный backdrop-filter, который оставлен постоянно,
 * потому что его плавная граница является частью текущего дизайна.
 */


/* ===== Range thumb track mask 2026-08-21 ===== */

/*
 * Полоса range раньше просвечивала через полупрозрачный бегунок.
 * Делаем сам бегунок визуально стеклянным, но с достаточно плотной
 * внутренней подложкой — трек полностью скрывается под ним.
 */
.liquid-range-thumb {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background:
        radial-gradient(
            circle at 31% 23%,
            rgba(255,255,255,.94) 0%,
            rgba(255,255,255,.36) 20%,
            rgba(255,255,255,.10) 42%,
            transparent 54%
        ),
        linear-gradient(
            145deg,
            rgba(79,82,126,.98) 0%,
            rgba(54,53,96,.98) 48%,
            rgba(43,38,82,.98) 100%
        ) !important;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.78),
        inset 0 -4px 7px rgba(56,39,111,.18),
        0 8px 18px rgba(48,35,118,.34) !important;
}

/*
 * Дополнительная маска чуть шире центральной части бегунка.
 * Она находится внутри самого thumb и гарантированно перекрывает трек
 * даже на Firefox/Windows при субпиксельном позиционировании.
 */
.liquid-range-thumb::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 3px 1px;
    border-radius: inherit;
    background:
        linear-gradient(
            145deg,
            rgba(70,72,116,.995),
            rgba(48,45,91,.995)
        );
    pointer-events: none;
}

.range-row:focus-within .liquid-range-thumb,
.range-row:hover .liquid-range-thumb {
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.84),
        inset 0 -4px 7px rgba(56,39,111,.15),
        0 10px 22px rgba(73,48,172,.40) !important;
}


/* ===== Messenger buttons: ready links, no captions 2026-08-21 ===== */

/* Все три контакта уже рабочие — нижняя служебная подпись больше не нужна. */
.messenger-button::after {
    content: none !important;
    display: none !important;
}

/* Раньше margin-bottom оставлял место под «ссылка скоро».
   После удаления подписи центрируем иконку и название по высоте кнопки. */
.messenger-button > span,
.messenger-button img {
    margin-bottom: 0 !important;
}


/* === 2026-08-24: consultation modal / process CTA refinements === */
.consultation-methods {
    align-items: stretch;
}

.consultation-method {
    min-width: 0;
}

.consultation-method > span:last-child {
    white-space: nowrap;
}

.process-cta {
    min-height: 108px;
    padding: 16px 22px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 20px;
    border-color: rgba(196, 164, 255, .28);
    background:
        radial-gradient(circle at 88% 14%, rgba(212, 92, 255, .26), transparent 34%),
        radial-gradient(circle at 7% 88%, rgba(53, 179, 255, .18), transparent 36%),
        linear-gradient(112deg, rgba(51, 86, 173, .22), rgba(111, 55, 173, .20)),
        rgba(14, 15, 38, .92);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 18px 42px rgba(7, 8, 20, .26);
}

.process-cta::before {
    background: linear-gradient(110deg, rgba(255,255,255,.09), transparent 28%, transparent 74%, rgba(199,103,255,.07));
}

.process-cta-icon {
    display: none;
}

.process-cta-copy {
    align-self: center;
}

.process-cta-kicker {
    min-height: 34px;
    padding: 0 14px;
    gap: 9px;
    border-color: rgba(91, 191, 255, .24);
    background: linear-gradient(135deg, rgba(56, 143, 255, .16), rgba(176, 84, 255, .12));
    color: #eff4ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.process-cta-kicker i {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 14px rgba(67,197,255,.82);
}

.process-cta-copy strong {
    margin-top: 10px;
    font-size: clamp(25px, 2.05vw, 35px);
    line-height: 1.06;
    letter-spacing: -.045em;
    max-width: 760px;
}

.process-cta-copy p {
    margin-top: 8px;
    max-width: 760px;
    color: #d6dcf2;
    font-size: 15px;
    line-height: 1.5;
}

.process-cta-free {
    display: inline-block;
    margin-right: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(46, 171, 255, .26), rgba(193, 83, 255, .26));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.process-cta-action {
    min-width: 280px;
    align-items: stretch;
    justify-self: end;
}

.process-cta-action a {
    min-height: 58px;
    font-size: 16px;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.30),
        0 14px 32px rgba(98, 55, 208, .30);
}

.process-cta-action small {
    font-size: 13px;
    font-weight: 700;
    color: #f3f6ff;
    text-align: center;
    white-space: normal;
}

@media (max-width: 1180px) {
    .process-cta {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: auto;
        padding: 18px 20px;
    }

    .process-cta-copy strong,
    .process-cta-copy p {
        max-width: none;
    }

    .process-cta-action {
        min-width: 0;
        justify-self: stretch;
    }
}

@media (max-width: 760px) {
    .consultation-methods {
        grid-template-columns: 1fr;
    }

    .consultation-method > span:last-child {
        white-space: normal;
    }

    .process-cta-kicker {
        font-size: 11px;
    }

    .process-cta-copy strong {
        font-size: clamp(23px, 8vw, 31px);
    }

    .process-cta-copy p {
        font-size: 14px;
    }

    .process-cta-action a {
        font-size: 15px;
    }
}


/* === 2026-08-24 OVERRIDE: consultation modal, calculator terms, CTA polish === */

/* 1) В модальном окне 3 кнопки связи должны равномерно занимать всю ширину. */
.consultation-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.consultation-method {
    width: 100%;
    min-height: 58px;
    padding-inline: 14px;
}

.consultation-method > span:last-child {
    font-size: 16px;
    font-weight: 800;
}

/* 2) Возвращаем красивый переключатель периода в калькуляторе. */
.term-switch {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: stretch;
    min-height: 86px;
    padding: 6px !important;
    border-radius: 999px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
        rgba(13, 14, 35, .82) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 14px 34px rgba(7, 8, 22, .22);
}

.term-indicator {
    left: 6px !important;
    top: 6px !important;
    width: calc((100% - 12px) / 4) !important;
    height: calc(100% - 12px) !important;
    border-radius: 999px !important;
    background: linear-gradient(120deg, #45a9ff, #a55bff) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 12px 28px rgba(91, 63, 221, .28) !important;
    transform: translateX(calc(var(--term-index, 0) * 100%)) !important;
}

.term-button {
    position: relative;
    z-index: 1;
    min-height: 74px !important;
    border-radius: 999px;
    color: #e9edfb !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    background: transparent !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.term-button.is-active {
    color: #fff !important;
}

/* 3) CTA-блок делаем чище: убираем подпись "Бесплатная консультация",
   оставляем акцентный бейдж "Бесплатно" и усиливаем его. */
.process-cta {
    min-height: 118px;
    padding: 16px 22px !important;
    gap: 22px !important;
    border-color: rgba(173, 146, 255, .30) !important;
    background:
        radial-gradient(circle at 85% 12%, rgba(209, 90, 255, .22), transparent 32%),
        radial-gradient(circle at 8% 84%, rgba(58, 171, 255, .14), transparent 36%),
        linear-gradient(112deg, rgba(50, 80, 158, .22), rgba(100, 51, 160, .20)),
        rgba(17, 19, 44, .92) !important;
}

.process-cta-kicker {
    display: none !important;
}

.process-cta-copy {
    align-self: center;
    grid-template-columns: minmax(320px, 1.16fr) minmax(260px, .94fr) !important;
    row-gap: 8px !important;
}

.process-cta-copy strong {
    margin: 0 !important;
    font-size: clamp(24px, 1.78vw, 31px) !important;
    line-height: 1.14 !important;
    max-width: 690px;
}

.process-cta-copy p {
    font-size: clamp(16px, 1.02vw, 18px) !important;
    line-height: 1.46 !important;
    max-width: 500px;
}

.process-cta-free {
    margin-right: 10px !important;
    padding: 6px 14px !important;
    border: 1px solid rgba(98, 195, 255, .30);
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(82, 190, 255, .34), rgba(193, 97, 255, .30)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 10px 24px rgba(64, 119, 255, .14);
    color: #f5f8ff;
    font-size: .74em;
    font-weight: 900;
    vertical-align: middle;
}

.process-cta-action {
    min-width: 310px !important;
    justify-self: end;
    align-items: stretch !important;
    gap: 8px !important;
}

.process-cta-action a {
    width: 100%;
    min-width: 300px;
    min-height: 56px !important;
    justify-content: center;
    font-size: 17px !important;
    font-weight: 800;
}

.process-cta-action small {
    display: block;
    width: 100%;
    margin: 0;
    padding-left: 10px;
    color: #edf2ff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: left !important;
}

/* 4) Подстраховка от мерцания теней у floating-card во время движения. */
.floating-card,
body.is-scrolling .floating-card,
.hero.is-animation-active .floating-card {
    box-shadow:
        0 16px 34px rgba(6, 7, 20, .30),
        0 5px 14px rgba(54, 39, 132, .12),
        inset 0 1px 0 rgba(255,255,255,.12) !important;
    filter: none !important;
    will-change: transform;
}

/* 5) Заголовок тарифов — более гармоничная композиция. */
.services-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr) !important;
    align-items: end !important;
    gap: 30px !important;
}

.services-heading > div {
    max-width: 860px;
}

.services-heading p {
    max-width: 470px !important;
    margin: 0 0 8px auto !important;
    padding: 0 0 0 18px !important;
    color: #d5ddf6 !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
}

.services-heading p::before {
    top: 4px;
    bottom: 4px;
}

/* 6) Замена лампочки на лупу в первом шаге — и чуть акцентнее бейдж времени. */
.process-card:first-child .process-card-time {
    color: #eef4ff;
}

@media (max-width: 1180px) {
    .process-cta {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .process-cta-copy {
        grid-template-columns: 1fr !important;
        row-gap: 8px !important;
    }

    .process-cta-copy p {
        grid-column: 1 !important;
        grid-row: 3 !important;
        max-width: none;
    }

    .process-cta-action {
        justify-self: stretch;
        min-width: 0 !important;
    }

    .services-heading {
        grid-template-columns: 1fr !important;
        align-items: start !important;
        gap: 12px !important;
    }

    .services-heading p {
        max-width: 720px !important;
        margin: 0 !important;
    }
}

@media (max-width: 820px) {
    .consultation-methods {
        grid-template-columns: 1fr !important;
    }

    .term-switch {
        min-height: 76px;
    }

    .term-button {
        min-height: 64px !important;
        font-size: 14px !important;
    }

    .process-cta-copy strong {
        font-size: 22px !important;
    }

    .process-cta-copy p {
        font-size: 15px !important;
    }

    .process-cta-action small {
        padding-left: 4px;
    }
}

/* === 2026-08-24 FINAL: accent only on the FREE badge === */
/* Главный визуальный акцент CTA — именно бейдж «Бесплатно». */
.process-cta-free {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0 12px 4px 0 !important;
    padding: 8px 18px !important;
    border: 1px solid rgba(185, 226, 255, .78) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background:
        linear-gradient(135deg, rgba(73, 184, 255, .98) 0%, rgba(114, 112, 255, .98) 52%, rgba(193, 86, 255, .98) 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.52),
        0 0 0 4px rgba(95, 143, 255, .10),
        0 8px 22px rgba(105, 72, 225, .26) !important;
    font-size: 18px !important;
    line-height: 1;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    vertical-align: middle;
    text-shadow: 0 1px 0 rgba(0,0,0,.08);
}

/* Остальной текст CTA оставляем выразительным, но он не должен спорить с бейджем. */
.process-cta-copy strong {
    font-size: clamp(22px, 1.55vw, 28px) !important;
    line-height: 1.18 !important;
    font-weight: 800;
}

.process-cta-copy p {
    color: #cbd3ec !important;
    font-size: clamp(15px, .96vw, 17px) !important;
}

@media (max-width: 820px) {
    .process-cta-free {
        min-height: 38px;
        padding: 7px 15px !important;
        font-size: 16px !important;
    }
}


/* === 2026-08-24 TUNE: CTA heading softer + slimmer calculator period switch === */
.process-cta-copy strong {
    font-size: clamp(18px, 1.35vw, 24px) !important;
    line-height: 1.16 !important;
    font-weight: 750 !important;
}

.term-switch {
    min-height: 72px !important;
    padding: 4px !important;
}

.term-indicator {
    left: 4px !important;
    top: 4px !important;
    width: calc((100% - 8px) / 4) !important;
    height: calc(100% - 8px) !important;
}

.term-button {
    min-height: 64px !important;
    font-size: 15px !important;
}

@media (max-width: 820px) {
    .term-switch {
        min-height: 64px !important;
    }

    .term-button {
        min-height: 56px !important;
        font-size: 14px !important;
    }

    .process-cta-copy strong {
        font-size: 20px !important;
    }
}


/* === 2026-08-24 FIX: exact calculator anchor landing === */
/*
 * При переходе по кнопкам «Рассчитать стоимость» калькулятор должен
 * отрисовать реальную высоту до вычисления позиции якоря. Это исключает
 * сдвиг после content-visibility и оставляет заголовок сразу под шапкой.
 */
.calculator-section.is-anchor-visible {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}


/* === 2026-08-24 FIX 2: stable calculator anchor geometry === */
/* Калькулятор всегда участвует в реальном layout. Экономия от content-visibility
   на одной секции небольшая, а точность перехода по CTA важнее. */
.calculator-section {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}


/* === 2026-08-25 CTA text alignment refinement === */
/* После скрытия старого kicker убираем пустой первый ряд grid:
   оба смысловых текста теперь стоят по одной центральной линии. */
.process-cta-copy {
    grid-template-rows: 1fr !important;
    align-items: center !important;
}

.process-cta-copy strong {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center;
    max-width: 610px;
    font-size: clamp(17px, 1.22vw, 22px) !important;
    line-height: 1.24 !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
}

.process-cta-copy p {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    position: relative;
    top: -3px;
}

@media (max-width: 1180px) {
    .process-cta-copy {
        grid-template-rows: auto auto !important;
    }

    .process-cta-copy strong {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .process-cta-copy p {
        grid-column: 1 !important;
        grid-row: 2 !important;
        top: 0;
    }
}


/* === 2026-08-25 HERO FLOATING CARDS HOVER ANIMATION === */
/* Лёгкое увеличение карточек при наведении, без дёргания layout. */
.floating-card {
    transition:
        transform .26s cubic-bezier(.22, .61, .36, 1),
        box-shadow .26s ease,
        border-color .26s ease,
        background-color .26s ease;
    transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
    .floating-card:hover {
        transform: translateY(-4px) scale(1.03);
        z-index: 6;
        box-shadow:
            0 20px 42px rgba(6, 7, 20, .34),
            0 8px 18px rgba(84, 62, 182, .16),
            inset 0 1px 0 rgba(255,255,255,.14) !important;
        border-color: rgba(122, 140, 255, 0.34);
    }

    .floating-card:hover .floating-card__icon,
    .floating-card:hover .card-icon {
        transform: scale(1.04);
    }
}

body.reduced-effects .floating-card {
    transition: none !important;
}


/* === 2026-08-25 FIX: whole hero cards hover, not only icons === */
.floating-card {
    /* scale/translate are independent from the transform used by the idle
       floating animation, therefore the whole card can animate on hover. */
    scale: 1;
    translate: 0 0;
    transition:
        scale .24s cubic-bezier(.22, .61, .36, 1),
        translate .24s cubic-bezier(.22, .61, .36, 1),
        box-shadow .24s ease,
        border-color .24s ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .floating-card:hover {
        scale: 1.035;
        translate: 0 -3px;
        z-index: 7;
        box-shadow:
            0 20px 42px rgba(6, 7, 20, .34),
            0 8px 18px rgba(84, 62, 182, .16),
            inset 0 1px 0 rgba(255,255,255,.14) !important;
        border-color: rgba(122, 140, 255, .34);
    }

    /* Иконки больше не увеличиваются отдельно — визуально растёт вся карточка. */
    .floating-card:hover .floating-card__icon,
    .floating-card:hover .card-icon,
    .floating-card:hover .mini-chart {
        transform: none !important;
    }
}

body.reduced-effects .floating-card {
    scale: 1 !important;
    translate: 0 0 !important;
}


/* === 2026-08-25 FIX: exact Benefits anchor from header === */
/* При переходе по «Почему мы» сначала раскрываем реальную геометрию секции,
   затем JS выравнивает .benefits-heading сразу под фиксированным хедером. */
.benefits-section.is-anchor-visible {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}


/* === 2026-08-27 consultation success button typography === */
/* button не наследует шрифт body во всех браузерах, поэтому явно
   возвращаем фирменный Manrope для кнопки успешной отправки. */
.consultation-success-close {
    font-family: "Manrope", Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
}
