:root {
    --bg: #fff;
    --text: #0f172a;
    --muted: #6b7280;
    --line: #eef2f7;
    --primary: #5b3df5;
    --primary-2: #3b82f6;
    --radius: 12px;
    --shadow-sm: 0 4px 12px rgba(16, 24, 40, .06);
    --shadow-md: 0 10px 30px rgba(16, 24, 40, .08)
}

/* Steps */
.steps{position:relative;padding:80px 0}
.steps-inner{position:relative}
.steps h2{text-align:center;margin:0 0 24px;font-size:clamp(22px,3.2vw,30px);font-weight:800;letter-spacing:-.01em}
.steps-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:24px;align-items:center}
.steps-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px}
.step-item{display:flex;gap:14px;align-items:flex-start}
.step-num{flex:0 0 28px;height:28px;border-radius:999px;background:linear-gradient(90deg,var(--primary),var(--primary-2));color:#fff;display:inline-grid;place-items:center;font-weight:700}
.step-title{color:#4f46e5;font-weight:700}
.step-title:hover{text-decoration:underline}
.step-desc{margin:4px 0 0;color:#475569}
.steps-illustration img{max-width:100%;height:auto;display:block}
.steps-cta{display:flex;justify-content:center;margin-top:24px}

@media (max-width: 900px){
  .steps{padding:56px 0}
  .steps-grid{grid-template-columns:1fr}
  .steps-illustration{order:-1}
}

/* Testimonials */
.testimonials{position:relative;padding:80px 0}
.test-inner{position:relative}
.testimonials h2{text-align:center;margin:0 0 6px;font-size:clamp(22px,3.2vw,30px);font-weight:800;letter-spacing:-.01em}
.test-sub{margin:0 auto 12px;text-align:center;color:#64748b;max-width:820px}
.rating-row{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:22px;color:#475569}
.stars.gold .star{width:16px;height:16px;fill:#f59e0b;stroke:none}

.t-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.t-card{background:#fff;border:1px solid #e9eef5;border-radius:12px;box-shadow:0 10px 24px rgba(16,24,40,.06);padding:18px;display:flex;flex-direction:column;gap:10px;min-height:200px}
.t-card h3{margin:0 0 4px;font-size:18px}
.t-card p{margin:0;color:#334155}
.card-link{margin-top:auto;color:#3b82f6;font-weight:600;align-self:flex-end}

@media (max-width: 1024px){
  .t-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px){
  .testimonials{padding:56px 0}
  .t-grid{grid-template-columns:1fr}
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5
}

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

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

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

.container {
    width: min(1120px, 100% - 48px);
    margin-inline: auto
}

/* icons */
.icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(6px);
    border-bottom: 1px solid var(--line)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff
}

.brand-name {
    font-weight: 700
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative
}

.nav-group {
    display: flex;
    gap: 18px
}

.nav-link {
    padding: 10px 8px;
    color: #475569;
    font-weight: 500
}

.nav-link:hover {
    color: #111827
}

.nav-locale {
    display: flex
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827
}

.icon-btn .icon {
    width: 16px;
    height: 16px
}

.icon-btn .caret {
    width: 14px;
    height: 14px
}

.icon-btn:hover {
    background: #f8fafc
}

.nav-actions {
    display: flex;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent
}

.btn.primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.btn.primary:hover {
    filter: brightness(.96)
}

.btn.primary .icon {
    stroke: #fff
}

.btn.primary .arrow {
    margin-left: 6px;
    width: 18px;
    height: 18px
}

.btn.ghost {
    background: #fff;
    border-color: #e5e7eb;
    color: #111827
}

.btn.ghost:hover {
    background: #f8fafc
}

.btn.lg {
    padding: 14px 22px;
    font-size: 16px
}

.nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff
}

.nav-toggle span,
.nav-toggle span:before,
.nav-toggle span:after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: #111827;
    border-radius: 2px
}

.nav-toggle span {
    top: 19px
}

.nav-toggle span:before {
    top: -6px
}

.nav-toggle span:after {
    top: 6px
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 56px
}

.hero:before {
    content: "";
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 70%;
    background: radial-gradient(40% 60% at 10% 20%, rgba(91, 61, 245, .18) 0%, rgba(91, 61, 245, 0) 60%)
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto -20% -40% -20%;
    height: 70%;
    background: radial-gradient(40% 60% at 90% 80%, rgba(59, 130, 246, .18) 0%, rgba(59, 130, 246, 0) 60%)
}

.hero-inner {
    text-align: center;
    position: relative
}

.hero h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    font-size: clamp(28px, 6vw, 56px)
}

.lead {
    max-width: 820px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: clamp(14px, 2.2vw, 18px)
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap
}

.cta-note {
    color: #64748b;
    font-size: 14px
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    color: #475569;
    font-size: 14px
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-weight: 600
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.stars .star {
    width: 16px;
    height: 16px;
    fill: #22c55e;
    stroke: none;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .05))
}

.reviews-link {
    color: #3b82f6
}

.trustpilot {
    color: #16a34a;
    font-weight: 600
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 26px;
    color: #0f172a;
    opacity: .8
}

.press {
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center
}

.press img {

    display: block
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9eef5;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .1), 0 2px 10px rgba(16, 24, 40, .06);
    padding: 12px 14px;
    font-weight: 600;
    color: #111827;
    transition: transform .25s ease, box-shadow .25s ease
}

.float-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, .14), 0 4px 12px rgba(16, 24, 40, .08)
}

.float-badge span:last-child {
    white-space: nowrap
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), 0 1px 2px rgba(16, 24, 40, .06)
}

.badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0f172a;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.badge-icon.green {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7)
}

.badge-icon.blue {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd)
}

.badge-icon.purple {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd)
}

.badge-icon.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74)
}

.badge-icon.gray {
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6)
}

.badge-tl {
    top: 120px;
    left: 32px
}

.badge-ml {
    top: 260px;
    left: 60px
}

.badge-bl {
    top: 420px;
    left: 100px
}

.badge-tr {
    top: 120px;
    right: 60px
}

.badge-mr {
    top: 260px;
    right: 100px
}

.badge-br {
    top: 420px;
    right: 120px
}

@media (max-width: 1024px) {
    .press {
        font-size: 20px
    }

    .badge-tl {
        top: 100px;
        left: 12px
    }

    .badge-ml {
        top: 230px;
        left: 24px
    }

    .badge-bl {
        top: 380px;
        left: 48px
    }

    .badge-tr {
        top: 100px;
        right: 24px
    }

    .badge-mr {
        top: 230px;
        right: 48px
    }

    .badge-br {
        top: 380px;
        right: 64px
    }
}

@media (max-width: 900px) {
    .nav-group {
        display: none
    }

    .nav-actions {
        display: none
    }

    .nav-toggle {
        display: inline-block
    }

    .nav.open .nav-group,
    .nav.open .nav-actions {
        display: flex;
        position: absolute;
        top: 56px;
        right: 0;
        flex-direction: column;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        padding: 10px;
        width: 220px
    }

    .nav.open .nav-actions {
        position: static;
        border: 0;
        box-shadow: none;
        padding: 0;
        width: auto;
        flex-direction: row;
        margin-top: 8px
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 72px 0 40px
    }

    .float-badge {
        display: none
    }

    .press-logos {
        gap: 24px
    }
}

/* Bots section */
.bots {
    position: relative;
    padding: 60px 0 80px
}

.bots-inner {
    position: relative
}

.bots h2 {
    margin: 0 0 18px;
    font-size: clamp(22px, 3.2vw, 32px);
    text-align: center;
    font-weight: 800;
    letter-spacing: -.01em
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 10px auto 18px
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #334155;
    font-weight: 600
}

.tab .icon {
    width: 16px;
    height: 16px
}

.tab.active {
    border-color: transparent;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.tab:hover {
    background: #f8fafc
}

.tab-panels {
    position: relative
}

.panel {
    display: none
}

.panel.active {
    display: block
}

.preview {
    position: relative;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .12), 0 4px 16px rgba(16, 24, 40, .08);
    overflow: hidden
}

.preview-img {
    width: 100%;
    display: block
}

.video-overlay {
    position: absolute;
    right: 16px;
    top: 16px;
    max-height: calc(100% - 32px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, .2)
}

.video-overlay video {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block
}

@media (max-width: 900px) {
    .video-overlay {
        right: 12px;
        top: 12px
    }
}

@media (max-width: 640px) {
    .tabs {
        gap: 8px
    }

    .tab {
        padding: 8px 10px;
        font-size: 14px
    }

    .video-overlay {
        right: 10px;
        top: 10px
    }
}

/* Wallets section */
.wallets {
    position: relative;
    overflow: hidden;
    padding: 80px 0
}

.wallets:before {
    content: "";
    position: absolute;
    inset: -30% -10% auto -10%;
    height: 60%;
    background: radial-gradient(40% 50% at 10% 30%, rgba(91, 61, 245, .15) 0%, rgba(91, 61, 245, 0) 60%);
    pointer-events: none
}

.wallets:after {
    content: "";
    position: absolute;
    inset: auto -10% -30% -10%;
    height: 60%;
    background: radial-gradient(40% 50% at 90% 70%, rgba(59, 130, 246, .15) 0%, rgba(59, 130, 246, 0) 60%);
    pointer-events: none
}

.wallets-inner {
    position: relative
}

.wallets .stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 0 0 14px;
    color: #0f172a
}

.wallets .stat-item {
    text-align: center
}

.wallets .stat-item .num {
    font-weight: 800;
    font-size: clamp(22px, 3.6vw, 34px)
}

.wallets .stat-item .label {
    color: #64748b;
    font-weight: 600
}

.wallets h2 {
    margin: 8px 0 6px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -.01em;
    font-size: clamp(22px, 3.2vw, 30px)
}

.wallets .subtitle {
    margin: 0 auto 6px;
    text-align: center;
    color: #0f172a;
    font-weight: 600
}

.wallets .desc {
    margin: 0 auto 18px;
    text-align: center;
    color: #64748b;
    max-width: 880px
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 28px
}

.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(16, 24, 40, .04)
}

.brand-tile .name {
    font-weight: 700;
    font-size: 14px
}

.brand-tile img {
    height: 22px;
    display: block
}

.brand-tile.no-img {
    padding: 16px
}

.brand-tile:hover {
    box-shadow: 0 10px 24px rgba(16, 24, 40, .08)
}

@media (max-width: 768px) {
    .wallets {
        padding: 56px 0
    }

    .wallets .stats {
        gap: 28px
    }

    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr))
    }
}

/* FAQ */
.faq {
    position: relative;
    padding: 80px 0
}

.faq-inner {
    position: relative
}

.faq h2 {
    text-align: center;
    margin: 0 0 16px;
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 800;
    letter-spacing: -.01em
}

.faq-list {
    width: min(920px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(16, 24, 40, .06)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e9eef5;
    border-radius: 12px;
    background: #fff;
    font-weight: 700;
    color: #0f172a
}

.faq-q .chev {
    width: 20px;
    height: 20px;
    stroke: none;
    fill: #475569;
    transition: transform .2s ease
}

.faq-q[aria-expanded="true"] .chev {
    transform: rotate(180deg)
}

.faq-a {
    height: 0;
    overflow: hidden;
    border-left: 1px solid #e9eef5;
    border-right: 1px solid #e9eef5;
    border-bottom: 1px solid #e9eef5;
    border-radius: 0 0 12px 12px;
    background: #fff;
    transition: height .25s ease
}

.faq-a-inner {
    padding: 12px 16px;
    color: #334155
}

.faq-item.open .faq-q {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.faq-a ol {
    margin: 8px 0 0 18px
}

.faq-a li {
    margin: 6px 0
}

@media (max-width: 768px) {
    .faq {
        padding: 56px 0
    }
}

/* Footer */
.site-footer{background:#0f172a;color:#cbd5e1;padding:40px 0 24px;margin-top:40px}
.footer-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:24px;align-items:start}
.footer-brand .brand{color:#fff}
.footer-tag{color:#94a3b8;margin-top:6px}
.footer-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.footer-col h4{margin:0 0 8px;color:#e2e8f0;font-size:14px}
.footer-col a{display:block;color:#cbd5e1;text-decoration:none;padding:4px 0}
.footer-col a:hover{color:#fff;text-decoration:underline}
.footer-bottom{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.08);margin-top:8px;padding-top:12px;text-align:center;color:#94a3b8}

@media (max-width: 900px){
  .footer-inner{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
  .footer-cols{grid-template-columns:1fr}
}

/* Legal pages */
.legal{padding:72px 0}
.legal .container{max-width:800px}
.legal h1{margin:0 0 12px;font-size:clamp(24px,3.5vw,36px)}
.legal .meta{color:#64748b;margin:0 0 20px}
.legal h2{margin:18px 0 8px}
.legal p{color:#334155}
.legal ul{margin:8px 0 16px 18px}

/* Cookie banner */
.cookie-banner{position:fixed;right:16px;bottom:16px;max-width:360px;width:calc(100% - 32px);background:#fff;color:#0f172a;border:1px solid #e9eef5;border-radius:12px;box-shadow:0 12px 30px rgba(16,24,40,.18);padding:14px 14px 12px;z-index:1000;display:none}
.cookie-banner .cookie-text{margin:0 0 10px;color:#334155}
.cookie-banner .cookie-text a{color:#4f46e5;text-decoration:underline}
.cookie-actions{display:flex;gap:8px;justify-content:flex-end}
.cookie-actions .btn{padding:8px 12px}
.cookie-actions .btn.primary{background:linear-gradient(90deg,var(--primary),var(--primary-2));color:#fff;border:none}
.cookie-actions .btn:hover{opacity:.95}