/* ===== ROOT ===== */
:root {
    --bg: #06060b;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text: #ffffff;
    --text-dim: #8b8b9e;
    --accent: #00e5ff;
    --accent2: #7c3aed;
    --accent3: #f472b6;
    --glass: rgba(255, 255, 255, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BACKGROUND ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
}

.orb-1 {
    width: 700px;
    height: 700px;
    top: -300px;
    left: -200px;
    background: var(--accent2);
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -150px;
    background: var(--accent);
}

.orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent3);
    opacity: 0.15;
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    padding: 10px 22px !important;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 229, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px 5px rgba(0, 229, 255, 0.15);
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--text);
}

/* ===== TEXT GRADIENT ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
}

.badge-alt {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    color: var(--accent2);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Dashboard */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
}

/* Transaction Cards */
.tx-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    animation: tx-float 3s ease-in-out infinite;
    z-index: 10;
    width: max-content;
}

.tx-1 {
    top: 10px;
    left: 0;
    animation-delay: 0s;
}

.tx-2 {
    top: 90px;
    right: 0;
    animation-delay: 0.5s;
}

.tx-3 {
    bottom: 140px;
    left: 10px;
    animation-delay: 1s;
}

.tx-4 {
    bottom: 50px;
    right: 20px;
    animation-delay: 1.5s;
}

@keyframes tx-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.tx-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.tx-success {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.tx-pending {
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
}

.tx-details {
    display: flex;
    flex-direction: column;
}

.tx-amount {
    font-size: 15px;
    font-weight: 700;
}

.tx-label {
    font-size: 12px;
    color: var(--text-dim);
}

.tx-time {
    font-size: 12px;
    color: var(--text-dim);
    margin-left: auto;
}

/* Main dash card */
.dash-main {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 24px;
    border-radius: var(--radius-lg);
    z-index: 5;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: blink 1.5s ease infinite;
}

.dash-chart {
    margin-bottom: 16px;
}

.chart-svg {
    width: 100%;
    height: auto;
}

.chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-line 2s ease forwards 0.5s;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-area {
    opacity: 0;
    animation: fade-in 1s ease forwards 1.5s;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dash-stat {
    text-align: center;
}

.ds-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

.ds-label {
    font-size: 11px;
    color: var(--text-dim);
}

/* ===== STATS TICKER ===== */
.stats-ticker {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ticker-item {
    text-align: center;
}

.ticker-number {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.ticker-plus {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ticker-label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}

.ticker-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin-top: 80px;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content .dot {
    color: var(--accent);
    font-size: 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== GLASS CARD ===== */
.glass-card,
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 229, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 14px;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CURRENCIES ===== */
.currencies-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.currency-group {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

.currency-group:hover {
    border-color: var(--border-hover);
}

.currency-group h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.bank-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bank-tag {
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    transition: all 0.3s;
}

.bank-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.bank-tag.crypto {
    background: rgba(255, 200, 0, 0.06);
    border-color: rgba(255, 200, 0, 0.2);
    color: #ffc800;
}

.niches-block {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.niches-block h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

.niche-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.niche-tag {
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: #c4b5fd;
    transition: all 0.3s;
}

.niche-tag:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent2);
    transform: translateY(-2px);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.price-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), var(--bg-card));
}

.price-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1;
}

.price-percent {
    font-size: 28px;
    color: var(--text-dim);
}

.price-desc {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Bonus banner */
.bonus-banner {
    padding: 32px 40px;
    border-color: rgba(255, 200, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.04), var(--bg-card));
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bonus-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.bonus-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.bonus-content p {
    color: var(--text-dim);
    font-size: 14px;
}

.bonus-content strong {
    color: var(--accent);
}

/* ===== INTEGRATION ===== */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.integ-card {
    padding: 32px;
    transition: all 0.3s;
}

.integ-card:hover {
    border-color: var(--border-hover);
}

.integ-card h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.integ-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integ-tag {
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.integ-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Code preview */
.code-preview {
    overflow: hidden;
    border-radius: var(--radius);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) {
    background: #ff5f57;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #28c840;
}

.code-lang {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
}

.code-body {
    padding: 24px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
    color: var(--text-dim);
}

.code-kw {
    color: #c792ea;
}

.code-var {
    color: #82aaff;
}

.code-fn {
    color: #82aaff;
}

.code-str {
    color: #c3e88d;
}

.code-num {
    color: #f78c6c;
}

.code-prop {
    color: #f07178;
}

.code-comment {
    color: #546e7a;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-info h2 {
    font-size: 36px;
    margin: 16px 0;
}

.contact-info>p {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 32px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
}

.contact-channel:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tg-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.email-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent);
}

.web-icon {
    background: rgba(124, 58, 237, 0.12);
    color: var(--accent2);
}

.channel-text {
    display: flex;
    flex-direction: column;
}

.channel-name {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-value {
    font-size: 16px;
    font-weight: 600;
}

.channel-arrow {
    margin-left: auto;
    font-size: 20px;
    color: var(--text-dim);
    transition: all 0.3s;
}

.contact-channel:hover .channel-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.contact-cta {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.04), transparent 50%);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
    position: relative;
}

.contact-cta>p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
}

.cta-checklist {
    list-style: none;
    margin-bottom: 32px;
    position: relative;
}

.cta-checklist li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dim);
}

.cta-checklist li:first-child {
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links-group h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-links-group a {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-links-group a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 13px;
}

/* ===== ANIMATIONS ===== */
.anim-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(.4, 0, .2, 1);
}

.anim-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .bonus-content {
        flex-direction: column;
        text-align: center;
    }

    .stats-ticker {
        gap: 24px;
    }

    .ticker-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .currencies-showcase {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }
}