.sto-page {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    --sto-section-space: 52px;
    --sto-section-gap: 0px;
    --sto-block-space: calc(var(--sto-section-space) * 1.5);
    background:
        radial-gradient(1200px 400px at 5% -10%, rgba(32, 3, 228, 0.08), transparent 60%),
        radial-gradient(1000px 360px at 95% 0%, rgba(32, 3, 228, 0.06), transparent 60%),
        #f5f7f9;
}

.sto-bg-shape {
    position: absolute;
    z-index: 0;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
    background: var(--color-main);
}

.sto-bg-shape_left {
    top: 120px;
    left: -160px;
}

.sto-bg-shape_right {
    top: 680px;
    right: -160px;
}

.sto-page section,
.sto-page .wrapper {
    position: relative;
    z-index: 1;
}

.sto-page .wrapper {
    padding-left: clamp(30px, 4vw, 70px);
    padding-right: clamp(30px, 4vw, 70px);
    box-sizing: border-box;
}

.sto-section,
.sto-hero {
    padding-top: var(--sto-block-space);
    padding-bottom: var(--sto-block-space);
}

.sto-section + .sto-section {
    margin-top: var(--sto-section-gap);
}

.footer#footer {
    margin-top: 0 !important;
}

.sto-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(680px 380px at 92% 16%, rgba(32, 3, 228, 0.34), rgba(32, 3, 228, 0) 68%),
        radial-gradient(420px 220px at 12% 88%, rgba(0, 162, 223, 0.12), rgba(0, 162, 223, 0) 74%),
        linear-gradient(98deg, #ffffff 0%, #f4f8ff 52%, #dce9ff 100%);
    border-bottom: 0;
}

.sto-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(32, 3, 228, 0.03) 0%, rgba(32, 3, 228, 0.01) 44%, rgba(32, 3, 228, 0.12) 100%);
}

.sto-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

.sto-hero .wrapper::before {
    content: none;
}

.sto-hero .wrapper::after {
    content: none;
}

.sto-section_alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.65) 100%);
    border-top: 0;
    border-bottom: 0;
}

.sto-section_white {
    background: #ffffff;
}

.sto-section_offer {
    background:
        radial-gradient(600px 260px at 95% -8%, rgba(32, 3, 228, 0.28), rgba(32, 3, 228, 0) 70%),
        radial-gradient(560px 240px at -8% 108%, rgba(0, 162, 223, 0.24), rgba(0, 162, 223, 0) 72%),
        linear-gradient(180deg, rgba(241, 245, 255, 0.98) 0%, rgba(236, 243, 255, 0.94) 100%);
    border-top: 0;
    border-bottom: 0;
}

.sto-section_offer-main {
    background:
        radial-gradient(680px 380px at 92% 16%, rgba(32, 3, 228, 0.34), rgba(32, 3, 228, 0) 68%),
        radial-gradient(420px 220px at 12% 88%, rgba(0, 162, 223, 0.12), rgba(0, 162, 223, 0) 74%),
        linear-gradient(98deg, #ffffff 0%, #f4f8ff 52%, #dce9ff 100%);
}

.sto-grid {
    display: grid;
    gap: 24px;
}

.sto-grid_hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
}

.sto-hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sto-hero-media img {
    width: min(430px, 100%);
    height: auto;
    display: block;
    transform-origin: 50% 50%;
    animation: sto-orbit-slow 8s linear infinite;
}

@keyframes sto-orbit-slow {
    from {
        transform: rotate(0deg) translateX(22px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(22px) rotate(-360deg);
    }
}

.sto-grid_final {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
}

.sto-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-main);
    background: rgba(32, 3, 228, 0.08);
}

.sto-hero .sto-kicker {
    color: var(--color-main);
    background: rgba(32, 3, 228, 0.1);
    box-shadow: none;
}

.sto-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.14;
    color: #333333;
}

.sto-hero .sto-title {
    color: #333333;
    text-shadow: none;
}

.sto-subtitle {
    margin: 0;
    font-size: 18px;
    color: #383838;
}

.sto-hero .sto-subtitle {
    color: #383838;
}

.sto-list-check {
    margin: 24px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sto-list-check li {
    position: relative;
    padding: 0 0 0 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.sto-hero .sto-list-check li {
    color: #383838;
    padding-left: 30px;
}

.sto-list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-main);
    box-shadow: 0 0 0 4px rgba(32, 3, 228, 0.14);
}

.sto-hero .sto-list-check li::before {
    content: "";
    width: 10px;
    height: 10px;
    top: 6px;
    left: 0;
    transform: none;
    border-radius: 50%;
    background: var(--color-main);
    border: 0;
    box-shadow: 0 0 0 3px rgba(32, 3, 228, 0.14);
}

.sto-hero .sto-list-check li::after {
    content: none;
}

.sto-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.sto-btn_primary {
    color: #fff;
    background: var(--color-main);
}

.sto-btn_primary:hover {
    color: #fff;
    background: var(--color-main-hover);
    text-decoration: none;
}

.sto-btn_outline {
    color: var(--color-main);
    border-color: var(--color-main);
    background: #fff;
}

.sto-btn_outline:hover {
    color: var(--color-main);
    text-decoration: none;
    background: var(--color-main-hover-bleck);
}

.sto-hero .sto-btn_primary {
    box-shadow: none;
}

.sto-hero .sto-btn_outline {
    color: var(--color-main);
    border-color: var(--color-main);
    background: #ffffff;
}

.sto-hero .sto-btn_outline:hover {
    color: var(--color-main);
    border-color: var(--color-main);
    background: var(--color-main-hover-bleck);
}

.sto-card-glass {
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sto-card-glass h3 {
    margin-top: 0;
}

.sto-card-glass ol {
    margin: 0 0 14px;
    padding-left: 20px;
}

.sto-text-wide {
    margin: 0;
    max-width: 980px;
    font-size: 17px;
    line-height: 1.55;
}

.sto-offer {
    display: grid;
    gap: 18px;
}

.sto-offer__title {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.2;
    color: #333333;
    font-weight: 700;
}

.sto-offer__lead {
    margin: 0;
    max-width: 1100px;
    font-size: 20px;
    line-height: 1.6;
    color: #262626;
}

.sto-offer__lead strong {
    color: var(--color-main);
}

.sto-offer__process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sto-offer__process article {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
    box-shadow: 0 6px 16px rgba(32, 3, 228, 0.1);
    border: 0;
}

.sto-offer__process span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-main);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.sto-offer__process p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.sto-copy {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 36px;
    align-items: stretch;
    background: transparent;
}

.sto-copy__left {
    display: grid;
    gap: 20px;
}

.sto-copy__main-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.sto-copy__main-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    cursor: zoom-in;
}

.sto-copy__left-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sto-copy__side-photo img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.sto-copy__side-video video {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sto-copy__right {
    display: grid;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    align-content: space-between;
}

.sto-copy__eyebrow {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-main);
}

.sto-copy__title {
    margin: 0;
    color: #333333;
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    max-width: 900px;
}

.sto-copy__text {
    margin: 0;
    color: #383838;
    font-size: 17px;
    line-height: 1.6;
    max-width: 920px;
}

.sto-copy__icon-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 14px;
}

.sto-copy__icon-box {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
}

.sto-copy__icon {
    width: 38px;
    height: 38px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    background: transparent;
    box-shadow: none;
    border: 0;
    position: relative;
}

.sto-copy__icon_pick::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cg fill='none' stroke='%23333333' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 6.3 8.8 10v7.6c0 6 4.3 10.9 10.2 12.8 5.9-1.9 10.2-6.8 10.2-12.8V10L19 6.3Z'/%3E%3Cpath d='m13.8 18.9 3 2.9 6.9-7'/%3E%3C/g%3E%3C/svg%3E") center/38px 38px no-repeat;
}

.sto-copy__icon_support::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cg fill='none' stroke='%23333333' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 20a9 9 0 0 1 18 0'/%3E%3Crect x='8.7' y='19.4' width='4.2' height='8' rx='1.9'/%3E%3Crect x='25.1' y='19.4' width='4.2' height='8' rx='1.9'/%3E%3Cpath d='M29.3 26.5v1.2a3.2 3.2 0 0 1-3.2 3.2h-3.7'/%3E%3Ccircle cx='21.1' cy='30.9' r='1.1' fill='%23333333' stroke='none'/%3E%3C/g%3E%3C/svg%3E") center/38px 38px no-repeat;
}

.sto-copy__icon_support::after {
    content: none;
}

.sto-copy__icon-box h3 {
    margin: 0;
    color: #333333;
    font-size: 20px;
}

.sto-copy__icon-box p {
    margin: 8px 0 0;
    color: #383838;
    font-size: 16px;
    line-height: 1.5;
}

.sto-copy__checks {
    display: block;
    margin-top: 16px;
}

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

.sto-copy__check-list {
    max-width: 760px;
}

.sto-copy__checks li {
    position: relative;
    margin: 0;
    padding-left: 30px;
    color: #383838;
    font-size: 16px;
    line-height: 1.4;
}

.sto-copy__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-main);
    box-shadow: 0 0 0 3px rgba(32, 3, 228, 0.14);
}

.sto-copy__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.sto-copy__btn {
    min-width: 150px;
    border-radius: 30px;
}

.sto-copy__btn span {
    margin-left: 8px;
}

.sto-copy__call {
    display: grid;
    gap: 4px;
    grid-template-columns: 48px 1fr;
    align-items: center;
    column-gap: 12px;
}

.sto-copy__call::before {
    content: "";
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-main) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79a15.91 15.91 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.85 21 3 13.15 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.25 1z'/%3E%3C/svg%3E") center/20px 20px no-repeat;
    grid-row: 1 / 3;
}

.sto-copy__call span {
    color: #383838;
    font-size: 16px;
    font-weight: 700;
}

.sto-copy__call strong {
    color: #333333;
    font-size: 20px;
    white-space: nowrap;
}

.sto-copy__call strong a {
    color: inherit;
    text-decoration: none;
}

.sto-lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 30, 0.86);
    padding: 22px;
}

.sto-lightbox.is-open {
    display: flex;
}

.sto-lightbox__image {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.sto-lightbox__close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.sto-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(9, 15, 36, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

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

.sto-modal__dialog {
    position: relative;
    width: min(560px, 100%);
    padding: 22px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(32, 3, 228, 0.12);
    box-shadow: 0 20px 46px rgba(10, 20, 52, 0.28);
}

.sto-modal__close {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    color: #555;
    background: rgba(32, 3, 228, 0.08);
}

.sto-modal__title {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.1;
    color: #171717;
}

.sto-modal__thanks-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #23262f;
}

.sto-modal_thanks .sto-modal__dialog {
    width: min(460px, 100%);
    text-align: center;
    cursor: pointer;
}

.sto-modal_thanks .sto-modal__close {
    cursor: pointer;
}

.sto-modal__form {
    display: grid;
    gap: 10px;
}

.sto-modal__form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
}

.sto-modal__form input,
.sto-modal__form textarea {
    border: 1px solid #dce3ef;
    border-radius: 10px;
    font-size: 14px;
    padding: 11px 13px;
}

.sto-modal__form textarea {
    resize: vertical;
    min-height: 84px;
}

.sto-modal__policy {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
    font-size: 12px;
    line-height: 1.45;
    color: #40404a;
}

body.sto-modal-open {
    overflow: hidden;
}

.sto-metrics {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sto-metric {
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.sto-metric strong {
    display: block;
    font-size: 26px;
    color: var(--color-main);
}

.sto-metric span {
    font-size: 14px;
}

.sto-media-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sto-media-grid img,
.sto-media-grid video {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.sto-social-links {
    margin-top: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sto-social-links span {
    font-weight: 700;
}

.sto-social-links .board-info__social-link {
    display: inline-flex;
    border-radius: 10px;
    transition: transform .2s ease;
}

.sto-social-links .board-info__social-link:hover {
    transform: translateY(-2px);
}

.sto-social-fallback {
    padding: 8px 12px;
    border-radius: 20px;
    color: var(--color-main);
    border: 1px solid rgba(32, 3, 228, 0.3);
}

.sto-calc {
    margin-top: 20px;
    padding: 22px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
}

.sto-calc_focus {
    margin-top: 6px;
    border: 0;
    box-shadow: 0 14px 32px rgba(32, 3, 228, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 255, 0.99) 100%);
}

.sto-calc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.sto-calc__head h3 {
    margin: 0;
}

.sto-calc__badge {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(32, 3, 228, 0.1);
    color: var(--color-main);
    font-size: 12px;
    font-weight: 700;
}

.sto-offer__action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 14px;
    align-items: center;
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(120deg, var(--color-main) 0%, #2f56ff 100%);
    border: 1px solid rgba(32, 3, 228, 0.45);
    box-shadow: 0 14px 28px rgba(32, 3, 228, 0.22);
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

@media (max-width: 1100px) {
    .sto-offer__action {
        grid-template-columns: 1fr;
    }

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

.sto-offer__action:hover {
    transform: scale(1.01);
    box-shadow: 0 18px 34px rgba(32, 3, 228, 0.28);
}

.sto-offer__action-text {
    display: grid;
    gap: 8px;
    padding: 2px 0;
}

.sto-offer__action-text h3 {
    margin: 0;
    font-size: 24px;
    color: #ffffff;
}

.sto-offer__action-text p {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.sto-offer__mini-form {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.sto-offer__mini-form .sto-btn {
    min-height: 44px;
    padding: 0 22px;
    border-color: #ffffff;
    background: #ffffff;
    color: var(--color-main);
    white-space: nowrap;
    width: auto;
}

.sto-offer__mini-form .sto-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-main);
}

.sto-calc h3 {
    margin: 0 0 16px;
}

.sto-calc-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sto-calc-values div {
    border-radius: 10px;
    background: #f5f7f9;
    padding: 12px;
}

.sto-calc-values span {
    display: block;
    font-size: 14px;
}

.sto-calc-values strong {
    display: block;
    margin-top: 4px;
    font-size: 26px;
    color: #333;
}

.sto-range {
    margin: 16px 0 10px;
    width: 100%;
    accent-color: var(--color-main);
}

.sto-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sto-chip {
    border: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 20px;
    padding: 7px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
}

.sto-chip:hover,
.sto-chip.is-active {
    border-color: var(--color-main);
    color: var(--color-main);
}

.sto-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}


.sto-brandwall {
    display: grid;
    gap: 18px;
}

.sto-brandwall h2 {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.2;
    color: #333333;
    font-weight: 700;
}

.sto-section_brands {
    background: #ffffff;
}

.sto-brandwall__lead {
    margin: 0;
    max-width: 980px;
    font-size: 17px;
    line-height: 1.55;
}

.sto-brandwall__hero {
    display: none;
}

.sto-brandwall__hero img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    max-height: 360px;
}

.sto-brandwall__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 28px 34px;
    justify-content: start;
    margin-top: 18px;
    align-items: start;
}

.sto-brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: transform .2s ease, opacity .2s ease;
}

.sto-brand-item:hover {
    transform: translateY(-2px) scale(1.03);
}

.sto-brand-item__logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 34px;
    filter: brightness(0) saturate(100%);
}

.sto-brand-item span:last-child {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    text-align: left;
}

.sto-brandwall__note {
    margin-top: 0;
}

.application__wrapper {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.application__wrapper::before {
    content: none;
}

.application__title {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.2;
    color: #333333;
    font-weight: 700;
}

.application__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: 16px;
}

.application__left,
.application__right {
    position: relative;
    z-index: 1;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(32, 3, 228, 0.16);
    background: #ffffff;
}

.application__left {
    display: grid;
    gap: 18px;
    align-content: start;
}

.application__left-person {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    align-items: center;
}

.person__img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 7px;
    border: 0;
    background: linear-gradient(145deg, rgba(0, 162, 223, 0.95), rgba(47, 86, 255, 0.95) 60%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 12px 24px rgba(32, 3, 228, 0.2);
}

.person__img_story {
    cursor: pointer;
}

.person__img_story::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(32, 3, 228, 0.4);
    animation: sto-story-ring 2.2s ease-in-out infinite;
}

.person__img_story::after {
    content: none;
}

.person__img_story img {
    transition: transform .25s ease;
}

.person__img_story:hover img {
    transform: scale(1.03);
}

.person__img_story .green_round {
    z-index: 2;
}

@keyframes sto-story-ring {
    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

.person__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
}

.green_round {
    position: absolute;
    right: 10px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2fde63;
    border: 4px solid #fff;
    box-shadow: 0 0 0 5px rgba(47, 222, 99, 0.26);
}

.sto-modal_video .sto-modal__dialog {
    width: min(360px, 100%);
    padding: 8px;
    border: 0;
    background: #000;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

.sto-modal_video .sto-modal__close {
    right: 8px;
    top: 8px;
    z-index: 2;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.48);
}

.sto-video-frame {
    position: relative;
    width: 100%;
    padding-top: 198.8%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.sto-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sto-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.sto-modal_policy .sto-modal__dialog {
    width: min(920px, 100%);
    padding: 14px;
}

.sto-modal_policy .sto-modal__title {
    margin: 4px 40px 12px 6px;
    font-size: 24px;
}

.sto-policy-frame {
    width: 100%;
    height: min(78vh, 760px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dfe6f2;
}

.sto-policy-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.person__name,
.person__position,
.content__text,
.application__right-text {
    margin: 0;
}

.person__name {
    font-size: 24px;
    line-height: 1.22;
    font-weight: 800;
    color: #181818;
}

.person__position {
    margin-top: 8px;
    color: #555b69;
    font-size: 16px;
}

.content__text {
    color: #2b3140;
    line-height: 1.62;
    font-size: 16px;
}

.content__text a {
    color: var(--color-main);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px dashed rgba(32, 3, 228, 0.34);
}

.buttons {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.application .btn.btn_transparent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    background: #f2f5fb;
    color: #ffffff;
    transition: transform .2s ease;
}

.application .btn.btn_transparent:hover {
    transform: translateY(-2px) scale(1.02);
}

.application .btn.btn_transparent.telegram {
    background: #3390ec;
    border-color: #3390ec;
    color: #ffffff;
}

.application .btn.btn_transparent.telegram:hover {
    transform: translateY(-2px) scale(1.02);
    background: #3390ec !important;
    border-color: #3390ec !important;
    color: #ffffff !important;
}

.application .btn.btn_transparent.max {
    background: radial-gradient(136% 141% at 100% 100%, #8d28c8 0%, #7c42fa 22%, #007aff 78%, #609ceb 100%);
    border-color: #7c42fa;
    color: #ffffff;
}

.application .btn.btn_transparent.max:hover {
    transform: translateY(-2px) scale(1.02);
    background: radial-gradient(136% 141% at 100% 100%, #8d28c8 0%, #7c42fa 22%, #007aff 78%, #609ceb 100%) !important;
    border-color: #7c42fa !important;
    color: #ffffff !important;
}

.application__right {
    display: grid;
    gap: 9px;
    padding: 18px;
    align-content: start;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(32, 3, 228, 0.12);
}

.application__right-text {
    font-weight: 800;
    color: #1f1f1f;
}

.application__line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.application__field {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f;
}

.application__field input,
.application__field select,
.application__field textarea {
    width: 100%;
    border: 1px solid #d7def0;
    border-radius: 10px;
    font-size: 14px;
    color: #1d1d1d;
    background: #fff;
    padding: 11px 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.application__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1.25 7 6.25l6-5' fill='none' stroke='%23646b78' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 8px;
}

.application__field input:focus,
.application__field select:focus,
.application__field textarea:focus {
    outline: none;
    border-color: rgba(32, 3, 228, 0.5);
    box-shadow: 0 0 0 3px rgba(32, 3, 228, 0.12);
}

.application__field textarea {
    resize: vertical;
    min-height: 48px;
}

.application__field input.is-invalid,
.application__field select.is-invalid,
.application__field textarea.is-invalid,
.sto-form input.is-invalid,
.sto-form select.is-invalid,
.sto-form textarea.is-invalid,
.sto-modal__form input.is-invalid,
.sto-modal__form textarea.is-invalid {
    border-color: #d13a3a;
    box-shadow: 0 0 0 2px rgba(209, 58, 58, 0.14);
}

.application__policy input.is-invalid,
.sto-checkbox input.is-invalid,
.sto-modal__policy input.is-invalid {
    outline: 2px solid rgba(209, 58, 58, 0.45);
    outline-offset: 1px;
}

.sto-form-hint {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #d13a3a;
}

.application__policy {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
    font-size: 12px;
    line-height: 1.45;
    color: #40404a;
}

.sto-policy-link {
    color: var(--color-main);
    text-decoration: underline;
}

.application__submit {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
}

.application__msg {
    min-height: 18px;
}

.sto-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sto-logo-row span {
    padding: 6px 9px;
    background: #eef3ff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #2a2a2a;
}

.sto-form {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.sto-form_wide {
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.sto-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
}

.sto-form input,
.sto-form select,
.sto-form textarea {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    font-size: 14px;
    padding: 12px 14px;
    color: #000;
}

.sto-form textarea {
    min-height: 100px;
}

.sto-form_wide label:last-of-type,
.sto-form_wide .sto-checkbox,
.sto-form_wide .sto-btn,
.sto-form_wide .sto-form-msg {
    grid-column: 1 / -1;
}

.sto-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
}

.sto-form-msg {
    margin: 0;
    color: var(--color-main);
    font-size: 14px;
    min-height: 18px;
}

.sto-cards,
.sto-cases {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sto-section_reliability h2 {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 40px);
    line-height: 1.2;
    color: #333333;
    font-weight: 700;
}

.sto-title-match {
    margin: 0;
    font-size: clamp(30px, 2.5vw, 40px) !important;
    line-height: 1.2 !important;
    color: #333333 !important;
    font-weight: 700 !important;
}

.sto-cards article,
.sto-cases article,
.sto-shipping {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.sto-cards h3,
.sto-cases h3,
.sto-shipping h3 {
    margin: 0 0 8px;
}

.sto-faq {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.sto-faq details {
    border-radius: 10px;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.sto-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    padding-right: 25px;
    position: relative;
}

.sto-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-main);
}

.sto-faq details[open] summary::after {
    content: "−";
}

.sto-faq p {
    margin: 10px 0 0;
}

.sto-final {
    background: linear-gradient(120deg, rgba(32, 3, 228, 0.08), rgba(255, 255, 255, 0.92));
}

.sto-contact-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.sto-contact-grid article {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.sto-contact-grid h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.sto-contact-grid p,
.sto-contact-grid a {
    margin: 0;
    font-size: 16px;
    word-break: break-word;
}

.sto-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

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

@media (max-width: 1200px) {
    .sto-page .wrapper {
        padding-left: clamp(22px, 3vw, 42px);
        padding-right: clamp(22px, 3vw, 42px);
    }

    .sto-grid_hero,
    .sto-grid_final {
        grid-template-columns: 1fr;
    }

    .sto-metrics,
    .sto-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sto-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sto-copy {
        grid-template-columns: 1fr;
    }

    .sto-copy__main-photo img {
        height: 320px;
    }

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

}

@media (max-width: 900px) {
    .sto-page {
        --sto-section-space: 38px;
        --sto-section-gap: 0px;
        --sto-block-space: calc(var(--sto-section-space) * 1.35);
    }

    .sto-hero .wrapper::before,
    .sto-hero .wrapper::after {
        display: none;
    }

    .sto-copy__left,
    .sto-copy__right,
    .sto-copy__icon-row,
    .sto-copy__checks {
        gap: 15px;
    }

    .sto-offer__process {
        grid-template-columns: 1fr 1fr;
    }

    .sto-offer__action {
        grid-template-columns: 1fr;
    }

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

    .sto-calc__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sto-copy__left-bottom,
    .sto-copy__icon-row,
    .sto-copy__checks {
        grid-template-columns: 1fr;
    }

    .sto-copy__icon-box {
        grid-template-columns: 38px 1fr;
    }

    .sto-copy__main-photo img {
        height: 300px;
    }

    .sto-copy__side-photo img,
    .sto-copy__side-video video {
        height: 220px;
    }

    .sto-cards,
    .sto-cases,
    .sto-calc-values,
    .sto-form_wide {
        grid-template-columns: 1fr;
    }

    .sto-brandwall__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
    }

    .application__box,
    .application__line {
        grid-template-columns: 1fr;
    }

    .application__left-person {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

}

@media (max-width: 640px) {
    .sto-page .wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sto-page {
        padding-bottom: 0;
    }

    .sto-title {
        font-size: 30px;
    }

    .sto-subtitle {
        font-size: 16px;
    }

    .sto-page {
        --sto-section-space: 30px;
        --sto-section-gap: 0px;
        --sto-block-space: calc(var(--sto-section-space) * 1.2);
    }

    .sto-hero-media img {
        width: min(260px, 72vw);
    }

    .sto-hero::after {
        inset: 0;
        background:
            radial-gradient(circle at 82% 20%, rgba(0, 198, 255, 0.12) 0%, rgba(0, 198, 255, 0) 34%),
            linear-gradient(100deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.38) 58%, rgba(255, 255, 255, 0.24) 100%);
    }

    .sto-list-check li,
    .sto-text-wide {
        font-size: 16px;
    }

    .sto-offer__lead {
        font-size: 16px;
    }

    .sto-offer__title {
        font-size: 32px;
        line-height: 1.14;
    }

    .sto-offer__process {
        grid-template-columns: 1fr;
    }

    .sto-copy__title {
        font-size: 30px;
    }

    .sto-copy__text,
    .sto-copy__call span {
        font-size: 16px;
        line-height: 1.55;
    }

    .sto-copy__icon-box h3 {
        font-size: 18px;
    }

    .sto-copy__call strong {
        font-size: 18px;
    }

    .sto-copy__call {
        width: 100%;
    }

    .sto-copy__main-photo img {
        height: 250px;
    }

    .sto-copy__side-photo img,
    .sto-copy__side-video video {
        height: 180px;
    }

    .sto-metrics,
    .sto-media-grid,
    .sto-contact-grid {
        grid-template-columns: 1fr;
    }

    .sto-brandwall__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .person__img {
        width: 180px;
        height: 180px;
    }

    .sto-media-grid img,
    .sto-media-grid video {
        height: 210px;
    }
}
