:root {
    --brand-blue: #5887ff;
    --brand-dark: #1c2640;
    --brand-green: #cbe8ec;
    --brand-gray: #52606d;
    --brand-bg: #f1f3f7;
    --brand-purple: #dfd2f5;
    --white: #ffffff;
    --black: #000000;
    --header-height: 89px;
    --container: 1280px;
    --container-padding: 40px;
    --radius-lg: 40px;
    --radius-md: 24px;
    --shadow-soft: 0 7px 29px rgba(100, 100, 111, 0.20);
    --shadow-badge: 0 8px 24px rgba(147, 189, 230, 0.20);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--brand-bg);
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

button,
summary {
    cursor: pointer;
}

:target {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.page {
    min-height: 100vh;
    background: var(--brand-bg);
    overflow-x: hidden;
}

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
	height: 49px;
    font-weight: 400;
    line-height: 1.2;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--brand-blue);
}

.btn-primary-2 {
    color: var(--white);
    background: var(--brand-blue);
	margin-top: 54%;
	height: 49px;
}

.btn-primary:hover {
    background: #3f70ed;
}

.btn-outline {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(88, 135, 255, 0.08);
}

.btn-white-outline {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-inline: var(--container-padding);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(28, 38, 64, 0.08);
}

.logo-link {
    flex: 0 0 auto;
	display: inline-flex;
	height: 45px;
	padding-top: 5px;
}

.logo-img {
    width: auto;
    height: 40px;
}

.logo-img-2 {
    width: auto;
    height: 28px;
	padding-left: 5px;
}

.desktop-nav,
.footer-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav a,
.footer-nav a,
.mobile-nav a:not(.btn) {
    color: var(--brand-gray);
    padding: 4px 10px;
    font-size: 14px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.footer-nav a:hover,
.mobile-nav a:not(.btn):hover {
    color: var(--brand-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.site-header .btn {
    min-height: 45px;
    padding: 13px 28px;
    font-size: 14px;
}


.nav-toggle {
    display: none;
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 12px;
    color: var(--brand-gray);
}

.burger span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
}

.nav-toggle:checked ~ .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .burger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked ~ .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Page sections */
.main {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-bottom: 80px;
}

.section-first {
    padding-top: var(--header-height);
}

h1,
h2,
h3 {
    margin: 0;
}

h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.2;
}

p {
    color: var(--brand-gray);
    line-height: 1.2;
}

li {
    color: var(--brand-gray);
    line-height: 1.2;
}

/* Hero */
.hero .container {
    padding-top: 56px;
}

.hero-grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 min(40%, 480px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 16px;
}

.hero-content h1 {
    font-size: clamp(32px, 3.2vw, 42px);
    letter-spacing: 0;
}

.hero-content h1 span {
    color: var(--brand-blue);
}

.hero-content p {
    max-width: 360px;
    font-size: clamp(16px, 1.5vw, 18px);
	padding-top: 27%;
}

.hero-mobile-btn {
    display: none;
    align-self: flex-start;
}

.hero-dashboard {
    position: relative;
    flex: 1 1 auto;
    min-height: 380px;
}

.dashboard-img,
.cta-dashboard {
    position: relative;
    z-index: 1;
    border-radius: 14px;
}

.hero-desktop-action {
    position: absolute;
    z-index: 5;
    top: 58%;
    right: 0;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
}

.dashboard-img {
    width: min(100%, 568px);
}

.crypto-badges-mobile {
    display: none;
}

.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 20px;
    border-radius: 999px;
    color: var(--brand-gray);
    background: var(--white);
    box-shadow: var(--shadow-badge);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.crypto-badge i {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
}

.crypto-badges-desktop .crypto-badge {
    position: absolute;
    z-index: 4;
}

.crypto-badge-btc { left: -16%; top: 55%; }
.crypto-badge-pol { left: -3%; top: 67%; }
.crypto-badge-usdc { left: 33%; top: 0%; }
.crypto-badge-ltc { left: 72%; top: 35%; }
.crypto-badge-eth { right: 1%; top: 58%; }
.crypto-badge-sol { right: 0; top: 5%; }

.crypto-badge-btc i,
.btc { background: #f7931a; }
.crypto-badge-pol i,
.pol { background: #8247e5; }
.crypto-badge-usdc i,
.usdc { background: #0b53bf; }
.crypto-badge-ltc i,
.ltc { background: #345d9d; }
.crypto-badge-eth i,
.eth { color: #3ab83a; background: rgba(58, 184, 58, 0.10); }
.crypto-badge-sol i,
.sol { background: #000000; }

/* Features */
.features-panel {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 80px;
    border-radius: var(--radius-lg);
    background:
        url("/img/features-bg.png") -8% 134% / 35% auto no-repeat, var(--brand-purple)
}

.features-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 270px;
}

.features-copy h2,
.reliable-card h2,
.steps-inner h2,
.contact-panel h2,
.faq-inner h2 {
    font-size: clamp(28px, 3vw, 36px);
}

.features-copy p,
.reliable-card p,
.cta-copy p {
    font-size: clamp(16px, 1.5vw, 18px);
}

.feature-cards {
    width: min(100%, 624px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card-1 {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 152px;
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-dark);
	margin-left: 120px;
}

.feature-card-2 {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 152px;
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-dark);
	margin-right: 120px;
}

.feature-card-3 {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 152px;
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--brand-dark);
	margin-left: 120px;
}

.feature-card-1 h3, .feature-card-2 h3, .feature-card-3 h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: clamp(20px, 2vw, 24px);
}

.feature-card-1 p, .feature-card-2 p, .feature-card-3 p {
    max-width: 310px;
    color: var(--brand-bg);
    font-size: 14px;
}

.feature-icon {
    position: relative;
    flex: 0 0 86px;
    width: 97px;
    height: 73px;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.icon-easy::before {
    left: 0;
    top: 5px;
    width: 77px;
    height: 77px;
    background: rgba(88, 135, 255, 0.5);
}

.icon-easy::after {
    right: 0;
    top: 18px;
    width: 51px;
    height: 51px;
    background: var(--brand-green);
}

.icon-deals::before {
    left: 0;
    top: 0;
    width: 82px;
    height: 82px;
    background: rgba(88, 135, 255, 0.5);
    clip-path: polygon(0 0, 100% 0, 45% 50%, 100% 100%, 0 100%);
}

.icon-deals::after {
    right: -10px;
    top: 3px;
    width: 76px;
    height: 76px;
    background: var(--brand-green);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.icon-rates::before {
    left: 3px;
    top: 0;
    width: 73px;
    height: 73px;
    background: rgba(88, 135, 255, 0.5);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.icon-rates::after {
    right: -1px;
    top: 10px;
    width: 73px;
    height: 73px;
    background: var(--brand-green);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Partners */
.partners-row {
    display: flex;
    align-items: center;
    gap: 40px;
	justify-content: space-between;
}

.partners-title {
    flex: 0 0 auto;
    font-size: 18px;
    font-weight: 500;
}

.partners-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    height: 50px;
    padding: 0 30px;
    border-radius: 15px;
    background: var(--white);
}

.partner-card img {
    max-height: 30px;
    width: auto;
}

.partner-text {
    color: #5741d9;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.partner-text-dark {
    color: #312e2e;
}

/* Reliable */
.reliable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.reliable-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 64px;
    border-radius: var(--radius-lg);
    background: var(--brand-green);
}

.reliable-card h2 {
    letter-spacing: 0.72px;
}

.reliable-image-card {
    position: relative;
    min-height: 565px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reliable-image-card > img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.info-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(28, 38, 64, 0.10);
}

.info-bubble p {
    color: var(--brand-gray);
    font-size: 14px;
}

.bubble-left {
    left: 24px;
    top: 34%;
}

.bubble-right {
    right: 24px;
    top: 19%;
}

.bubble-icon {
    position: relative;
    flex: 0 0 auto;
    display: block;
}

.bubble-icon-single {
    width: 30px;
    height: 30px;
}

.bubble-icon-single::before,
.bubble-icon-single::after,
.bubble-icon-double::before,
.bubble-icon-double::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.bubble-icon-single::before {
    inset: 0;
    background: rgba(88, 135, 255, 0.5);
}

.bubble-icon-single::after {
    inset: 5px;
    background: var(--brand-green);
}

.bubble-icon-double {
    width: 38px;
    height: 24px;
}

.bubble-icon-double::before {
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(88, 135, 255, 0.5);
}

.bubble-icon-double::after {
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--brand-green);
}

/* Steps */
.steps-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.steps-inner h2 {
    max-width: 610px;
    text-align: center;
}

.steps-track {
    position: relative;
    width: 100%;
    max-width: 934px;
    height: 26px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.steps-track span:nth-child(1) {
    left: 33.67%;
}

.steps-track span:nth-child(2) {
    left: 66.56%;
}

.steps-track span {
    position: absolute;
    top: 0;
    bottom: 0;

    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.steps-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    min-height: 180px;
    padding: 40px;
    border-radius: var(--radius-md);
    background: var(--white);
}

.step-card h3 {
    margin-bottom: 20px;
    color: var(--brand-blue);
    font-size: 24px;
}

.step-card p {
    font-size: 14px;
}

/* Contact */
.contact-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding: 80px;
    border-radius: var(--radius-lg);
    background:
        url("/img/contact-bg.png") 122% 134% / auto 70% no-repeat,
        var(--brand-dark);
}

.contact-panel h2 {
    color: var(--white);
    text-align: center;
}

.contact-form {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: flex;
    align-items: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--brand-gray);
    background: var(--white);
    font-size: 16px;
    line-height: 1.2;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    min-height: 59px;
    padding: 0 40px;
    border-radius: 999px;
}

.contact-form textarea {
    min-height: 128px;
    resize: vertical;
    padding: 20px 40px;
    border-radius: 30px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(82, 96, 109, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.required-field input {
    padding-left: 16px;
}

.required-mark {
    position: absolute;
    left: 20px;
    top: 55%;
    transform: translateY(-50%);
    color: red;
    z-index: 1;
    pointer-events: none;
}

.required-mark-2 {
    position: absolute;
    left: -10px;
    top: 55%;
    transform: translateY(-50%);
    color: red;
    z-index: 1;
    pointer-events: none;
}

.full-field input {
    flex: 1 1 auto;
}

.form-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-note p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    text-align: center;
}

.privacy-check {
    gap: 10px;
    color: var(--white);
    font-size: 14px;
}

.privacy-check input {
    appearance: none;
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: 6px;
    background: transparent;
}

.privacy-check input:checked {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    box-shadow: inset 0 0 0 4px var(--brand-blue);
}

.privacy-check input:checked::before {
    content: "✓";
    display: block;
    color: var(--white);
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.privacy-check a {
    color: var(--brand-blue);
    text-decoration: underline;
}

.contact-form > .btn {
    align-self: center;
	width: 180px;
}

/* FAQ */
.faq-inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.faq-inner h2 {
    text-align: center;
    letter-spacing: 0.72px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 20px 40px;
    list-style: none;
    color: var(--black);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.2;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-top: 2px solid var(--black);
    border-left: 2px solid var(--black);
    transform: rotate(45deg) translateY(4px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item:not([open]) summary::after {
    transform: rotate(225deg) translateY(-4px);
}

.faq-item[open] summary::after {
    border-color: var(--brand-blue);
}

.faq-answer {
    padding: 0 40px 24px;
}

.faq-answer::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.10);
}

.faq-answer p {
    max-width: 625px;
    font-size: 16px;
}

/* CTA */
.cta-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    padding: 80px 232px 0;
    border-radius: var(--radius-lg);
    background: var(--brand-green);
}

.cta-copy {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 720px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 64px;
    text-align: center;
}

.cta-copy h2 {
    font-size: clamp(28px, 3.4vw, 42px);
}

.cta-copy p {
    max-width: 460px;
}

.cta-dashboard {
    width: min(100%, 632px);
}

/* Footer */
.site-footer {
    width: min(100%, var(--container));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px var(--container-padding);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    width: auto;
    height: 28px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.visa-logo {
    display: inline-flex;
    align-items: center;
    color: #1a4be8;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.04em;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
}

.legal-links a {
    color: var(--brand-blue);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-links a:hover {
    opacity: 0.75;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.10);
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    max-width: 870px;
    font-size: 14px;
}

.copyright {
    white-space: nowrap;
}

@media (max-width: 740px) {
    :root {
        --container-padding: 32px;
    }

    .desktop-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 14px;
        padding: 24px var(--container-padding);
        background: var(--white);
        box-shadow: 0 12px 24px rgba(28, 38, 64, 0.12);
    }

    .nav-toggle:checked ~ .mobile-nav {
        display: flex;
    }

    .mobile-nav .btn {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
    }

    .main {
        gap: 96px;
    }

    .hero-grid,
    .features-panel,
    .partners-row,
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 560px;
        flex-basis: auto;
    }

    .hero-dashboard {
        width: 100%;
    }

    .features-panel,
    .contact-panel {
        padding: 56px;
    }

    .features-copy,
    .feature-cards {
        max-width: none;
        width: 100%;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-track {
        display: none;
    }

    .cta-panel {
        padding-inline: 72px;
    }
}


@media (max-width: 1100px) {
    .site-header .btn {
        min-height: 30px;
        padding: 8px 20px;
        font-size: 12px;
    }

    .mobile-nav {
        align-items: center;
        text-align: center;
    }

    .hero .container {
        padding-top: 40px;
    }

    .hero-grid {
        position: relative;
        gap: 24px;
    }

    .hero-content h1 {
        max-width: 430px;
        font-size: 32px;
    }

    .hero-content p {
        max-width: 330px;
        font-size: 16px;
    }

    .hero-desktop-action {
        top: -86px;
        right: 0;
    }

    .dashboard-img {
        width: min(100%, 568px);
    }

    .crypto-badge-btc { left: 22%; top: 58%; }
    .crypto-badge-pol { left: 10%; top: 46%; }
    .crypto-badge-usdc { left: 40%; top: 2%; }
    .crypto-badge-ltc { left: 70%; top: 28%; }
    .crypto-badge-eth { right: 9%; top: 60%; }
    .crypto-badge-sol { right: 8%; top: 38%; }
}

@media (max-width: 760px) {
    :root {
        --container-padding: 20px;
        --header-height: 64px;
        --radius-lg: 40px;
        --radius-md: 20px;
    }

    body {
        font-size: 14px;
    }

    .site-header {
        height: var(--header-height);
        padding-inline: 12px;
        box-shadow: none;
    }

    .logo-img {
        /* height: 22px; */
    }

    .header-actions {
        display: none;
    }

    .burger {
        width: 28px;
        height: 28px;
        gap: 4px;
        border-radius: 0;
    }

    .burger span {
        width: 18px;
        height: 1.5px;
    }

    .nav-toggle:checked ~ .burger span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
    }

    .nav-toggle:checked ~ .burger span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 45;
        top: var(--header-height);
        left: 0;
        right: 0;
        min-height: 510px;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: start;
        gap: 28px 12px;
        padding: 28px 24px 0;
        background: var(--white);
        box-shadow: none;
    }

    .nav-toggle:checked ~ .mobile-nav {
        display: grid;
    }

    .mobile-nav a:not(.btn) {
        grid-column: 1 / -1;
        justify-self: center;
        padding: 0;
        color: var(--brand-gray);
        font-size: 15px;
        line-height: 1.2;
    }

    .mobile-nav .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 16px;
        margin-top: 18px;
    }

    .main {
        gap: 80px;
        padding-bottom: 36px;
    }

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

    .hero-grid,
    .features-panel,
    .partners-row
     {
        flex-direction: column;
        align-items: flex-start;
    }
	
	.footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
		align-items: center;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-content {
        max-width: none;
        flex-basis: auto;
        gap: 24px;
        padding-top: 0;
    }

    .hero-content h1 {
        /*max-width: 320px;*/
        font-size: 29px;
        line-height: 1.32;
    }

    .hero-content p {
        /*max-width: 280px;*/
        font-size: 17px;
        line-height: 1.25;
		padding-top: 2%;
    }

    .hero-mobile-btn {
        display: inline-flex;
        min-width: 152px;
        min-height: 47px;
        margin-top: 18px;
        padding: 13px 25px;
        font-size: 16px;
		position: relative;
		right: -100%;
		top: -33%;
    }

    .hero-dashboard {
        width: 100%;
        min-height: 276px;
        margin-top: 48px;
		display: flex;
    justify-content: center;
    }

    .dashboard-img {
        width: clamp(230px, 68vw, 568px);
        border-radius: 7px;
        box-shadow: 0 3px 12px rgba(100, 100, 111, 0.16);
    }

    .hero-desktop-action,
    .crypto-badges-desktop {
        display: none;
    }

    .crypto-badges-mobile {
        position: absolute;
        inset: 0;
        z-index: 4;
        display: block;
        pointer-events: none;
    }

    .crypto-badges-mobile .crypto-badge {
        position: absolute;
        min-height: 25px;
        gap: 5px;
        padding: 6px 9px;
        font-size: 8px;
        box-shadow: 0 5px 14px rgba(147, 189, 230, 0.20);
    }

    .crypto-badges-mobile .crypto-badge i {
        width: 14px;
        height: 14px;
        font-size: 8px;
    }

    .crypto-badges-mobile .crypto-badge:nth-child(1) { left: 20%; top: 58%; }
    .crypto-badges-mobile .crypto-badge:nth-child(2) { right: 8%; top: 40%; }
    .crypto-badges-mobile .crypto-badge:nth-child(3) { right: 20%; top: 79%; }
    .crypto-badges-mobile .crypto-badge:nth-child(4) { left: 48%; top: 2%; }
    .crypto-badges-mobile .crypto-badge:nth-child(5) { left: 1%; top: 31%; }
    .crypto-badges-mobile .crypto-badge:nth-child(6) { right: 0; top: 15%; }

    .features-panel {
        gap: 44px;
        padding: 60px 30px;
        background:
            url("/img/features-bg.png") 50% 48% / auto 62% no-repeat,
            var(--brand-purple);
    }

    .features-copy {
        max-width: none;
        gap: 22px;
    }

    .features-copy h2,
    .reliable-card h2,
    .steps-inner h2,
    .contact-panel h2,
    .faq-inner h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .features-copy p,
    .reliable-card p,
    .cta-copy p {
        font-size: 17px;
        line-height: 1.25;
    }

    .feature-cards {
        width: 100%;
        gap: 20px;
    }

    .feature-card {
        min-height: 250px;
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
        padding: 30px;
        border-radius: 22px;
    }

    .feature-card h3 {
        margin-bottom: 22px;
        font-size: 24px;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.15;
    }

    .feature-icon {
        flex-basis: 66px;
        width: 66px;
        height: 66px;
    }

    .icon-easy::before { width: 59px; height: 59px; }
    .icon-easy::after { width: 39px; height: 39px; }
    .icon-deals::before { width: 63px; height: 63px; }
    .icon-deals::after { width: 58px; height: 58px; }
    .icon-rates::before,
    .icon-rates::after { width: 54px; height: 54px; }

    .partners-row {
        gap: 24px;
		align-items: center;
    }

    .partners-title {
        font-size: 16px;
    }

    .partners-list {
        width: 100%;
        gap: 14px;
    }

    .partner-card {
        height: 34px;
	}
}
 
.cookie-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;

    width: 340px;
    padding: 20px;

    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(19, 35, 64, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.cookie-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-popup__text {
    margin: 0 0 20px;

    font-size: 13px;
    line-height: 1.22;
    letter-spacing: 0.02em;
    color: #556170;
}

.cookie-popup__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-popup__button {
    min-width: 118px;
    height: 48px;
    padding: 0 24px;

    font: inherit;
    font-size: 15px;
    color: #5b82f6;

    background: transparent;
    border: 1px solid #5b82f6;
    border-radius: 24px;
    cursor: pointer;
}

.cookie-popup__button:hover {
    color: #ffffff;
    background: #5b82f6;
}

.cookie-popup__link {
    font-size: 15px;
    color: #556170;
    text-decoration: none;
}

.cookie-popup__link:hover {
    color: #5b82f6;
}

/* Мобильная версия */
@media (max-width: 575px) {
    .cookie-popup {
        right: 16px;
        bottom: 16px;
        left: 16px;

        width: auto;
        padding: 18px;
        border-radius: 18px;
    }

    .cookie-popup__actions {
        gap: 20px;
    }

    .cookie-popup__button {
        min-width: 110px;
    }
} 

/* HERO animation */

.hero-dashboard {
    position: relative;
}

/* Дашборд мягко появляется */
.dashboard-img {
    opacity: 0;
    translate: 0 28px;
    filter: blur(8px);
    animation: dashboardAppear 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Кнопка под дашбордом появляется после картинки */
.hero-desktop-action {
    opacity: 0;
    translate: 0 18px;
    animation: dashboardAppear 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

/* Все баблы изначально скрыты */
.crypto-badge {
    opacity: 0;
    translate: 0 22px;
    filter: blur(6px);
    will-change: opacity, translate, filter;
    animation: cryptoBubbleUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Desktop: задержки по конкретным классам */
.crypto-badge-btc {
    animation-delay: 0.45s;
}

.crypto-badge-pol {
    animation-delay: 0.6s;
}

.crypto-badge-usdc {
    animation-delay: 0.75s;
}

.crypto-badge-ltc {
    animation-delay: 0.9s;
}

.crypto-badge-eth {
    animation-delay: 1.05s;
}

.crypto-badge-sol {
    animation-delay: 1.2s;
}

/* Mobile: так как там нет отдельных классов, используем порядок */
.crypto-badges-mobile .crypto-badge:nth-child(1) {
    animation-delay: 0.45s;
}

.crypto-badges-mobile .crypto-badge:nth-child(2) {
    animation-delay: 0.6s;
}

.crypto-badges-mobile .crypto-badge:nth-child(3) {
    animation-delay: 0.75s;
}

.crypto-badges-mobile .crypto-badge:nth-child(4) {
    animation-delay: 0.9s;
}

.crypto-badges-mobile .crypto-badge:nth-child(5) {
    animation-delay: 1.05s;
}

.crypto-badges-mobile .crypto-badge:nth-child(6) {
    animation-delay: 1.2s;
}

@keyframes dashboardAppear {
    from {
        opacity: 0;
        translate: 0 28px;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
    }
}

@keyframes cryptoBubbleUp {
    from {
        opacity: 0;
        translate: 0 22px;
        scale: 0.94;
        filter: blur(6px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

/* Для пользователей, у которых отключены анимации в системе */
@media (prefers-reduced-motion: reduce) {
    .dashboard-img,
    .hero-desktop-action,
    .crypto-badge {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: none;
        animation: none;
    }
}

.feature-tag {
    opacity: 0;
    translate: 64px 0;
    filter: blur(10px);
}

.feature-tag.is-visible {
    animation: featureTagSlideIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes featureTagSlideIn {
    from {
        opacity: 0;
        translate: 64px 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
    }
}

/* Отключаем анимации, если пользователь ограничил motion в системе */
@media (prefers-reduced-motion: reduce) {
    .feature-tag {
        opacity: 1;
        translate: 0 0;
        filter: none;
    }

    .feature-tag.is-visible {
        animation: none;
    }
}

.reliable {
    overflow: hidden;
}

/* Исходное состояние */
.reliable .reliable-card,
.reliable .reliable-image-card,
.reliable .reliable-image-card img,
.reliable .info-bubble {
    opacity: 0;
    filter: blur(10px);
    will-change: opacity, translate, scale, filter;
}

/* Левая текстовая карточка */
.reliable .reliable-card {
    translate: 0 44px;
}

/* Правая карточка с телефоном появляется как единый визуальный блок */
.reliable .reliable-image-card {
    translate: 0 52px;
    scale: 0.97;
}

/* Телефон внутри — чуть позже и мягче */
.reliable .reliable-image-card img {
    translate: 0 28px;
    scale: 0.96;
}

/* Bubbles не едут в стороны, а мягко всплывают снизу */
.reliable .info-bubble {
    translate: 0 26px;
    scale: 0.96;
}

/* Запуск анимации */
.reliable.is-visible .reliable-card {
    animation: reliableRevealUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.reliable.is-visible .reliable-image-card {
    animation: reliableVisualReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.reliable.is-visible .reliable-image-card img {
    animation: reliablePhoneReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.reliable.is-visible .bubble-left {
    animation: reliableBubbleReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

.reliable.is-visible .bubble-right {
    animation: reliableBubbleReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
}

@keyframes reliableRevealUp {
    from {
        opacity: 0;
        translate: 0 44px;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
    }
}

@keyframes reliableVisualReveal {
    from {
        opacity: 0;
        translate: 0 52px;
        scale: 0.97;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@keyframes reliablePhoneReveal {
    from {
        opacity: 0;
        translate: 0 28px;
        scale: 0.96;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@keyframes reliableBubbleReveal {
    from {
        opacity: 0;
        translate: 0 26px;
        scale: 0.96;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reliable .reliable-card,
    .reliable .reliable-image-card,
    .reliable .reliable-image-card img,
    .reliable .info-bubble {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: none;
        animation: none;
    }
}

/* Step cards animation */

.steps .step-card {
    opacity: 0;
    translate: 0 48px;
    scale: 0.96;
    filter: blur(8px);
    will-change: opacity, translate, scale, filter;
}

/* Запуск после появления секции */
.steps.is-visible .steps-grid .step-card:nth-child(1) {
    animation: stepCardFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.steps.is-visible .steps-grid .step-card:nth-child(2) {
    animation: stepCardFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.steps.is-visible .steps-grid .step-card:nth-child(3) {
    animation: stepCardFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.steps.is-visible .steps-grid .step-card:nth-child(4) {
    animation: stepCardFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

@keyframes stepCardFadeUp {
    from {
        opacity: 0;
        translate: 0 48px;
        scale: 0.96;
        filter: blur(8px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .steps .step-card {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: none;
        animation: none;
    }
}

/* CTA dashboard animation */

.cta .cta-dashboard {
    opacity: 0;
    translate: 0 56px;
    scale: 0.96;
    filter: blur(10px);
    will-change: opacity, translate, scale, filter;
}

.cta.is-visible .cta-dashboard {
    animation: ctaDashboardReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes ctaDashboardReveal {
    from {
        opacity: 0;
        translate: 0 56px;
        scale: 0.96;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta .cta-dashboard {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        filter: none;
        animation: none;
    }
}