/* Standalone Platforma108 landing styles. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #01090d;
}

body {
    margin: 0;
    min-width: 320px;
    background: #01090d;
    color: #f5f8fb;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

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

a {
    color: inherit;
}


/* Page shell */
.landing-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #031118 0%, #020c11 42%, #01090d 100%);
    color: #f5f8fb;
    cursor: none;
}

.landing-page__bg,
.landing-page__mist,
.landing-page__grid,
.landing-page__vignette,
.landing-page__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-page__bg {
    background:
        radial-gradient(ellipse at 50% -12%, rgba(28, 160, 214, 0.16) 0%, rgba(15, 92, 128, 0.08) 18%, rgba(6, 35, 48, 0.025) 34%, transparent 58%),
        linear-gradient(180deg, #031118 0%, #020c11 42%, #01090d 100%);
}

.landing-page__mist {
    background:
        radial-gradient(ellipse at 50% 18%, rgba(0, 126, 173, 0.06) 0%, rgba(0, 126, 173, 0.025) 18%, transparent 42%),
        radial-gradient(ellipse at 50% 52%, rgba(12, 82, 74, 0.04) 0%, rgba(12, 82, 74, 0.02) 20%, transparent 46%),
        radial-gradient(ellipse at 50% 88%, rgba(10, 70, 48, 0.035) 0%, rgba(10, 70, 48, 0.015) 20%, transparent 42%);
    opacity: 0.9;
}

.landing-page__grid {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.012) 0px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 0px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04) 48%, transparent 100%);
    opacity: 0.055;
}

.landing-page__vignette {
    background:
        radial-gradient(circle at 50% 42%, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.18) 74%, rgba(0, 0, 0, 0.34) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.28) 0%, transparent 12%, transparent 88%, rgba(0,0,0,0.28) 100%);
}

.landing-page__noise {
    opacity: 0.025;
    background-image: radial-gradient(rgba(255,255,255,0.7) 0.45px, transparent 0.55px);
    background-size: 8px 8px;
    mask-image: linear-gradient(180deg, rgba(255,255,255,0.4), transparent 85%);
}

.landing-page__content {
    position: relative;
    z-index: 1;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.992);
    filter: blur(14px);
    transition:
        opacity 1850ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1850ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 1850ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

[data-tilt-card] {
    --glow-x: 50%;
    --glow-y: 50%;
    --card-shadow-boost: 0;
    --glow-opacity: 0;

    will-change: box-shadow, border-color, filter;
    transition:
        box-shadow 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        background 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-tilt-card]::after,
[data-tilt-card]::before {
    transition:
        opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        background 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-tilt-card].is-hovered {
    filter: brightness(1.02);
}

.interactive-pill,
.interactive-button {
    transition:
        transform 520ms cubic-bezier(0.19, 1, 0.22, 1),
        background 520ms cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 520ms cubic-bezier(0.19, 1, 0.22, 1),
        border-color 520ms cubic-bezier(0.19, 1, 0.22, 1),
        opacity 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.interactive-pill:hover,
.interactive-button:hover {
    transform: translateY(-1px);
}

.interactive-pill:active,
.interactive-button:active {
    transform: translateY(0);
}

.landing-cursor {
    position: fixed;
    top: -14px;
    left: -14px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1px);
    transition:
        opacity 120ms ease-out,
        width 180ms ease-out,
        height 180ms ease-out,
        background 180ms ease-out,
        border-color 180ms ease-out,
        box-shadow 180ms ease-out;
}

.landing-cursor--visible {
    opacity: 1;
}

.landing-cursor--interactive {
    width: 39px;
    height: 39px;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.02),
        0 0 14px rgba(255, 255, 255, 0.03);
}

.landing-cursor--pressed {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .landing-page__grid {
        opacity: 0.04;
    }

    .landing-page__noise {
        display: none;
    }
}

@media (pointer: coarse) {
    .landing-page {
        cursor: auto;
    }

    .landing-cursor {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.is-visible,
    [data-tilt-card],
    .interactive-pill,
    .interactive-button {
        transition: none !important;
        opacity: 1 !important;
    }

    .landing-cursor,
    .landing-page__noise {
        display: none;
    }
}


/* Section layout */
.landing-section {
    position: relative;
}

.landing-section__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 26px;
    padding-right: 26px;
}

.landing-section--sm {
    padding-top: 68px;
    padding-bottom: 68px;
}

.landing-section--md {
    padding-top: 92px;
    padding-bottom: 92px;
}

.landing-section--lg {
    padding-top: 118px;
    padding-bottom: 118px;
}

.landing-section--wide .landing-section__container {
    max-width: 1320px;
}

.landing-section--no-bottom {
    padding-bottom: 0 !important;
}

@media (max-width: 980px) {
    .landing-section--sm {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .landing-section--md {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .landing-section--lg {
        padding-top: 92px;
        padding-bottom: 92px;
    }
}

@media (max-width: 640px) {
    .landing-section__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .landing-section--sm {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .landing-section--md {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .landing-section--lg {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}


/* Messenger icons */
.landing-messenger-icon {
    display: block;
    flex: 0 0 auto;
    color: currentColor;
}


/* Header */
.landing-header {
    position: relative;
    z-index: 20;
    padding: 18px 0 0;
}

.landing-header__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 26px;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    column-gap: 24px;
}

.landing-header__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.landing-header__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25))
        drop-shadow(0 0 10px rgba(201, 170, 108, 0.15));
    transition: transform 220ms ease;
}

.landing-header__logo:hover {
    transform: translateY(-1px) scale(1.03);
}

.landing-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.landing-header__nav-link {
    color: rgba(232, 239, 243, 0.72);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 220ms ease;
}

.landing-header__nav-link:hover {
    color: #ffffff;
}

.landing-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-header__pill {
    min-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(243, 248, 250, 0.95);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 0 14px rgba(0, 0, 0, 0.18);
    transition:
        transform 220ms ease-out,
        border-color 220ms ease-out,
        box-shadow 220ms ease-out,
        background 220ms ease-out;
}

.landing-header__pill:hover {
    transform: translateY(-1px) scale(1.03);
}

.landing-header__pill svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #ffffff;
}

.landing-header__whatsapp-icon {
    width: 22px !important;
    height: 22px !important;
}

.landing-header__pill--telegram {
    background: linear-gradient(180deg, rgba(11, 32, 45, 0.92), rgba(7, 19, 26, 0.96));
}

.landing-header__pill--whatsapp {
    background: linear-gradient(180deg, rgba(11, 30, 20, 0.92), rgba(7, 18, 13, 0.96));
}

@media (max-width: 980px) {
    .landing-header__container {
        grid-template-columns: 92px 1fr;
        row-gap: 14px;
    }

    .landing-header__nav {
        grid-column: 1 / -1;
        order: 3;
        gap: 18px;
        flex-wrap: wrap;
    }

    .landing-header__actions {
        justify-self: end;
    }
}

@media (max-width: 640px) {
    .landing-header {
        padding-top: 14px;
    }

    .landing-header__container {
        padding: 0 16px;
        grid-template-columns: 72px 1fr;
        column-gap: 8px;
        row-gap: 12px;
    }

    .landing-header__logo {
        width: 42px;
        height: 42px;
    }

    .landing-header__actions {
        gap: 8px;
    }

    .landing-header__pill {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .landing-header__pill svg {
        width: 14px;
        height: 14px;
    }

    .landing-header__whatsapp-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .landing-header__nav {
        gap: 14px;
    }

    .landing-header__nav-link {
        font-size: 11px;
    }
}


/* Hero */
.landing-hero {
    padding: 8px 0 18px;
    text-align: center;
}

.landing-hero__eyebrow {
    margin: 0;
    color: rgba(205, 214, 221, 0.68);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.012em;
}

.landing-hero__title {
    margin: 22px auto 0;
    max-width: 1040px;
}

.landing-hero__line {
    display: block;
    font-size: 67px;
    font-weight: 600;
    line-height: 0.93;
    letter-spacing: -0.072em;
    text-rendering: geometricPrecision;
}

.landing-hero__line + .landing-hero__line {
    margin-top: 4px;
}

.landing-hero__line--cyan,
.landing-hero__line-part--cyan {
    background: linear-gradient(180deg, #35d0d2 0%, #29c6cf 42%, #22b7c3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 18px rgba(41, 198, 207, 0.08),
        0 0 36px rgba(41, 198, 207, 0.025);
}

.landing-hero__line--mixed {
    color: inherit;
    white-space: nowrap;
}

.landing-hero__line-part {
    display: inline-block;
}

.landing-hero__line-part + .landing-hero__line-part {
    margin-left: 14px;
}

.landing-hero__line-part--white-italic,
.landing-hero__line--white-italic {
    color: #eaf3f6;
    font-style: italic;
    font-weight: 500;
    text-shadow:
        0 0 10px rgba(255,255,255,0.04),
        0 0 20px rgba(255,255,255,0.02);
}

.landing-hero__subtitle {
    margin: 28px auto 0;
    max-width: 760px;
    color: rgba(222, 231, 237, 0.72);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.012em;
}

.landing-hero__caption {
    margin: 2px 0 0;
    color: rgba(204, 214, 221, 0.78);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.012em;
}

.landing-hero__actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.landing-hero__button {
    min-width: 260px;
    min-height: 62px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(243, 248, 250, 0.96);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.015em;
    border: 1px solid rgba(72, 151, 176, 0.26);
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 0 18px rgba(0, 0, 0, 0.16);
    transition:
        transform 240ms ease-out,
        box-shadow 240ms ease-out,
        border-color 240ms ease-out,
        background 240ms ease-out;
}

.landing-hero__button:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 0 20px rgba(0, 0, 0, 0.2);
}

.landing-hero__button:active {
    transform: scale(0.972);
    transition-duration: 100ms;
}

.landing-hero__button--telegram,
.landing-hero__button--whatsapp {
    background: linear-gradient(180deg, rgba(10, 42, 54, 0.76), rgba(7, 24, 32, 0.88));
}

.landing-hero__button-text {
    white-space: nowrap;
}

.landing-hero__button-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0e2f37;
    background: #f3f7f8;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.26),
        0 0 14px rgba(255, 255, 255, 0.06);
    transition: transform 240ms ease-out;
}

.landing-hero__button:hover .landing-hero__button-icon-wrap {
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .landing-hero__line {
        font-size: 58px;
    }

    .landing-hero__button {
        min-width: 248px;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding-top: 10px;
    }

    .landing-hero__title {
        max-width: 700px;
    }

    .landing-hero__line {
        font-size: 44px;
        line-height: 0.97;
        letter-spacing: -0.058em;
    }

    .landing-hero__line-part + .landing-hero__line-part {
        margin-left: 10px;
    }

    .landing-hero__subtitle {
        max-width: 560px;
    }

    .landing-hero__actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .landing-hero__button {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        min-height: 56px;
        padding: 0 16px;
        font-size: 14px;
        gap: 9px;
    }

    .landing-hero__button-icon-wrap {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 640px) {
    .landing-hero__eyebrow {
        font-size: 11px;
    }

    .landing-hero__title {
        margin-top: 14px;
    }

    .landing-hero__line {
        font-size: 31px;
        letter-spacing: -0.05em;
        line-height: 1;
    }

    .landing-hero__line--mixed {
        white-space: normal;
    }

    .landing-hero__line-part + .landing-hero__line-part {
        margin-left: 8px;
    }

    .landing-hero__subtitle {
        margin-top: 18px;
        font-size: 12px;
        line-height: 1.42;
        max-width: 330px;
    }

    .landing-hero__caption {
        font-size: 12px;
    }

    .landing-hero__actions {
        margin-top: 18px;
    }

    .landing-hero__button {
        max-width: 290px;
        min-height: 50px;
        font-size: 13px;
        padding: 0 14px;
        gap: 8px;
    }

    .landing-hero__button-icon-wrap {
        width: 32px;
        height: 32px;
    }
}


/* Audience */
.audience__header {
    text-align: center;
    margin-bottom: 34px;
}

.audience__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
}

.audience__subtitle {
    margin: 11px auto 0;
    max-width: 730px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

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

.audience-card {
    position: relative;
    min-height: 114px;
    padding: 23px 28px 21px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(44, 182, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(7, 22, 30, 0.9), rgba(4, 14, 20, 0.97));
    border: 1px solid rgba(80, 181, 222, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 0 calc(18px + (10px * var(--card-shadow-boost))) rgba(0, 0, 0, 0.16);
}

.audience-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.065), transparent 20%);
    opacity: 0.82;
}

.audience-card.is-hovered {
    border-color: rgba(98, 198, 236, 0.22);
}

.audience-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f4f8fb;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.audience-card__text {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    max-width: 400px;
    color: rgba(211, 223, 229, 0.72);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .audience__grid {
        grid-template-columns: 1fr;
    }
}


/* Exchange directions */
.exchange-directions {
    position: relative;
    overflow: hidden;
}

.exchange-directions__header {
    text-align: center;
    margin-bottom: 41px;
}

.exchange-directions__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
    text-rendering: geometricPrecision;
}

.exchange-directions__subtitle {
    margin: 11px auto 0;
    max-width: 730px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.exchange-directions__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
    align-items: start;
}

.direction-card {
    position: relative;
    height: 224px;
    border-radius: 35px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.035), transparent 22%),
        radial-gradient(circle at 58% 52%, rgba(2, 7, 10, 0.74) 0%, rgba(1, 5, 8, 0.96) 56%, rgba(0, 0, 0, 0.996) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02),
        inset 0 -1px 0 rgba(255, 255, 255, 0.008),
        0 0 calc(18px + (12px * var(--card-shadow-boost))) rgba(0, 0, 0, 0.18);
}

.direction-card::before,
.direction-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.direction-card--blue::before {
    padding: 1px;
    background:
        linear-gradient(135deg, rgba(43, 183, 255, 0.9) 0%, rgba(43, 183, 255, 0.48) 14%, rgba(18, 52, 74, 0.14) 34%, rgba(8, 16, 22, 0.05) 64%, rgba(43, 183, 255, 0.16) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-sizing: border-box;
}

.direction-card--green::before {
    padding: 1px;
    background:
        linear-gradient(135deg, rgba(86, 255, 98, 0.88) 0%, rgba(86, 255, 98, 0.45) 14%, rgba(24, 54, 27, 0.14) 34%, rgba(8, 18, 10, 0.05) 64%, rgba(86, 255, 98, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    box-sizing: border-box;
}

.direction-card--blue::after {
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(43, 183, 255, 0.2), transparent 20%),
        radial-gradient(circle at 6% 24%, rgba(43, 183, 255, 0.33) 0%, rgba(43, 183, 255, 0.18) 16%, rgba(43, 183, 255, 0.06) 31%, transparent 54%),
        linear-gradient(90deg, rgba(22, 110, 168, 0.28) 0%, rgba(10, 28, 40, 0.08) 28%, rgba(0, 0, 0, 0) 58%);
    filter: blur(14px);
    opacity: 1;
}

.direction-card--green::after {
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(86, 255, 98, 0.17), transparent 20%),
        radial-gradient(circle at 6% 24%, rgba(86, 255, 98, 0.28) 0%, rgba(86, 255, 98, 0.15) 16%, rgba(86, 255, 98, 0.05) 31%, transparent 54%),
        linear-gradient(90deg, rgba(46, 134, 51, 0.23) 0%, rgba(10, 30, 12, 0.07) 28%, rgba(0, 0, 0, 0) 58%);
    filter: blur(14px);
    opacity: 0.92;
}

.direction-card.is-hovered {
    filter: brightness(1.018);
}

.direction-card__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 34px 36px 30px 36px;
}

.direction-card__rate {
    margin: 0;
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.066em;
    text-rendering: geometricPrecision;
}

.direction-card__rate--blue {
    color: #2cb6ff;
    text-shadow: 0 0 16px rgba(44, 182, 255, 0.18), 0 0 32px rgba(44, 182, 255, 0.05);
}

.direction-card__rate--green {
    color: #57ff5e;
    text-shadow: 0 0 16px rgba(87, 255, 94, 0.17), 0 0 32px rgba(87, 255, 94, 0.05);
}

.direction-card__text {
    margin: 24px 0 0;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.44;
    letter-spacing: -0.012em;
}

.direction-card__text-main,
.direction-card__text-muted {
    display: inline;
}

.direction-card__text-main {
    color: rgba(245, 248, 251, 0.96);
    font-weight: 400;
}

.direction-card__text-muted {
    color: rgba(175, 187, 195, 0.88);
    font-weight: 400;
}

.direction-card__badge {
    position: absolute;
    left: 36px;
    bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 24px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.direction-card__badge--blue {
    color: #63ceff;
    border: 1px solid rgba(44, 182, 255, 0.66);
    background: linear-gradient(180deg, rgba(12, 48, 71, 0.42), rgba(6, 27, 41, 0.23));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 0 10px rgba(44, 182, 255, 0.06);
}

.direction-card__badge--green {
    color: #96ff8d;
    border: 1px solid rgba(87, 255, 94, 0.62);
    background: linear-gradient(180deg, rgba(18, 55, 23, 0.39), rgba(9, 30, 12, 0.22));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 0 10px rgba(87, 255, 94, 0.055);
}

.direction-card__badge-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 7px currentColor;
    flex: 0 0 auto;
}

.exchange-directions__bottom-wrap {
    display: flex;
    justify-content: center;
    margin-top: 37px;
}

.exchange-directions__bottom-note {
    min-height: 38px;
    padding: 0 19px 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    color: rgba(229, 238, 243, 0.74);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 34, 22, 0.84), rgba(6, 22, 14, 0.94));
    border: 1px solid rgba(91, 255, 123, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 0 28px rgba(67, 255, 112, 0.04);
}

.exchange-directions__bottom-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #56ff64;
    box-shadow: 0 0 8px rgba(86, 255, 100, 0.92), 0 0 15px rgba(86, 255, 100, 0.45);
    flex: 0 0 auto;
    animation: pulse-green 4s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.14);
        opacity: 0.96;
    }
}

@media (max-width: 980px) {
    .exchange-directions__cards {
        grid-template-columns: 1fr;
        row-gap: 22px;
    }

    .exchange-directions__bottom-wrap {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .exchange-directions__title {
        font-size: 28px;
    }

    .exchange-directions__subtitle {
        font-size: 13px;
    }

    .exchange-directions__header {
        margin-bottom: 26px;
    }

    .direction-card {
        height: auto;
        min-height: 190px;
        border-radius: 28px;
    }

    .direction-card__inner {
        padding: 24px 22px 22px 22px;
    }

    .direction-card__rate {
        font-size: 34px;
    }

    .direction-card__text {
        margin-top: 18px;
        font-size: 14px;
    }

    .direction-card__badge {
        position: static;
        margin-top: 20px;
    }

    .exchange-directions__bottom-note {
        min-height: 36px;
        padding: 0 14px 0 12px;
        font-size: 12px;
    }
}


/* Advantages */
.advantages__header {
    text-align: center;
    margin-bottom: 34px;
}

.advantages__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
}

.advantages__subtitle {
    margin: 11px auto 0;
    max-width: 760px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.advantages__rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 1 ряд — левый шире */
.advantages__row--top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 16px;
}

/* 2 ряд — левый уже */
.advantages__row--bottom {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.2fr;
    gap: 16px;
}

.advantages-card {
    position: relative;
    min-height: 136px;
    padding: 24px 28px 22px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at var(--glow-x, 50%) var(--glow-y, 50%),
            rgba(86, 255, 98, 0.09),
            transparent 30%
        ),
        linear-gradient(180deg, rgba(4, 20, 18, 0.92), rgba(4, 15, 14, 0.98));
    border: 1px solid rgba(50, 140, 96, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 0 calc(16px + (10px * var(--card-shadow-boost, 0))) rgba(0, 0, 0, 0.14);
}

.advantages-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(
            circle at var(--glow-x, 50%) var(--glow-y, 50%),
            rgba(255,255,255,0.05),
            transparent 18%
        );
    opacity: calc(var(--glow-opacity, 0) * 0.8);
    transition: opacity 280ms ease-out, background 280ms ease-out;
}

.advantages-card.is-hovered {
    border-color: rgba(120, 255, 132, 0.14);
}

.advantages-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f5f8fb;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.advantages-card__text {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: rgba(213, 224, 229, 0.72);
    font-size: 13px;
    line-height: 1.46;
    max-width: 360px;
}

.advantages__row--top .advantages-card:last-child .advantages-card__text {
    max-width: 420px;
}

.advantages__row--bottom .advantages-card:last-child .advantages-card__text {
    max-width: 320px;
}

@media (max-width: 980px) {
    .advantages__row--top {
        grid-template-columns: 1fr 1fr;
    }

    .advantages__row--bottom {
        grid-template-columns: 1fr 1fr;
    }

    .advantages__row--bottom .advantages-card:last-child {
        grid-column: 1 / 3;
    }
}

@media (max-width: 640px) {
    .advantages__header {
        margin-bottom: 26px;
    }

    .advantages__title {
        font-size: 28px;
    }

    .advantages__subtitle {
        font-size: 13px;
    }

    .advantages__rows {
        gap: 14px;
    }

    .advantages__row--top,
    .advantages__row--bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantages__row--bottom .advantages-card:last-child {
        grid-column: auto;
    }

    .advantages-card {
        min-height: 124px;
        padding: 22px 22px 20px;
        border-radius: 28px;
    }

    .advantages-card__title {
        font-size: 17px;
    }

    .advantages-card__text {
        font-size: 13px;
        max-width: none;
    }
}


/* Process */
.process__header {
    text-align: center;
    margin-bottom: 30px;
}

.process__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
}

.process__subtitle {
    margin: 11px auto 0;
    max-width: 760px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    line-height: 1.4;
}

.process__panel {
    position: relative;
    border-radius: 30px;
    padding: 18px 22px;
    overflow: hidden;

    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(86, 255, 98, 0.06), transparent 30%),
        radial-gradient(circle at 20% 0%, rgba(86, 255, 98, 0.08), transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(44, 182, 255, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(7, 23, 18, 0.96), rgba(4, 14, 14, 0.98));

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 0 calc(22px + (10px * var(--card-shadow-boost, 0))) rgba(0,0,0,0.18);
}

.process__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;

    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.04), transparent 20%);
}

.process__panel.is-hovered {
    border-color: rgba(120, 255, 132, 0.12);
}

/* --- ROW --- */

.process__row {
    position: relative;
    display: grid;
    grid-template-columns: 62px 280px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 72px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition:
        background 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.process__row:last-child {
    border-bottom: none;
}

/* локальный glow при hover */
.process__row::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;

    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(86, 255, 98, 0.08), transparent 30%);
    opacity: 0;
    transition: opacity 200ms ease;
}

.process__row.is-hovered::before {
    opacity: 1;
}

.process__row.is-hovered {
    background: rgba(255,255,255,0.01);
}

/* --- TEXT --- */

.process__number {
    color: rgba(174, 191, 198, 0.48);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.process__name {
    color: #f5f8fb;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.process__desc {
    color: rgba(213, 224, 229, 0.72);
    font-size: 13px;
    line-height: 1.48;
    max-width: 430px;
}

/* --- RESPONSIVE --- */

@media (max-width: 900px) {
    .process__row {
        grid-template-columns: 52px 1fr;
        align-items: start;
        padding: 16px 10px;
    }

    .process__desc {
        grid-column: 2 / 3;
        max-width: none;
    }

    .process__name {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .process__panel {
        padding: 12px 14px;
        border-radius: 24px;
    }

    .process__row {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .process__name {
        font-size: 18px;
    }

    .process__number {
        font-size: 14px;
    }
}


/* Geography */
.geography__header {
    text-align: center;
    margin-bottom: 28px;
}

.geography__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
}

.geography__subtitle {
    margin: 11px auto 0;
    max-width: 760px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    line-height: 1.4;
}

.geography__panel {
    position: relative;
    padding: 30px 30px 24px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(44, 182, 255, 0.08), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(44, 182, 255, 0.1), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(86, 255, 98, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(7, 22, 32, 0.95), rgba(4, 14, 21, 0.98));
    border: 1px solid rgba(80, 181, 222, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 0 calc(18px + (10px * var(--card-shadow-boost, 0))) rgba(0, 0, 0, 0.14);
}

.geography__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255,255,255,0.045), transparent 18%);
    opacity: 0.75;
}

.geography__panel.is-hovered {
    border-color: rgba(110, 210, 235, 0.18);
}

.geography__block h3 {
    margin: 0 0 12px;
    color: #f5f8fb;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.geography__block--middle-east {
    margin-top: 42px;
}

.geography__block--asia {
    margin-top: 34px;
}

.geography__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 10px;
}

.geography__chip {
    min-height: 26px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: rgba(225, 235, 240, 0.82);
    font-size: 12px;
    line-height: 1;
    letter-spacing: -0.01em;
    border: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(15, 31, 41, 0.72), rgba(8, 18, 24, 0.72));
    backdrop-filter: blur(8px);
    transition:
        transform 220ms ease-out,
        border-color 220ms ease-out,
        color 220ms ease-out,
        box-shadow 220ms ease-out,
        background 220ms ease-out;
    cursor: none;
}

.geography__panel,
.geography__chips,
.geography__chip {
    cursor: none;
}

.geography__chip:hover {
    transform: translateY(-1px);
    color: rgba(245, 250, 252, 0.96);
    border-color: rgba(92, 206, 228, 0.2);
    background:
        linear-gradient(180deg, rgba(20, 42, 55, 0.84), rgba(10, 24, 31, 0.86));
    box-shadow:
        0 0 14px rgba(44, 182, 255, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.geography__chips--small .geography__chip {
}

.geography__note {
    margin: 22px 0 0;
    color: rgba(195, 208, 214, 0.58);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .geography__panel {
        padding: 22px 20px;
        border-radius: 26px;
    }

    .geography__block h3 {
        font-size: 20px;
    }

    .geography__block--middle-east {
        margin-top: 32px;
    }

    .geography__block--asia {
        margin-top: 28px;
    }
}


/* Trust */
.trust__header {
    text-align: center;
    margin-bottom: 30px;
}

.trust__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.046em;
}

.trust__subtitle {
    margin: 11px auto 0;
    max-width: 760px;
    color: rgba(227, 236, 242, 0.63);
    font-size: 12px;
    line-height: 1.4;
}

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

.trust-card {
    position: relative;
    min-height: 122px;
    padding: 24px 26px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(86, 255, 98, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(10, 20, 18, 0.96), rgba(5, 12, 13, 0.98));
    border: 1px solid rgba(255,255,255,0.06);
}

.trust-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.05), transparent 18%);
}

.trust-card__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #f5f8fb;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.trust-card__text {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: rgba(213, 224, 229, 0.72);
    font-size: 13px;
    line-height: 1.48;
}

@media (max-width: 768px) {
    .trust__grid {
        grid-template-columns: 1fr;
    }
}


/* Final CTA */
.final-cta {
    text-align: center;
    padding-top: 18px;
    padding-bottom: 54px;
}

.final-cta__title {
    margin: 0;
    color: #f6f8fb;
    font-size: 42px;
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.065em;
    text-rendering: geometricPrecision;
}

.final-cta__subtitle {
    margin: 18px auto 0;
    max-width: 760px;
    color: rgba(227, 236, 242, 0.64);
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.012em;
}

.final-cta__actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.final-cta__button {
    min-height: 62px;
    padding: 0 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #eef5f8;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition:
        transform 240ms ease-out,
        box-shadow 240ms ease-out,
        border-color 240ms ease-out,
        background 240ms ease-out;
}

.final-cta__button svg {
    width: 18px;
    height: 18px;
    transition: transform 240ms ease-out;
}

.final-cta__button:hover {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.16);
}

.final-cta__button:hover svg {
    transform: translateX(2px);
}

.final-cta__button:active {
    transform: scale(0.972);
    transition-duration: 100ms;
}

.final-cta__button--telegram {
    background: linear-gradient(180deg, rgba(14, 54, 79, 0.58), rgba(8, 28, 42, 0.36));
    box-shadow: 0 0 20px rgba(44, 182, 255, 0.08);
}

.final-cta__button--whatsapp {
    background: linear-gradient(180deg, rgba(16, 58, 24, 0.58), rgba(9, 31, 14, 0.36));
    box-shadow: 0 0 20px rgba(87, 255, 94, 0.08);
}

.final-cta__note {
    margin: 28px auto 0;
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    color: rgba(229, 238, 243, 0.74);
    font-size: 13px;
    background: linear-gradient(180deg, rgba(10, 34, 22, 0.84), rgba(6, 22, 14, 0.94));
    border: 1px solid rgba(91, 255, 123, 0.1);
}

.final-cta__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #56ff64;
    box-shadow:
        0 0 8px rgba(86, 255, 100, 0.92),
        0 0 15px rgba(86, 255, 100, 0.45);
    animation: pulse-green 4s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@media (max-width: 980px) {
    .final-cta {
        padding-bottom: 42px;
    }

    .final-cta__title {
        font-size: 38px;
    }

    .final-cta__subtitle {
        font-size: 14px;
    }

    .final-cta__actions {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .final-cta {
        padding-top: 8px;
        padding-bottom: 30px;
    }

    .final-cta__title {
        font-size: 28px;
        line-height: 1.02;
        letter-spacing: -0.05em;
    }

    .final-cta__subtitle {
        margin-top: 14px;
        font-size: 13px;
    }

    .final-cta__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 24px;
    }

    .final-cta__button {
        width: 100%;
        max-width: 320px;
        min-height: 54px;
        font-size: 14px;
    }

    .final-cta__note {
        margin-top: 22px;
        padding: 0 16px;
        font-size: 12px;
    }
}


/* Footer */
.landing-footer {
    padding-top: 26px;
}

.landing-footer__shell {
    position: relative;
    min-height: 190px;
    border-top-left-radius: 72px;
    border-top-right-radius: 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 100%, rgba(53, 175, 124, 0.08), transparent 40%),
        radial-gradient(circle at 50% 45%, rgba(20, 116, 92, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(3, 19, 18, 0.96), rgba(2, 12, 11, 0.99));
    border-top: 1px solid rgba(66, 137, 118, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 -10px 40px rgba(0, 0, 0, 0.18);
}

.landing-footer__shell::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.18) 0%, transparent 12%, transparent 88%, rgba(0,0,0,0.18) 100%);
    opacity: 0.8;
}

.landing-footer__inner {
    position: relative;
    z-index: 1;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px; /* было 18 → стало воздух */
}

/* ✨ контейнер под иконки */
.landing-footer__messenger {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;


    backdrop-filter: blur(10px);

}

/* hover — аккуратный премиум */
.landing-footer__messenger:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255,255,255,0.1);
    box-shadow:
        0 0 16px rgba(255,255,255,0.08),
        0 0 30px rgba(255,255,255,0.04);
}

.landing-footer__brand {
    width: 84px;       /* было 46 */
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.landing-footer__brand img {
    width: 72px;       /* было 34 */
    height: 72px;
    object-fit: contain;
    display: block;

    /* 💎 премиальное мягкое свечение */
    filter:
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 18px rgba(200, 170, 90, 0.18));
}

.landing-footer__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #102f33;
    text-decoration: none;
    background: #f3f7f8;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.28),
        0 0 16px rgba(255,255,255,0.06);
    overflow: hidden;
}

.landing-footer__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.landing-footer__whatsapp {
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 640px) {
    .landing-footer__shell {
        min-height: 150px;
        border-top-left-radius: 42px;
        border-top-right-radius: 42px;
    }

    .landing-footer__inner {
        gap: 18px;
    }

    .landing-footer__messenger {
        width: 74px;
        height: 74px;
    }

    .landing-footer__brand {
        width: 76px;
        height: 76px;
    }

    .landing-footer__brand img {
        width: 74px;
        height: 74px;
    }

    .landing-footer__icon {
        width: 78px;
        height: 78px;
    }

    .landing-footer__icon svg {
        width: 16px;
        height: 16px;
    }

    .landing-footer__whatsapp {
        width: 18px !important;
        height: 18px !important;
    }
}
