@font-face {
    font-family: TildaSans;
    src: url("https://static.tildacdn.net/fonts/tildasans/TildaSans-Regular.woff2") format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: TildaSans;
    src: url("https://static.tildacdn.net/fonts/tildasans/TildaSans-Semibold.woff2") format("woff2");
    font-weight: 600;
}

:root {
    --bg: #080b12;
    --panel: #101623;
    --panel-2: #192132;
    --text: #ffffff;
    --muted: #c7cede;
    --blue: #0058ff;
    --soft: #f4f5fa;
    --line: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: TildaSans, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

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

.section-dark {}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 126px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-logo {
    position: absolute;
    top: 18px;
    left: max(38px, calc((100vw - 1424px) / 2));
    z-index: 2;
    display: block;
    width: 235px;
    height: 58px;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero .container {
    width: min(1424px, calc(100% - 64px));
}

.hero-live {
    position: absolute;
    top: 35px;
    left: 71%;
    z-index: 3;
    width: min(630px, 46vw);
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transform: translateX(-50%);
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.hero-live-track {
    display: flex;
    width: max-content;
    gap: 42px;
    white-space: nowrap;
    animation: heroLiveMarquee 16s linear infinite;
}

.hero-live span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-live i {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #20c84a;
    animation: liveDotPulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 0 rgba(32, 200, 74, 0);
}

@keyframes heroLiveMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.333%);
    }
}

@keyframes liveDotPulse {
    0%,
    100% {
        opacity: 0.45;
        box-shadow: 0 0 0 rgba(32, 200, 74, 0);
        transform: scale(0.88);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 14px rgba(32, 200, 74, 0.85);
        transform: scale(1.12);
    }
}

.hero-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: 0 0 520px;
    padding-top: 72px;
}

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

h1 {
    max-width: 520px;
    font-size: clamp(34px, 2.45vw, 46px);
    line-height: 1.04;
    font-weight: 600;
}

h1 span {
    color: #20c84a;
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.hero .lead {
    max-width: 560px;
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

.hero .lead span {
    color: #20c84a;
}

.cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 16px 38px rgba(0, 88, 255, 0.32);
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero .cta {
    width: 386px;
    min-height: 48px;
    margin-top: 32px;
    background: #20c84a;
    font-size: 21px;
    font-weight: 400;
    box-shadow: none;
}

.cta:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 18px 42px rgba(32, 200, 74, 0.28);
}

.cta::before,
.channel-cta::before,
.compound-cta::before,
.final-cta-button::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -70%;
    width: 48%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: skewX(-18deg);
    transition: left 0.65s ease;
    pointer-events: none;
}

.cta:hover::before,
.channel-cta:hover::before,
.compound-cta:hover::before,
.final-cta-button:hover::before {
    left: 120%;
}

.cta span,
.channel-cta span,
.compound-cta span,
.final-cta-button span {
    position: relative;
    z-index: 1;
    transition: transform 0.28s ease;
}

.cta:hover span,
.channel-cta:hover span,
.compound-cta:hover span,
.final-cta-button:hover span {
    transform: translateX(3px) rotate(-3deg);
}

.tg-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
}

.micro {
    color: var(--muted);
    font-size: 12px;
}

.hero .micro {
    width: 472px;
    text-align: center;
    color: #fff;
}

.hero-stores {
    margin-top: 18px;
}

.hero-stores p {
    color: #c6c6c6;
    font-size: 13px;
    line-height: 1.22;
}

.hero-stores .store-buttons {
    margin-top: 18px;
    justify-content: flex-start;
}

.hero-stores .store-buttons img {
    height: 38px;
}

.hero-mobile-actions {
    display: none;
}

.hero-visual {
    position: relative;
    flex: 1 1 760px;
    min-height: 520px;
    margin-top: -22px;
    pointer-events: none;
}

.hero-visual img {
    width: min(540px, 58vw);
    max-width: none;
    margin: 0 auto;
}

.stats-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: -64px;
}

.stats-row div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 0;
    border-radius: 0;
    background: rgba(14, 17, 26, 0.9);
}

.stats-row div {
    flex: 1 1 0;
    flex-direction: row;
    align-items: center;
    min-height: 80px;
    padding: 8px 18px;
}

.stats-row strong {
    color: #20c84a;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.stats-row div:nth-child(n+3) strong {
    font-size: 26px;
}

.stats-row span {
    max-width: 190px;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
}

.compound-section {
    padding: 82px 0 68px;
    color: #fff;
}

.compound-wrap {
    display: flex;
    width: min(1100px, calc(100% - 60px));
    align-items: center;
    justify-content: space-between;
    gap: 76px;
}

.compound-copy {
    flex: 1 1 540px;
}

.compound-copy h2 {
    max-width: 690px;
    color: #fff;
    font-size: 38px;
    line-height: 1.12;
}

.compound-copy h2 span {
    color: #20c84a;
}

.compound-copy p {
    max-width: 520px;
    color: #fff;
}

.compound-lead {
    margin-top: 42px;
    font-size: 24px;
    line-height: 1.22;
}

.compound-copy p:not(.compound-lead) {
    margin-top: 23px;
    font-size: 18px;
    line-height: 1.25;
}

.compound-cta {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(100%, 480px);
    min-height: 45px;
    margin-top: 38px;
    padding: 0 22px;
    border-radius: 999px;
    background: #20c84a;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.compound-cta:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 18px 42px rgba(32, 200, 74, 0.28);
}

.compound-cta img {
    width: 29px;
    height: 29px;
}

.compound-cta-mobile {
    display: none;
}

.compound-calculator {
    flex: 0 0 500px;
    padding: 18px 18px 20px;
    border-radius: 3px;
    background: #343e4a;
    color: #fff;
}

.compound-fields {
    display: flex;
    gap: 28px;
}

.compound-field {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
}

.compound-field>span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.compound-field strong {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.compound-field input {
    width: 100%;
    height: 6px;
    margin: 20px 0 0;
    border-radius: 999px;
    background: #e5e8ef;
    accent-color: #20c84a;
}

.compound-field small {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.compound-result {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 28px;
}

.compound-result strong,
.compound-result output {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.compound-calculator p {
    max-width: 345px;
    margin: 16px auto 0;
    color: #fff;
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
}

.trade-reasons {
    padding: 45px 0 42px;
    background: #f5f7fb;
    color: #05080d;
}

.trade-reasons-wrap {
    width: min(1100px, calc(100% - 44px));
}

.trade-reasons h2 {
    margin-bottom: 35px;
    color: #05080d;
    text-align: center;
    font-size: 33px;
    line-height: 1.16;
}

.trade-reasons h2 span {
    color: #20c84a;
}

.trade-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 48px;
    max-width: 880px;
    margin: 0 auto;
}

.reason-pair {
    display: contents;
}

.reason-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 43px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    background: #fff;
    box-shadow: 0px 4px 4px 0px #FE0708;
}

.reason-card span {
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #eef1f5;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.reason-card p {
    color: #05080d;
    font-size: 16px;
    line-height: 1.18;
}

.reason-bad {
    color: #ff2738;
}

.reason-good {
    box-shadow: 0px 4px 4px 0px #077127;
}

.reason-slider-nav {
    display: none;
}

.store-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-buttons img {
    height: 48px;
}

.results-block {
    padding: 40px 0 22px;
}


/* 
.results-panel {
  display: flex;
  width: min(1464px, calc(100% - 80px));
  justify-content: space-between;
  gap: 58px;
  min-height: 840px;
  padding: 132px 52px 72px 74px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(100deg, rgba(5, 7, 11, 0.97) 0%, rgba(7, 10, 16, 0.94) 45%, rgba(48, 62, 74, 0.94) 100%),
    url("https://static.tildacdn.net/tild6561-3832-4430-b366-336435633236/bckg-2.svg") center/cover no-repeat;
  color: #fff;
} */

.results-panel {
    display: flex;
    width: min(1464px, calc(100% - 80px));
    justify-content: space-between;
    gap: 20px;
    min-height: 840px;
    padding: 132px 20px 72px 20px;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
}

.fon0 {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url("./assets/fon-1.webp") center/cover no-repeat;
    color: #fff;
}

.fon1 {
    padding-bottom: 30px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url("./assets/fon-1.webp") center/cover no-repeat;
    color: #fff;
}

.g2 {
    min-height: auto!important;
    padding-top: 30px;
    align-items: flex-end!important;
}

.fon2 {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url("./assets//3-pc.webp") center/cover no-repeat;
    color: #fff;
}

.results-copy {
    display: flex;
    flex: 0 0 590px;
    flex-direction: column;
    align-items: flex-start;
}

.results-copy h2 {
    max-width: 610px;
    font-size: 50px;
    line-height: 1.25;
}

.results-copy p {
    max-width: 590px;
    margin-top: 26px;
    color: #fff;
    font-size: 20px;
    line-height: 1.38;
}

.channel-copy>h2 {
    display: none;
}

.channel-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.channel-content h2 {
    max-width: 620px;
    color: #fff;
    font-size: 46px;
    line-height: 1.15;
}

.channel-content h2 span {
    display: block;
    color: #20c84a;
}

.channel-content p {
    max-width: 590px;
    margin-top: 26px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 8px;
}

.channel-list div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.channel-list img {
    display: block;
    width: 100% !important;
    min-width: 34px;
    max-width: 44px;
    height: 100% !important;
    max-height: 44px;
    object-fit: contain;
}

.channel-list span {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.channel-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 438px;
    min-height: 50px;
    margin-top: 42px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 5px 20px;
    border-radius: 999px;
    background: #20c84a;
    color: #fff;
    box-shadow: none;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    line-height: 1.1;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.channel-cta:hover {
    background: #19b83f;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(32, 200, 74, 0.28);
}

.channel-cta span {
    margin-left: auto;
    font-size: 25px;
    line-height: 1;
}

.results-slider-wrap {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.results-slider {
    width: 660px;
    max-width: 100%;
    overflow: hidden;
}

.results-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.results-track::-webkit-scrollbar {
    display: none;
}

.results-track img {
    flex: 0 0 260px;
    width: 260px;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.results-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: 2px solid #20c84a;
    padding: 0px 10px;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    /* cursor: pointer; */
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.results-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-right: 10px;
}

.results-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.results-dots button.active {
    background: #20c84a;
}

.results-mobile-cta {
    display: none;
}

.api-flow1,
.api-flow2 {
    overflow: hidden;
}

.api-flow-wrap {
    display: flex;
    width: min(1464px, calc(100% - 80px));
    min-height: 720px;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    color: #fff;
}

.api-phone {
    display: flex;
    flex: 1 1 560px;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.api-phone-frame {
    width: min(430px, 100%);
    height: 560px;
    object-fit: cover;
    object-position: top center;
}

.api-copy {
    padding-bottom: 30px;
    display: flex;
    flex: 0 0 520px;
    flex-direction: column;
    align-items: flex-start;
}

.api-flow-wrap {
    display: flex;
    gap: 70px;
}

.api-phone,
.api-copy {
    flex: 1 1 calc(50% - 35px);
}

.api-copy h2 {
    max-width: 520px;
    font-size: 32px;
    line-height: 1.23;
}

.api-copy h2 span {
    color: #20c84a;
}

.api-logos {
    display: flex;
    gap: 18px;
    margin-top: 14px;
}

.api-logos span {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.api-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.api-steps {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.api-steps article {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(57, 67, 82, 0.88);
}

.api-steps h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.api-steps h3 span {
    color: #20c84a;
}

.api-steps p {
    margin-top: 9px;
    color: #fff;
    font-size: 20px;
    line-height: 1.24;
}

.testimonials-section {
    padding: 54px 0 34px;
    background: #f6f7fb;
    color: #1e2b38;
}

.testimonials-wrap {
    width: min(1060px, calc(100% - 48px));
}

.testimonials-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.testimonials-head h2 {
    color: #20c84a;
    font-size: 32px;
    line-height: 1.15;
}

.testimonial-controls,
.testimonial-mobile-nav {
    display: flex;
    align-items: center;
    gap: 9px;
}

.testimonial-card-controls {
    justify-content: flex-end;
    margin: 24px 18px 18px 0;
}

.testimonial-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 2px solid #20c84a;
    border-radius: 3px;
    background: transparent;
    color: #5f5f5f;
    cursor: pointer;
    font: inherit;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 34px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-video {
    position: relative;
    flex: 0 0 calc((100% - 102px) / 4);
    height: 374px;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
    scroll-snap-align: start;
}

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

.testimonial-card {
    flex: 0 0 calc((100% - 68px) / 3);
    min-height: 255px;
    padding: 22px 19px;
    border-radius: 8px;
    background: #323c48;
    color: #fff;
    scroll-snap-align: start;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.testimonial-person strong {
    display: block;
    color: #20c84a;
    font-size: 18px;
    line-height: 1.1;
}

.testimonial-person span:not(.testimonial-avatar) {
    display: block;
    margin-top: 2px;
    color: #20c84a;
    font-size: 18px;
    letter-spacing: 1px;
}

.testimonial-card p {
    color: #fff;
    font-size: 18px;
    line-height: 1.28;
}

.testimonial-mobile-nav {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: auto;
    padding-right: 10px;
}

.testimonial-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(50, 60, 72, 0.38);
    cursor: pointer;
}

.testimonial-dots button.active {
    background: #20c84a;
}

.final-cta {
    padding: 25px 0 23px;
    background: #f7f7f7;
}

.final-cta-card {
    width: min(800px, calc(100% - 64px));
    margin: 0 auto;
    padding: 26px 54px 31px;
    border-radius: 10px;
    background: #323c48;
    color: #fff;
    text-align: center;
}

.final-cta-card h2 {
    margin: 0;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.18;
}

.final-cta-card h2 span {
    color: #22c948;
}

.final-cta-lead {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 25px;
    line-height: 1.24;
}

.final-cta-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 38px;
    margin-top: 23px;
    padding: 0 22px;
    border-radius: 999px;
    background: #24c947;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: 0 18px 42px rgba(32, 200, 74, 0.28);
}

.final-cta-button span {
    font-size: 18px;
    line-height: 1;
}

.final-cta-note {
    max-width: 680px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.25;
}

.site-footer {
    padding: 33px 0 24px;
    background: #323c48;
    color: #fff;
}

.site-footer-inner {
    padding-bottom: 30px;
    width: min(1070px, calc(100% - 64px));
}

.site-footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
}

.site-footer-logo {
    display: block;
    width: 136px;
    flex: 1 1 auto;
}

.site-footer-logo img {
    display: block;
    width: 136px;
    height: auto;
}

.site-footer-col {
    display: flex;
    min-width: 118px;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 16px;
}

.site-footer-col h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.site-footer-col a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.2;
}

.site-footer-disclaimer {
    max-width: 985px;
    margin: 45px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.22;
    text-align: center;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 90px 0 0;
    }
    .hero .container {
        width: min(100% - 44px, 720px);
    }
    .hero-wrap {
        flex-direction: column;
        align-items: center;
    }
    .hero-wrap {
        gap: 34px;
    }
    .hero-copy {
        align-items: center;
        text-align: center;
    }
    .hero-copy {
        order: 2;
        gap: 0;
        flex: 0 0 auto;
        padding-top: 0;
    }
    .hero-copy .hero-stores {
        display: none;
    }
    .hero-logo {
        top: 18px;
        left: 50%;
        width: 190px;
        height: 44px;
        transform: translateX(-50%);
    }
    .hero-live {
        top: 71px;
        width: 100%;
        font-size: 16px;
        line-height: 1.08;
        left: 50%;
    }
    h1 {
        max-width: 320px;
        font-size: clamp(22px, 7vw, 31px);
        line-height: 1.02;
    }
    .hero .lead {
        max-width: 330px;
        margin-top: 12px;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.18;
    }
    .hero-visual {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        min-height: 0;
        margin-top: -38px;
    }
    .hero-visual img {
        width: min(377px, 96vw);
        margin-bottom: -70px;
        z-index: -1;
        position: relative;
    }
    .hero .cta {
        width: min(100%, 330px);
        min-height: 48px;
        margin-top: 16px;
        font-size: 18px;
    }
    .stats-row {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        width: min(100% - 44px, 444px);
        margin-top: 16px;
    }
    .stats-row div {
        flex: 0 1 calc(50% - 7px);
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        min-width: 0;
        min-height: 88px;
        padding: 8px 10px;
        text-align: center;
        border-color: transparent;
        background: rgba(14, 17, 26, 0.92);
    }
    .stats-row strong,
    .stats-row div:nth-child(n+3) strong {
        font-size: clamp(31px, 8.2vw, 43px);
        line-height: 1;
    }
    .stats-row div:nth-child(n+3) strong {
        font-size: clamp(26px, 7vw, 32px);
    }
    .stats-row span {
        max-width: 170px;
        font-size: clamp(17px, 4vw, 19px);
        line-height: 1.22;
    }
    .hero-mobile-actions {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 14px;
        padding-bottom: 0;
        text-align: center;
    }
    .hero-mobile-actions .cta {
        display: none;
    }
    .hero-mobile-actions .micro {
        width: min(100%, 444px);
        margin-top: 18px;
        color: #fff;
        font-size: clamp(13px, 3.2vw, 15px);
    }
    .hero-mobile-actions .hero-stores {
        margin-top: 0;
    }
    .hero-mobile-actions .hero-stores p {
        text-align: left;
        font-size: 15px;
    }
    .hero-mobile-actions .store-buttons {
        justify-content: center;
        gap: 12px;
    }
    .hero-mobile-actions .store-buttons img {
        height: 42px;
    }
    .compound-section {
        padding: 26px 0 48px;
    }
    .compound-wrap {
        width: min(100% - 12px, 430px);
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .compound-copy {
        flex: 0 0 auto;
        width: 100%;
    }
    .compound-copy h2 {
        max-width: 355px;
        margin: 0 auto;
        font-size: 25px;
        line-height: 1.28;
    }
    .compound-copy p {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .compound-lead {
        margin-top: 14px;
        font-size: 21px;
        line-height: 1.16;
    }
    .compound-copy p:not(.compound-lead) {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.14;
    }
    .compound-copy .compound-cta {
        display: none;
    }
    .compound-calculator {
        width: 100%;
        flex-basis: auto;
        order: 2;
        padding: 13px 14px 24px;
        border-radius: 4px;
        text-align: left;
    }
    .compound-fields {
        flex-direction: column;
        gap: 18px;
    }
    .compound-field>span {
        font-size: 15px;
    }
    .compound-field strong {
        margin-top: 8px;
        font-size: 22px;
    }
    .compound-field input {
        margin-top: 16px;
    }
    .compound-result {
        margin-top: 27px;
    }
    .compound-result strong,
    .compound-result output {
        font-size: 25px;
    }
    .compound-calculator p {
        max-width: 320px;
        font-size: 10px;
    }
    .compound-cta-mobile {
        display: flex;
        order: 3;
        min-height: 70px;
        margin: 8px auto 0;
        padding: 0 22px;
        border-radius: 8px;
        font-size: 23px;
        line-height: 1.08;
    }
    .compound-cta img {
        width: 46px;
        height: 46px;
    }
    .trade-reasons {
        padding: 25px 0 28px;
    }
    .trade-reasons-wrap {
        width: min(100% - 8px, 420px);
    }
    .trade-reasons h2 {
        max-width: 318px;
        margin: 0 auto 20px;
        font-size: 22px;
        line-height: 1.22;
    }
    .trade-reasons-grid {
        display: flex;
        gap: 18px;
        max-width: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .trade-reasons-grid::-webkit-scrollbar {
        display: none;
    }
    .reason-pair {
        display: flex;
        flex: 0 0 100%;
        flex-direction: column;
        gap: 12px;
        scroll-snap-align: start;
        margin-bottom: 15px;
    }
    .reason-card {
        justify-content: flex-start;
        min-height: 52px;
        padding: 7px 16px;
        gap: 12px;
        text-align: center;
    }
    .reason-card span {
        flex-basis: 21px;
    }
    .reason-card p {
        flex: 1 1 auto;
        font-size: 18px;
        line-height: 1.25;
    }
    .reason-slider-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(236px, 100%);
        margin: 18px auto 0;
    }
    .reason-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        border: 2px solid #20c84a;
        border-radius: 4px;
        background: transparent;
        color: #1b2733;
        cursor: pointer;
        font: inherit;
        font-size: 18px;
        line-height: 1;
    }
    .reason-dots {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .reason-dots button {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #aeb4bc;
        cursor: pointer;
    }
    .reason-dots button.active {
        background: #20c84a;
    }
    .results-block {
        padding: 14px 0 30px;
    }
    .fon0 {
        padding-bottom: 0px;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background: url("./assets/fon-2.webp") center/cover no-repeat;
        color: #fff;
    }
    .fon1 {
        padding-bottom: 30px;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background: url("./assets/fon-2.webp") center/cover no-repeat;
        color: #fff;
    }
    .fon2 {
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background: url("./assets/3-phone.webp") center/cover no-repeat;
        color: #fff;
    }
    .results-panel.container {
        width: 100%;
        max-width: none;
        min-height: 0;
        margin: 0 auto;
        padding: 20px 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        border-radius: 6px;
    }
    .results-copy {
        flex: 0 0 auto;
        align-items: center;
        width: min(100% - 44px, 444px);
        text-align: center;
    }
    .results-copy h2 {
        max-width: 390px;
        font-size: clamp(36px, 10.2vw, 48px);
        line-height: 1.16;
    }
    .results-copy p {
        max-width: 390px;
        margin-top: 34px;
        font-size: clamp(18px, 4.65vw, 21px);
        line-height: 1.35;
    }
    .channel-content {
        align-items: flex-start;
        text-align: left;
    }
    .channel-content h2 {
        max-width: 390px;
        text-align: center;
        font-size: 28px;
        line-height: 1.14;
    }
    .channel-content h2 span {
        display: inline;
    }
    .channel-content p {
        max-width: 390px;
        margin-top: 26px;
        font-size: 18px;
        line-height: 1.14;
    }
    .channel-list {
        gap: 18px;
        margin-top: 10px;
    }
    .channel-list div {
        gap: 12px;
    }
    .channel-list img {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }
    .channel-list span {
        font-size: 18px;
        line-height: 1.2;
    }
    .channel-cta {
        width: min(100%, 438px);
        min-height: 50px;
        margin-top: 36px;
        padding: 0 20px;
        text-align: center;
        font-size: clamp(17px, 4.8vw, 22px);
        white-space: normal;
    }
    .results-slider-wrap {
        width: 100%;
        overflow: hidden;
    }
    .results-slider {
        width: 100%;
        overflow: visible;
    }
    .results-track {
        --result-slide-width: 240px;
        gap: 26px;
        padding-left: calc((100vw - var(--result-slide-width)) / 2);
        padding-right: calc((100vw - var(--result-slide-width)) / 2);
    }
    .results-track img {
        flex: 0 0 var(--result-slide-width);
        width: var(--result-slide-width);
        height: calc(var(--result-slide-width) * 2);
    }
    .results-controls {
        width: min(100% - 92px, 360px);
        margin: 28px auto 0;
    }
    .results-arrow {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .results-dots {
        gap: 10px;
        padding-right: 0;
    }
    .results-dots button {
        width: 8px;
        height: 8px;
    }
    .results-mobile-cta {
        display: flex;
        width: min(calc(100% - 44px), 444px);
        min-height: 70px;
        margin: 32px auto 0;
        font-size: clamp(16px, 4.3vw, 20px);
    }
    .results-block>.results-mobile-cta {
        display: none;
    }
    .results-controls {
        justify-content: center;
    }
    .results-dots {
        margin-left: 0px;
    }
    .api-flow1,
    .api-flow2 {
        padding: 0 0 12px;
    }
    .api-flow-wrap.container {
        width: min(100% - 16px, 492px);
        min-height: 0;
        flex-direction: column;
        gap: 14px;
        padding: 18px 6px 8px;
        border-radius: 0 0 8px 8px;
    }
    .api-copy {
        display: contents;
    }
    .api-copy h2 {
        width: 100%;
        order: 1;
        max-width: 420px;
        text-align: center;
        font-size: clamp(22px, 5vw, 26px);
        line-height: 1.18;
    }
    .api-logos {
        order: 2;
        justify-content: center;
        gap: 26px;
        margin-top: 0;
    }
    .api-logos span {
        width: 40px;
        height: 40px;
    }
    .api-phone {
        order: 3;
        width: 100%;
        flex: 0 0 auto;
        min-height: 280px;
    }
    .g3 {
        width: 95%!important;
        margin-bottom: -20px;
    }
    .api-phone-frame {
        width: 80%;
        height: 100%;
    }
    .api-steps {
        order: 4;
        gap: 8px;
        margin-top: 6px;
    }
    .api-steps article {
        padding: 14px 12px;
        border-radius: 7px;
    }
    .api-steps h3 {
        font-size: 20px;
    }
    .api-steps p {
        margin-top: 7px;
        font-size: 20px;
        line-height: 1.25;
    }
    .testimonials-section {
        padding: 15px 0 28px;
    }
    .testimonials-wrap {
        width: min(100% - 16px, 430px);
    }
    .testimonials-head {
        margin-bottom: 12px;
    }
    .testimonials-head h2 {
        font-size: 24px;
        line-height: 1.2;
        text-align: center;
        width: 100%;
    }
    .testimonial-video-controls,
    .testimonial-card-controls {
        display: none;
    }
    .testimonial-track {
        gap: 18px;
    }
    .testimonial-video {
        flex-basis: 100%;
        height: 423px;
        border-radius: 3px;
    }
    .testimonial-card {
        flex-basis: 100%;
        min-height: 222px;
        padding: 18px 15px;
    }
    .testimonial-card p {
        font-size: 18px;
        line-height: 1.22;
    }
    .testimonial-person {
        margin-bottom: 12px;
    }
    .testimonial-person strong,
    .testimonial-person span:not(.testimonial-avatar) {
        font-size: 18px;
    }
    .testimonial-avatar {
        flex-basis: 27px;
        width: 37px;
        height: 37px;
        font-size: 13px;
    }
    .testimonial-mobile-nav {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    .testimonial-arrow {
        width: 34px;
        height: 34px;
        border-width: 3px;
        border-radius: 4px;
        font-size: 18px;
    }
    .testimonial-dots {
        gap: 10px;
        margin-left: 0;
        padding-right: 0;
    }
    .testimonial-dots button {
        width: 8px;
        height: 8px;
    }
    .testimonial-card-slider {
        margin-top: 27px;
    }
    .t1 {
        order: 0;
    }
    .t3 {
        order: 1;
    }
    .t2 {
        order: 2;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 44px, 1200px);
    }
    .hero {
        padding-top: 135px;
    }
    .lead {
        font-size: 16px;
    }
    .cta {
        min-height: 55px;
        padding: 0 18px;
        font-size: 16px;
    }
    .store-buttons {
        flex-direction: row;
        align-items: center;
    }
    .final-cta {
        padding: 27px 0 56px;
        background: #f4f6fb;
    }
    .final-cta-card {
        width: min(100% - 20px, 392px);
        padding: 25px 8px 27px;
        border-radius: 8px;
    }
    .final-cta-card h2 {
        max-width: 300px;
        margin: 0 auto;
        font-size: 26px;
        line-height: 1.32;
    }
    .final-cta-lead {
        max-width: 340px;
        margin-top: 17px;
        font-size: 20px;
        line-height: 1.28;
    }
    .final-cta-button {
        width: min(100% - 16px, 374px);
        min-height: 42px;
        margin-top: 21px;
        padding: 0 14px;
        font-size: 16px;
        font-weight: 600;
    }
    .final-cta-button span {
        font-size: 24px;
    }
    .final-cta-note {
        max-width: 335px;
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.24;
    }
    .site-footer {
        padding: 39px 0 64px;
    }
    .site-footer-inner {
        padding-bottom: 60px;
        width: min(100% - 26px, 420px);
    }
    .site-footer-top {
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px 46px;
        text-align: center;
    }
    .site-footer-logo {
        width: 264px;
        flex: 0 0 100%;
    }
    .site-footer-logo img {
        width: 264px;
        margin: 0 auto;
    }
    .site-footer-col {
        min-width: 0;
        flex: 0 1 calc(50% - 23px);
        align-items: center;
        gap: 16px;
    }
    .site-footer-col h2 {
        font-size: 22px;
    }
    .site-footer-col a {
        font-size: 16px;
    }
    .site-footer-disclaimer {
        margin-top: 35px;
        font-size: 16px;
        line-height: 1.18;
    }
}

@media (max-width: 360px) {
    .hero .container,
    .stats-row,
    .hero-mobile-actions {
        width: min(100% - 28px, 444px);
    }
    .hero-logo {
        left: 14px;
        width: 124px;
    }
    .stats-row {
        gap: 10px;
    }
    .stats-row div {
        flex-basis: calc(50% - 5px);
        min-height: 118px;
    }
    .hero-mobile-actions .store-buttons img {
        height: 36px;
    }
}

@media (min-width: 1921px) {
    .hero {
        min-height: min(900px, 100vh);
    }
    .hero .container {
        width: min(1424px, calc(100% - 120px));
    }
}

.testimonial-video {
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

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

.testimonial-video video {
    object-fit: cover;
}