:root {
    --container-max: 90rem; /* 1440px */
    --pad-16: 16px;
    --pad-20: 20px;
    --radius-24: 24px;

    --text: #333;
    --brand: #FF5A33;
    --bg: #fff;

    --title: #121827;
    --muted: #48536b;
    --note: #7c8799;
}

/* Base */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font: 400 16px/1.6 "Onest", system-ui, sans-serif;
}

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

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

.carriers-space-container {
    width: 100%;
    max-width: var(--container-max);
}

/* end base */

/* Header */
.site-header {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;

    position: sticky;
    top: 0;
    z-index: 20;
    background: transparent;
    padding-inline: 48px;
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 64px;
    margin-inline: auto;
    border-radius: 100px;
}

.site-header.is-solid {
    position: fixed;
    top: calc(20px + env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);

    width: min(100% - 32px, 1364px);
    padding-inline: 38px;
}

.site-header.is-solid .site-header__bar {
    padding-inline: 48px;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(113.81deg, #F8F8FF -2.38%, #D7D7F4 97.37%) border-box;
    border: 1px solid transparent;
    box-shadow: 0px 0px 24.97px 0px #48486014;
}

.site-header__logo {
    margin-right: 64px;
}

.site-nav {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #3C3C5C;
}

.site-nav__list {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;

    li {
        display: flex;
        justify-content: center;
        align-items: center;

        min-width: 100px;
        width: 100%;
    }
}

.site-nav__link {
    padding: 2px 12px;
    border-radius: 100px;
}

.site-nav__link:hover {
    background: #F0F0FB;
}

.site-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    /*todo: temporary for revert when the login button doesn't display*/
    flex-direction: row-reverse;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid currentColor;
    cursor: pointer;

    transition: background-color 220ms ease-out,
    color 220ms ease-out,
    border-color 220ms ease-out,
    transform 200ms cubic-bezier(.18, .75, .25, 1),
    box-shadow 220ms ease-out;
    will-change: transform, box-shadow;
}

.btn--lg {
    max-width: 280px;
    width: 100%;
    height: 3.5rem; /*56px*/
    padding: 16px 20px;
    display: flex;
    justify-content: center;
}

.btn--primary {
    background: var(--brand);
    color: #fff;
    border-color: transparent;
}

.btn--outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
}

.btn--outline:hover {
    background: rgba(255, 90, 60, .08);
}

.btn--explore {
    max-width: 192px;
    width: 100%;
    height: 3.5rem; /*56px*/
    padding: 16px 0;
    display: flex;
    justify-content: center;

    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 0;
}

.btn--ghost {
    background: transparent;

    color: #0F0F36;
    border: 1px solid #0F0F36
}

@media (hover: hover) and (pointer: fine) {
    .btn--ghost.btn--explore:hover,
    .btn--ghost.btn--explore:focus-visible {
        border-color: rgba(255, 90, 51, 0.55);
        color: #0F0F36;
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(15, 17, 56, 0.16);
    }

    .btn--ghost.btn--explore:hover .btn__icon,
    .btn--ghost.btn--explore:focus-visible .btn__icon {
        transform: translateX(2px);
    }
}

.btn--ghost.btn--explore:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(15, 17, 56, 0.18);
}

.btn__icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;

    transition: transform 200ms cubic-bezier(.18, .75, .25, 1);
}

.btn__icon.head {
    width: 16px;
    height: 16px;
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover,
    .btn--primary:focus-visible {
        transform: translateY(-1px) scale(1.01);
        background: #ff6c45;
    }

    .btn--primary:hover .btn__icon,
    .btn--primary:focus-visible .btn__icon {
        transform: translateX(3px);
    }
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(255, 90, 51, 0.25);
}

.btn:hover .btn__icon {
    transform: translateX(2px);
}

/* end btn */

/* Lang switch */
.lang-switch {
    position: relative;
}

.lang-switch__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    padding: 8px 12px;
    cursor: pointer;
}

.lang-switch__caret {
    flex: 0 0 auto;
    line-height: 0;
}

.lang-switch__caret img {
    display: block;
    width: 13px;
    height: 13px;
    max-width: none;
    transition: transform .2s ease;

    transform: rotate(180deg);
}

/* обертання при відкритті */
.lang-switch[aria-expanded="true"] .lang-switch__caret img {
    transform: rotate(0);
}

.lang-switch__list {
    position: absolute;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    min-inline-size: 99px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(20, 30, 60, .15);
    padding: 4px;
    list-style: none;
    margin: 0;
    border: 1px solid #E4E4FD;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 10;
}

.lang-switch[aria-expanded="true"] .lang-switch__list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lang-switch__list li button {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
}

.site-header__cta {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    max-width: 100%;
    width: 8.563rem; /*137px*/
    height: 2.375rem; /*38px*/
    padding: 8px 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-switch__list li button:hover {
    background-color: #F6F6FF;
}

.lang-switch[aria-expanded="true"] .lang-switch__list {
    display: block;
}


/* --- Mobile header & menu --- */
.site-header__burger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header__burger-lines {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #13203D;
}

.site-header__burger-lines::before,
.site-header__burger-lines::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    height: 2px;
    border-radius: 999px;
    background: #13203D;
}

.site-header__burger-lines::before {
    top: -5px;
}

.site-header__burger-lines::after {
    top: 5px;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

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

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__logo {
    width: 142.4112548828125px;
}

.mobile-menu__logo img {
    width: 100%;
    height: 100%;
}

.mobile-menu__close {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.mobile-menu__close-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-menu__close-icon::before,
.mobile-menu__close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: #13203D;
}

.mobile-menu__close-icon::before {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu__close-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu__nav {
    margin-top: 38px;
}

.mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 20px 16px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-menu__link {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;

    color: #3C3C5C;
    text-decoration: none;
}

.mobile-menu__link:hover {
    color: var(--brand);
}

.mobile-menu__bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__lang {
    width: 129px;
    opacity: 1;
    border-radius: 100px;
    border: 1px solid #F2F2FF;
    gap: 4px;


    display: flex;
    justify-content: center;
}

.lang-switch__btn.mob {
    padding: 4px 32px;
}

.lang-switch__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #3C3C5C;
}

.mobile-menu__social {
    display: flex;
    gap: 46px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu__cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

body.has-mobile-menu {
    overflow: hidden;
}

/* ===== end Header  ===== */


/* ===== Hero  ===== */
.hero {
    position: relative;

    width: min(100%, 1408px);
    aspect-ratio: 1408 / 855;

    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(278.11deg, #E6E6FF -0.26%, #FFEBE6 104.69%);
    border-radius: 24px;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    pointer-events: none;

    border-radius: 24px;
}

.hero__frame {
    position: relative;

    padding: 60px 0 0 0;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__content-coming_soon {
    padding: 6px 24px;
    opacity: 0.5;
    background: #FFFFFF;
    border-radius: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 22px;

    p {
        margin: 0;

        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0;
        text-align: center;
        text-transform: uppercase;

        color: #664F6B;
    }
}

.hero__title {
    margin: 0 0 20px 0;
    color: #0F0F36;
    font-weight: 600;
    font-size: 70px;
    line-height: 65px;
    letter-spacing: 0;
    text-align: center;
}

.hero__accent {
    color: #FF5A33;
}

.hero__subtitle {
    margin: 0 0 44px 0;
    color: #3E3E5E;

    max-width: 60ch;

    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    width: 100%;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
}

.hero__actions--free {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero__note {
    margin: 0;
    width: 20%;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;

    color: #3E3E5E;
}


.hero-demo-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 92%;
    z-index: 1;

    opacity: 0;
    translate: 0 22%;
    scale: .985;
    transition: opacity .45s ease,
    translate .85s cubic-bezier(.2, .7, .2, 1),
    scale .85s cubic-bezier(.2, .7, .2, 1);
}

.hero--inview .hero-demo-wrap {
    opacity: 1;
    translate: 0 0;
    scale: 1;
}

.hero-demo {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    overflow: visible;
    z-index: 1;
}

.hero-demo__picture {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center;
    transform: translateY(0) scale(1);

    transition: transform 420ms cubic-bezier(.22, .61, .25, 1);
    will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine) {
    .hero-demo-wrap:hover .hero-demo__picture,
    .hero-demo-wrap:focus-within .hero-demo__picture {
        transform: translateY(-2px) scale(1.005);
    }
}

.hero-demo__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;

    transition: transform 260ms cubic-bezier(.18, .75, .25, 1),
    filter 220ms ease-out;
}

/* ===== end Hero  ===== */


/* ===== Capabilities  ===== */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.capabilities {
    margin-block: 60px 0;
    margin-inline: 80px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.cap-card {
    display: flex;
    max-height: 176px;
    height: 100%;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #D7D7F4CC;
    border-radius: 20px;
    box-shadow: 0 1px 0 rgba(17, 24, 39, .02);

    opacity: 0;
    transform: translateY(32px) scale(0.97);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease,
    border-color 0.2s ease;
    will-change: opacity, transform;

    flex-direction: column;
}

.cap-card-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}

.cap-card:hover {
    box-shadow: 0 10px 30px rgba(20, 30, 60, .10);
    transform: translateY(-2px) scale(1.01);
}

.cap-card--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cap-card:nth-child(1).cap-card--visible {
    transition-delay: 0s;
}

.cap-card:nth-child(2).cap-card--visible {
    transition-delay: 0.12s;
}

.cap-card:nth-child(3).cap-card--visible {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .cap-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        box-shadow: 0 1px 0 rgba(17, 24, 39, .02) !important;
    }
}


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

.cap-card:hover {
    box-shadow: 0 10px 30px rgba(20, 30, 60, .10);
    transform: translateY(-2px);
}

.cap-card__icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

.cap-card__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.cap-card__body {
    display: grid;
    gap: 16px;
}

.cap-card__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;

    color: #0F0F36;
    margin: 0;
}

.cap-card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #3E3E5E;
    margin: 0;
    max-width: 325px;
}

/* ===== end Capabilities  ===== */


/* ===== Documents ===== */
.documents {
    margin-block: 120px;
    position: relative;
    overflow: hidden;

    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.documents > .carriers-space-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.safety__eyDocument {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    color: #87879A;
    margin-bottom: 8px;
    text-align: center;
}

.documents__title {
    font-weight: 600;
    font-size: 56px;
    line-height: 120%;
    margin: 0 0 16px 0;
    width: 680px;
    text-align: center;
}

.documents__subtitle {
    max-width: 100%;
    width: 100%;
    margin: 0;

    font-weight: 400;
    font-size: 18px;
    line-height: 26px;

    color: #3E3E5E;

    display: flex;
    justify-content: center;
    align-items: center;
}

.documents__row {
    position: relative;
    max-width: 1280px;
    width: 100%;
    min-height: 448px;
    box-sizing: border-box;
    margin: 40px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 120px;
    overflow: hidden;
    z-index: 0;
}

.documents__row::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/documents/bg-document1.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
}

.documents__row::after {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 24px;
    background: linear-gradient(270deg, #FFFFFF 0%, #F5F5FF 100%);

    transform-origin: right center;
    transform: scaleX(0);
    opacity: 0;

    transition: transform 1.8s cubic-bezier(0.4, 0.0, 0.2, 1),
    opacity 1.2s ease-out;
    will-change: transform, opacity;

    pointer-events: none;
    z-index: 0;
}

.documents__bg {
    position: absolute;
    top: 0;
    bottom: 32px;
    left: 10px;

    width: 40%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    pointer-events: none;
    z-index: 1;
}

.documents__bg.mob {
    display: none;
}

.documents__bg-svg {
    height: 100%;
    max-height: 480px;
}

.documents__bg-line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
}

.documents.is-animated .documents__bg-line {
    animation: documents-road-pulse 4s ease-in-out infinite alternate;
}

.documents.is-animated .documents__row::after {
    transform: scaleX(1);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .documents__bg-line {
        animation: none !important;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes documents-road-draw {
    0% {
        stroke-dashoffset: 0.6;
        opacity: 0.5;
    }
    60% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0.6;
        opacity: 0.5;
    }
}

@keyframes documents-road-pulse {
    from {
        stroke-dashoffset: 1;
        opacity: 1;
    }
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.documents__text,
.documents__visual {
    position: relative;
    z-index: 2;
}

.documents__text {
    flex: 0 0 410px;
    max-width: 410px;
    text-align: left;
}

.documents__lead {
    margin: 0 0 16px;

    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;

    color: #0F0F36;

    span {
        color: #f59e0b;
    }
}

.documents__lead.expiration {
    span {
        color: #FF5A33;
    }
}

.documents__lead.electronic {
    span {
        color: #B2C718;
    }
}

.documents__desc {
    max-width: 310px;
    width: 100%;
    margin: 0;

    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;

    color: #3E3E5E;
}

.documents__desc.expirationDoc {
    max-width: 370px;
}

.documents__visual {
    position: relative;
}

.documents__visual-base {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.documents__visual-layer {
    position: absolute;
    display: block;
    max-width: 100%;
    height: auto;

    opacity: 0;
    transform: translateY(32px) scale(0.96);

    transition: opacity 800ms ease-out,
    transform 800ms cubic-bezier(0.33, 0, 0.2, 1);

    will-change: opacity, transform;
}

.documents__visual-layer--highlight {
    top: 28%;
    left: 3%;
    right: 4%;
    transition-delay: 260ms;
}

.documents__visual-layer--expiration {
    top: -1%;
    left: -5%;
    right: 0;
    transition-delay: 260ms;
    max-width: none;
    width: 38.563rem !important;
}

.documents__visual-layer--upload {
    bottom: -8%;
    left: -8%;
    max-width: 52%;
    transition-delay: 420ms;
}

.documents__visual-layer--upload.expiration {
    bottom: 11%;
    left: -13%;
    max-width: 57%;
}

.documents__visual-layer--upload.sign {
    bottom: 0;
    left: 75%;
    max-width: 28%;
}

.documents.is-animated .documents__visual-layer {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.documents__visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}


.js-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 420ms ease-out, transform 420ms ease-out;
    will-change: opacity, transform;
}

.js-reveal.is-hidden {
    opacity: 0;
    transform: translateY(32px);
}

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

.documents__visual.js-reveal {
    transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
    .js-reveal,
    .js-reveal.is-hidden,
    .js-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/*--------| documents |------------*/

/* Expiration and Electronic*/
.documents__row + .documents__row {
    margin-top: 32px;
}

.documents__row--reverse {
    flex-direction: row-reverse;
}

@media (max-width: 960px) {
    .documents__row--reverse {
        flex-direction: column;
    }
}

.documents__row--main::before {
    background-image: url("../images/documents/bg-document1.svg");
}

.documents__row--expiration::before {
    background-image: url("../images/expiration/expiration_bg.svg");
}

.documents__row--expiration::after {
    background: linear-gradient(90deg, #FFFFFF 0%, #F5F5FF 100%);
    transform-origin: left center;
}

.documents__row--expiration .documents__bg {
    left: auto;
    right: 10px;
    justify-content: flex-end;
}

.documents__row--expiration .documents__bg-svg {
    transform: scaleX(-1);
    transform-origin: center;
}

.documents__visual-layer--expiration-extra {
    top: 69%;
    left: 54%;
    transition-delay: 580ms;
    max-width: 57%;
}

.documents__row--esign::before {
    background-image: url("../images/electronic/electronic_bg.svg");
}

.documents__row.is-animated .documents__bg-line {
    animation: documents-road-pulse 4s ease-in-out infinite alternate;
}

.documents__row.is-animated::after {
    transform: scaleX(1);
    opacity: 1;
}

.documents__row.is-animated .documents__visual-layer {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ===== end Documents ===== */


/* ===== Safety ===== */
.safety {
    margin-bottom: 120px;
    margin-inline: 80px;
    min-height: 441px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.safety > .carriers-space-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.safety__eyebrow {
    margin: 0 0 8px;

    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;

    color: #87879A;
}

.safety__title {
    margin: 0 0 16px;

    font-weight: 500;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;

    color: #0F0F36
}

.safety__subtitle {
    margin: 0;
    max-width: 525px;
    color: #3E3E5E;

    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
}

.safety__cards {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- safety-card ---- */
.safety-card {
    flex: 1 1 26rem; /*416px*/
    max-width: 520px;
    height: 14.5rem; /*232px*/
    border-radius: 20px;
    padding: clamp(16px, 2.2vw, 24px);

    border: 1px solid rgba(2, 6, 23, 0.06);
    text-align: left;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);

    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 180ms cubic-bezier(.18, .75, .25, 1),
    box-shadow 220ms ease-out,
    background-color 160ms ease-out;
    will-change: transform, box-shadow;
}


.safety-card:hover,
.safety-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}


.safety-card__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.safety-card__icon-img {
    width: 100%;
    height: 100%;
    display: block;
}

.safety-card__title {
    margin: 0 0 16px;

    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;

    color: #0F0F36;
}

.safety-card__text {
    max-width: 350px;
    margin: 0;
    color: #3E3E5E;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.safety-card__text.driver {
    max-width: 255px;

}

.safety-card__text.carrier {
    max-width: 285px;
}

.safety-card--violet {
    background: #D7D7F424;
    border: 1px solid #D7D7F499
}

.safety-card--peach {
    background: #FF5A330F;
    border: 1px solid #FF5A3333
}

.safety-card--yellow {
    background: #C0D9040F;
    border: 1px solid #C0D90433
}

/* ===== Safety ===== */

/* ===== Consulting ===== */
.consulting {
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
}

.consulting > .carriers-space-container {
    width: 100%;
    margin-inline: 16px;
}

.consulting__panel {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    border-radius: 24px;
    background: linear-gradient(278.11deg, #FFE2DB -0.26%, #D3D3FF 104.69%);
    border: 1px solid;
    border-image-source: linear-gradient(0deg, #D7D7F4 -4%, #E8DAEE 315.78%);
    overflow: hidden;
}

.consulting__panel .consulting__bg-svg--roads {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    width: 100%;
    height: 100%;
    left: 0;

    display: block;

    opacity: 0;
    transform: translate3d(320px, 14px, 0) scale(1.015);
    filter: blur(1.8px);

    will-change: opacity, transform, filter;

    /*transition: opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),*/
    /*transform 2200ms cubic-bezier(0.16, 1, 0.3, 1),*/
    /*filter 1600ms cubic-bezier(0.16, 1, 0.3, 1);*/

    transition: opacity 1300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 2800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consulting__panel .consulting__bg-svg--roads > rect:first-child {
    fill: transparent !important;
}

.consulting__panel .consulting__bg-svg--roads path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
}

.consulting__panel.is-animated .consulting__bg-svg--roads {
    opacity: 1;
    /*transform: translate3d(0, 0, 0) scale(1.015);*/
    /*filter: blur(0);*/

    transform: translate3d(12px, 0, 0) scale(1.015);
    filter: blur(0.25px);
}

/* Фаза 2: “допливання” (дуже м’яко) */
.consulting__panel.is-settled .consulting__bg-svg--roads {
    transform: translate3d(0, 0, 0) scale(1.015);
    filter: blur(0);
}

.consulting__content,
.consulting__media {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .consulting__panel .consulting__bg-svg--roads {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}


.consulting__bg-svg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.consulting__media,
.consulting__content {
    position: relative;
    z-index: 1;
}

.consulting__media {
    position: relative;
    min-width: 460px;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.consulting__visual {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
}

.consulting__visual-base {
    position: absolute;
    top: 60%;
    max-width: none;
    border-radius: 0 20px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.18);

    opacity: 0;
    transform: translateY(-50%) scale(0.98);
    transition: opacity 600ms ease-out,
    transform 600ms cubic-bezier(0.33, 0, 0.2, 1);
}

.consulting__panel.is-animated .consulting__visual-base {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.consulting__visual-layer {
    position: absolute;
    display: block;
    max-width: 100%;
    height: auto;

    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: opacity 700ms ease-out,
    transform 700ms cubic-bezier(0.33, 0, 0.2, 1);
    will-change: opacity, transform;
}

.consulting__visual-layer--card {
    bottom: -1%;
    left: 61%;
}

/*
.consulting__content {
    position: relative;
    z-index: 1;
}
*/

/* === Consulting content reveal (як у media) === */
.consulting__content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    width: 100%;

    /* старт: сховано */
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(0.4px);

    will-change: opacity, transform, filter;
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* коли секція в viewport */
.consulting__panel.is-animated .consulting__content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    transition-delay: 220ms; /* щоб після roads/media було природно */
}

/* --- Stagger (поступова поява заголовок/текст/кнопка/нота) --- */
.consulting__content > * {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    will-change: opacity, transform;
    transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* активний стан */
.consulting__panel.is-animated .consulting__content > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.consulting__panel.is-animated .consulting__title {
    transition-delay: 260ms;
}

.consulting__panel.is-animated .consulting__subtitle {
    transition-delay: 360ms;
}

.consulting__panel.is-animated .consulting__cta {
    transition-delay: 460ms;
}

.consulting__panel.is-animated .hero__note.consulting {
    transition-delay: 560ms;
}

@media (prefers-reduced-motion: reduce) {
    .consulting__content,
    .consulting__content > * {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.consulting__panel.is-animated .consulting__visual-layer {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/*.consulting__panel.is-animated .consulting__content {
    display: flex;
    flex-direction: column;
    width: 100%;

    opacity: 1;
    transform: translateY(0);
}*/

.consulting__title {
    margin: 0 0 16px;

    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 0;
    color: #0F0F36;

    max-width: 468px;
    width: 100%;
}

.consulting__title-accent {
    color: #FF5A33;
}

.consulting__subtitle {
    margin: 0 0 40px;
    color: #3E3E5E;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;

    max-width: 468px;
    width: 100%;
}

.hero__note.consulting {
    margin: 8px auto 0;
    width: 70%;
    justify-content: flex-start;
}

.consulting__cta {
    display: inline-flex;
    align-items: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.consulting__cta:hover {
    /*transform: translateY(-1px);*/
    color: #fff;
}

.consulting__cta:active {
    transform: translateY(0);
}

/* ===== Consulting ===== */


/* ===== Hiring ===== */
.hiring {
    margin-block: 120px;
    position: relative;
    overflow: hidden;

    width: 100%;
}

.hiring > .carriers-space-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    margin: 0 auto;
}

.hiring__eyebrow {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    color: #87879A;
    margin-bottom: 8px;
}

.hiring__title {
    font-weight: 600;
    font-size: 56px;
    line-height: 120%;
    margin: 0 0 10px 0;
    max-width: 720px;
}

.hiring__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #3E3E5E;
    margin: 0;

    max-width: 428px;
    width: 100%;

}

/* row card */
.hiring__row {
    position: relative;
    max-width: 1280px;
    width: 100%;
    min-height: 480px;
    box-sizing: border-box;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
}

.hiring__row::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(270deg, #F5F5FF 0%, #FFFFFF 100%);
    z-index: 0;
}

.hiring__row.hr::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(270deg, #FFFFFF 0%, #F5F5FF 100%);
    z-index: 0;
}

.hiring__row::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.9;
    z-index: 1;
}

.hiring__row--form::before {
    background-image: url("../images/hiring/bg_1.svg");
    background-position: 57% 95%;
}

.hiring__row--hr::before {
    background-image: url("../images/hiring/bg_2.svg");
    background-position: right 40% center;
}

.hiring__row--cards::before {
    background-image: url("../images/hiring/bg_3.svg");
    background-position: left 40% center;
}

.hiring__row--reverse {
    flex-direction: row-reverse;
    margin-top: 32px;
}

.hiring__driver {
    margin-top: 32px;
}

.hiring__text,
.hiring__visual {
    position: relative;
    z-index: 1;
}

.hiring__text {
    flex: 0 0 410px;
    max-width: 410px;
    text-align: left;
}

.hiring__text.hiring {
    max-width: 100%;
    flex: 0 0 545px;
}

.hiring__lead {
    position: relative;
    height: 41px;
    margin: 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #0F0F36;

    span {
        color: #f59e0b;
    }
}

.hiring__lead span {
    color: #111827;
}

.hiring__lead--form span {
    color: #F59E0B;
}

.hiring__lead--hr span {
    color: #FF5A33;
}

.hiring__lead--cards span {
    color: #4CAF50;
}

.hiring__desc {
    margin: 16px 0 0;
    max-width: 410px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #3E3E5E;
}

.hiring__desc-line {
    display: block;
}

.HR_base {
    max-width: 350px;
    width: 100%;
}

.hiring__desc.hiring {
    max-width: 350px;
    width: 100%;
}

.hiring__visual {
    margin: 0;
}

.hiring__visual-base {
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    transform: translateX(16px);
}

.hiring__visual-base.hr {
    transform: translateX(35px);
}

.hiring__visual-base.hiring {
    transform: translateX(20px);
}

.driver-card-preview {
    transform: translateX(27px) translateY(14px);
}

.hiring__visual-layer {
    position: absolute;
    display: block;

    max-width: 100%;
    height: auto;

    transition: opacity 800ms ease-out,
    transform 800ms cubic-bezier(0.33, 0, 0.2, 1);
    will-change: opacity, transform;
}

.hiring__row.js-reveal.is-hidden .hiring__visual-layer {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
}

.hiring__row.js-reveal.is-visible .hiring__visual-layer {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hiring__row.js-reveal {
    transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.hiring__row.js-reveal.is-hidden {
    opacity: 0;
    transform: translateY(32px);
}

.hiring__row.js-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hiring__visual-layer--form {
    display: none;
    bottom: -4%;
    left: -4%;
    max-width: 55%;
    transition-delay: 320ms;
}

.hiring__visual-layer--jobs {
    top: 7%;
    right: -15%;
    max-width: 134%;
    transition-delay: 220ms;
}

.hiring__visual-layer--qr {
    bottom: -12%;
    left: 87%;
    max-width: 100%;
    transition-delay: 420ms;
}

.hiring__visual-layer--card-main {
    top: 35%;
    left: 32%;
    transition-delay: 260ms;
}

.hiring__visual-layer--profile {
    top: -6%;
    right: -19%;
    max-width: 100%;
    transition-delay: 260ms;
}

/* ===== end Hiring ===== */


/* ===== Reports ===== */
.reports {
    height: 1034px;
    margin: 0 16px 120px 16px;
    padding-bottom: 103px;
    display: flex;
    justify-content: center;

    box-shadow: none;
    min-height: 1034px;
    background: linear-gradient(0deg, #F5F5FF -4.21%, #FFFFFF 108.42%);
    border-radius: 24px;
}

.reports > .carriers-space-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}

.reports__eyebrow {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #87879A;
}

.reports__title {
    font-weight: 500;
    font-size: 56px;
    line-height: 54px;
    letter-spacing: 0;
    text-align: center;

    margin-bottom: 16px;
    color: #0F0F36;
}

.reports__subtitle {
    margin-bottom: 40px;
    color: #3E3E5E;

    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
}

.reports__tabs {
    display: flex;
    padding: 6px;
    border-radius: 100px;
    border: 1px solid #DCDCF5;
}

.reports__tab {
    border: 0;
    background: transparent;
    padding: 14px 51.5px;
    border-radius: 100px;

    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0;
    vertical-align: middle;

    cursor: pointer;
    color: #292961;
    transition: all .2s ease;
}

.reports__tab.is-active {
    background: #0F0F36;
    color: #F4F4F4;
    font-weight: 500;
    box-shadow: 0 0 4px 0 #0F0F361A;
}

:root {
    --reports-trf: .66s cubic-bezier(.22, 1.1, .18, 1);
    --reports-fade: .45s ease;
}

.reports__deck {
    position: relative;
    width: min(1003px, 100%);
    margin-inline: auto;
    aspect-ratio: 1003 / 703;
    perspective: 1600px;
    isolation: isolate;
    touch-action: pan-y;
    cursor: grab;
}

.reports__slide {
    --x: 0px;
    --y: 0px;
    --s: 1;
    --o: 1;
    --blur: 0px;
    --z: 1;
    --rz: 0deg;

    position: absolute;
    left: 50%;
    top: 50%;

    width: 100%;
    height: 100%;

    transform-origin: center bottom;
    transform: translate(-50%, -50%) translateX(var(--x)) translateY(var(--y)) scale(var(--s)) rotateZ(var(--rz));

    transition: transform var(--reports-trf),
    filter var(--reports-fade),
    opacity var(--reports-fade),
    z-index 0s linear .35s;

    border-radius: 22px;

    z-index: var(--z);
    opacity: var(--o);
}

.reports__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.reports__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #0f172a;
    font-size: 24px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .18);
    z-index: 50;
}

.reports__nav--prev {
    left: 6px;
}

.reports__nav--next {
    right: 6px;
}

.reports__nav:active {
    transform: translateY(-50%) scale(.98);
}

.reports__slide[aria-current="true"] {
    filter: blur(0);
    opacity: 1;
}

/* ===== end Reports ===== */


/* ===== Features ===== */
.features {
    margin-bottom: 120px;
    height: 482px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features > .carriers-space-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    padding-left: 80px;
}

.features__eyebrow {
    margin: 0 0 8px;

    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;

    color: #0F0F36;
}

.features__title {
    margin: 0 0 8px;
    max-width: 600px;

    font-weight: 500;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0;

    color: #0F0F36;
}

.features__subtitle {
    margin: 0 0 40px;
    max-width: 480px;

    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;

    color: #3E3E5E;
}

.features__slider {
    width: 100%;
    position: relative;
}

.features__arrow {
    position: absolute;
    top: -45px;
    right: 0;
    transform: translateY(-100%);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.features__arrow--prev {
    right: 130px;
}

.features__arrow--next {
    right: 78px;
}

.features__arrow {
    border: 1px solid #e5e7eb;
}

.features__arrow.is-active {
    border: 1.28px solid #FF5A33;

    .features__arrow-ico {
        color: #ff6a3c;
    }
}

.features__arrow:focus-visible {
    outline: 2px solid rgba(255, 90, 51, 0.35);
    outline-offset: 2px;
}

.features__arrow:hover {
    box-shadow: 0 6px 18px rgba(16, 24, 40, .12);
    border-color: #ffd0c0;
}

.features__arrow-ico {
    font-size: 18px;
    color: #D7D7F4;
    line-height: 1;
}

.features__track {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    list-style: none;
    touch-action: pan-x;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features__track::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}

.features__track::-webkit-scrollbar {
    height: 8px;
}

.features__track::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 8px;
}

.features__card {
    flex: 0 0 min(395px, 8024.688rem);
    height: 13.375rem; /*214px*/
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #D7D7F4;
    border-radius: 16px;
    padding: 24px;
}

.features__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.features__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.features__card-title {
    margin: 0 0 12px;

    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;

    color: #0F0F36;
}

.features__card-text {
    margin: 0;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #414141;

    max-width: 300px;
    width: 100%;
}

.features__card-text.text-width {
    max-width: 320px
}

.features__card-text.text-width_1 {
    max-width: 280px;
}

/* ===== end Features ===== */


/* ===== Trial ===== */
.trial {
    height: 712px;
    min-height: 0;

    display: flex;
    align-items: center;
    flex-direction: column;

    margin: 0 16px 50px;
    padding: 0;
}

.trial > .carriers-space-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 16px;
}

.trial__panel {
    width: 100%;
    min-height: 628px;
    display: flex;
    justify-content: space-between;
    padding: 80px 0 0 80px;

    border-radius: 28px;
    background: linear-gradient(278.11deg, #D3D3FF -0.26%, #FFE2DB 104.69%);
    position: relative;
    overflow: hidden;
}

.trial__content {
    display: flex;
    flex-direction: column;
    padding: 75px 0 0;
}

.trial__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: 0;
    margin-bottom: 16px;

    color: #0F0F36;
}

.trial__accent {
    color: #FF5A33;
}

.trial__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 0 0 64px;

    color: #3E3E5E;
}

.trial__actions {
    display: flex;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.trial__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    border: 1px solid transparent;
}

.sign_up-button {
    padding: 16px 51px;

    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #0F0F36;

    display: flex;
    justify-content: center;
    align-items: center;
}

.trial__btn--primary {
    background: #FF5A33;
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 106, 60, .35);
}

.trial__btn--primary:hover {
    transform: translateY(-1px);
}

.trial__btn--ghost {
    background: transparent;
    color: #0F0F36;
    border-color: rgba(2, 6, 23, .4);
}

.trial__btn--ghost:hover {
    background: rgba(255, 255, 255, .5);
}

.trial__note {
    margin-top: 8px;
    margin-right: 90px;

    color: #3E3E5E;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0;

    display: flex;
    justify-content: flex-end;
}

.trial__media {
    position: relative;
    min-height: 560px;
    width: 100%;
}

.trial__img {
    position: absolute;
    display: block;
    max-width: none;
    user-select: none;
    pointer-events: none;
}

.trial__img--dashboard {
    right: 0;
    bottom: 0;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    z-index: 2;

    transition: opacity 700ms ease-out,
    transform 700ms cubic-bezier(0.33, 0, 0.2, 1);
    transition-delay: 80ms;
}

.trial__road-svg {
    position: absolute;
    right: 65%;
    bottom: 5%;
    width: 120%;
    height: auto;
    z-index: 1;
    overflow: visible;
}

.trial__road-path {
    transition: stroke-dashoffset 1.4s cubic-bezier(0.33, 0, 0.2, 1);
}

.trial__img--card {
    bottom: 0%;
    left: 6%;
    border-radius: 14px;
    z-index: 3;

    transition: opacity 700ms ease-out,
    transform 800ms cubic-bezier(0.33, 0, 0.2, 1);
    transition-delay: 160ms;
}

/* Стани js-reveal для правої частини ====== !!!!!! */

.trial__panel.js-reveal.is-hidden .trial__img--dashboard {
    opacity: 0;
    transform: translate3d(32px, 16px, 0) scale(0.96);
}

.trial__panel.js-reveal.is-hidden .trial__img--card {
    opacity: 0;
    transform: translate3d(0, 32px, 0) rotate(-8deg) scale(0.9);
}

.trial__panel.js-reveal.is-visible .trial__img--dashboard {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.trial__panel.js-reveal.is-visible .trial__img--card {
    opacity: 1;
}

.trial__panel.js-reveal.is-visible .trial__road-path {
    stroke-dashoffset: 0;
}

/* ==== REVEAL-Анімація при скролі ===================================== */
.trial__panel.js-reveal.is-hidden .trial__img--dashboard {
    opacity: 0;
    transform: translate3d(32px, 16px, 0) scale(0.96);
}

.trial__panel.js-reveal.is-hidden .trial__img--road {
    opacity: 0;
    transform: translateX(40%) scaleX(0.7);
}

.trial__panel.js-reveal.is-hidden .trial__img--card {
    opacity: 0;
    transform: translate3d(0, 32px, 0) rotate(-8deg) scale(0.9);
}

.trial__panel.js-reveal.is-visible .trial__img--dashboard {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.trial__panel.js-reveal.is-visible .trial__img--road {
    opacity: .55;
    transform: translateX(0) scaleX(1);
}

.trial__panel.js-reveal.is-visible .trial__img--card {
    opacity: 1;
}

.trial__tagline {
    margin: 45px 0 60px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #3E3E5E;
}

/* ===== end Trial ===== */


/* ===== Footer ===== ===== =====*/
.footer {
    height: 385px;
    padding: 0;
    margin: 0;

    display: flex;
    justify-content: center;

    background: transparent;
}

.footer > .carriers-space-container {
    display: flex;
    flex-direction: column;
}

.footer__panel {
    display: grid;
    grid-template-columns: 1.8fr 0.9fr 0.9fr;
    grid-template-rows: auto auto;

    padding: 70px 80px;

    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    background: #F7F7FF;
    border-top: 1px solid #D0D0DA;
}

.footer__logo {
    max-width: 171px;
    margin-bottom: 17px;
}

.footer__lead {
    max-width: 339px;
    margin: 0 0 24px;
    color: #3E3E5E;

    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
}

.footer__form {
    margin: 0;
}

.footer__input-group {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #ffffff;
    border-radius: 12px;
    padding: 8px 8px 8px 16px;
    max-width: 522px;
    max-height: 64px;
}

.footer__input {
    flex: 1 1 auto;
    border: none;
    outline: none;

    padding: 0;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #A9A9C2;
}

.footer__input::placeholder {
    color: #A9A9C2;
}

.footer__btn {
    width: 160px;
    height: 48px;
    opacity: 1;
    gap: 8px;

    border: 0;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 12px;

    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    background: #0F0F36;
    color: #fff;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.footer__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 17, 48, 0.25);
}

.footer__col-title {
    margin: 0 0 16px;

    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;

    color: #0F0F36;
}

.footer__col-title.extra {
    margin: 0 0 16px 20px;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

.footer__list a {
    padding: 0;
    color: #0F0F36;
    text-decoration: none;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    margin: 8px 0;
    display: flex;
}

.footer__list a:hover {
    text-decoration: underline;
}

/* Social */

.footer__social-list {
    list-style: none;
    padding: 0;
    display: grid;
    margin-left: 20px;
}

.footer__social-link {
    gap: 8px;
    color: #0F0F36;
    text-decoration: none;

    padding: 0;
    margin: 8px 0;

    display: flex;

    span {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;

        color: #0F0F36;
    }
}

.footer__social-link:hover {
    text-decoration: underline;
}

.footer__social-ico {
    width: 24px;
    height: 24px;
    display: block;
}

/* Bottom bar */
.footer__bar {
    margin-top: 30px;
    padding-top: 23px;

    border-top: 1px solid #D0D0DA;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    grid-column: 1 / -1;
}

.footer__copy {
    margin: 0;

    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;

    color: #3E3E5E;
}

.footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0;

    color: #3E3E5E;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.visually-hidden.footer {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ===== end Footer ===== ===== =====*/
