:root {
    --bg: #0c0e12;
    --bg-card: #14161c;
    --bg-card-hover: #1a1d25;
    --surface: #1e2128;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #f0f0f5;
    --text-secondary: #8b8fa3;
    --text-muted: #555a6e;
    --accent: #3282d7;
    --accent-glow: rgba(50,130,215,0.3);
    --accent2: #2ecc71;
    --accent2-glow: rgba(46,204,113,0.25);
    --accent3: #e67e22;
    --accent3-glow: rgba(230,126,34,0.25);
    --gradient-hero: linear-gradient(135deg, #3282d7 0%, #5ba3e6 50%, #a78bfa 100%);
    --gradient-vpn: linear-gradient(135deg, #3282d7, #5ba3e6);
    --gradient-pay: linear-gradient(135deg, #2ecc71, #58d68d);
    --gradient-ai: linear-gradient(135deg, #e67e22, #f39c12);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.15;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 0;
    margin-top: 10px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav-inner {
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 100px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    transition: font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo-icon {
    flex-shrink: 0;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo-text {
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
}

.nav.scrolled .nav-logo {
    font-size: 20px;
}

.nav.scrolled .nav-logo-text {
    opacity: 1;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    transition: gap 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .nav-links {
    gap: 24px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s, font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav.scrolled .nav-links a {
    font-size: 13px;
}

.nav-links a:hover { color: var(--text); }

.nav-cta-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    color: #fff !important;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 0 transparent;
}

.nav-cta--bot {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-cta--web {
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent-glow);
}

.nav.scrolled .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
}

.nav-cta:hover {
    transform: translateY(0);
}

.nav-cta--bot:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-cta--web:hover {
    box-shadow: 0 8px 30px var(--accent-glow);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-toggle.active svg {
    transform: rotate(90deg);
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Text background layer — horizontal scrolling rows */
.hero-text-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}

.hero-text-row {
    display: flex;
    gap: 0.4em;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
    color: rgba(255,255,255,0.035);
    will-change: transform;
    padding: 0.08em 0;
}

.hero-text-row span {
    flex-shrink: 0;
}

.hero-text-row--1 {
    font-size: clamp(80px, 11vw, 160px);
    animation: heroTextScroll 30s linear infinite;
}
.hero-text-row--2 {
    font-size: clamp(40px, 4.5vw, 60px);
    color: rgba(255,255,255,0.03);
    animation: heroTextScrollReverse 42s linear infinite;
}
.hero-text-row--3 {
    font-size: clamp(100px, 15vw, 220px);
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.05);
    animation: heroTextScroll 55s linear infinite;
}
.hero-text-row--4 {
    font-size: clamp(36px, 3.5vw, 50px);
    color: rgba(255,255,255,0.025);
    animation: heroTextScrollReverse 35s linear infinite;
    letter-spacing: 0.15em;
}
.hero-text-row--5 {
    font-size: clamp(90px, 13vw, 190px);
    animation: heroTextScroll 22s linear infinite;
    color: rgba(255,255,255,0.035);
}
.hero-text-row--6 {
    font-size: clamp(44px, 5.5vw, 72px);
    color: rgba(255,255,255,0.035);
    animation: heroTextScrollReverse 48s linear infinite;
}
.hero-text-row--7 {
    font-size: clamp(70px, 9vw, 140px);
    font-family: 'Arial Black', 'Impact', sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.045);
    animation: heroTextScroll 28s linear infinite;
}

@keyframes heroTextScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes heroTextScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.hero-canvas {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        radial-gradient(ellipse 45% 40% at 50% 48%, rgba(12,14,18,0.65) 0%, rgba(12,14,18,0.3) 50%, transparent 100%),
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(12,14,18,0.55) 70%, rgba(12,14,18,0.95) 100%),
        linear-gradient(180deg, rgba(12,14,18,0.3) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    position: relative;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(50,130,215,0.08);
    border: 1px solid rgba(50,130,215,0.18);
    border-radius: 100px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 20px rgba(12,14,18,0.8);
}

.hero-title-gradient {
    color: #5ba3e6;
    -webkit-text-fill-color: #5ba3e6;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    text-shadow: 0 2px 16px rgba(12,14,18,0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-btn {
    font-size: 16px;
    padding: 16px 36px;
    min-width: 220px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-muted);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: 100svh; }
    .hero-title { letter-spacing: -1.5px; }
    .hero-desc { font-size: 16px; margin-bottom: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-btn { width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }
    .hero-stat-divider { height: 32px; }
    .hero-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 24px; }
    .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
    .hero-stats { gap: 16px; }
    .hero-stat-value { font-size: 20px; }
}

/* ═══════════════ SECTION COMMON ═══════════════ */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(50,130,215,0.08);
    border: 1px solid rgba(50,130,215,0.15);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-label--orange {
    color: var(--accent3);
    background: rgba(230,126,34,0.08);
    border-color: rgba(230,126,34,0.15);
}

.section-label--green {
    color: var(--accent2);
    background: rgba(46,204,113,0.08);
    border-color: rgba(46,204,113,0.15);
}

.section-badge--dev {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 100px;
    margin-left: 8px;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    margin: 0 auto;
}

/* ═══════════════ PRODUCTS ═══════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    background: var(--bg-card-hover);
}

.product-card:hover::before { opacity: 1; }

.product-card--vpn::before { background: var(--gradient-vpn); }
.product-card--pay::before { background: var(--gradient-pay); }
.product-card--ai::before { background: var(--gradient-ai); }

.product-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.product-card:hover .product-card-glow { opacity: 0.15; }

.product-card--vpn .product-card-glow { background: var(--accent); }
.product-card--pay .product-card-glow { background: var(--accent2); }
.product-card--ai .product-card-glow { background: var(--accent3); }

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 24px;
}

.product-icon--vpn { background: linear-gradient(135deg, rgba(50,130,215,0.15), rgba(91,163,230,0.1)); color: #5ba3e6; }
.product-icon--pay { background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(88,214,141,0.1)); color: #58d68d; }
.product-icon--ai { background: linear-gradient(135deg, rgba(230,126,34,0.15), rgba(243,156,18,0.1)); color: #e67e22; }

.product-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.product-tag--live {
    background: rgba(46,204,113,0.1);
    color: var(--accent2);
    border: 1px solid rgba(46,204,113,0.2);
}

.product-tag--soon {
    background: rgba(230,126,34,0.1);
    color: var(--accent3);
    border: 1px solid rgba(230,126,34,0.2);
}

/* ═══════════════ FEATURES BENTO ═══════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    background: rgba(50,130,215,0.1);
    color: var(--accent);
}

.bento-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-visual {
    margin-top: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* Map visual */
.map-dots {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
}

.map-dot {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.map-dot--active {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Speed bar */
.speed-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
}

.speed-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-in-out infinite;
}

.speed-bar:nth-child(1) { height: 40%; background: rgba(50,130,215,0.4); animation-delay: 0s; }
.speed-bar:nth-child(2) { height: 65%; background: rgba(50,130,215,0.5); animation-delay: 0.1s; }
.speed-bar:nth-child(3) { height: 85%; background: rgba(50,130,215,0.6); animation-delay: 0.2s; }
.speed-bar:nth-child(4) { height: 100%; background: var(--accent); animation-delay: 0.3s; }
.speed-bar:nth-child(5) { height: 90%; background: rgba(50,130,215,0.6); animation-delay: 0.4s; }
.speed-bar:nth-child(6) { height: 70%; background: rgba(50,130,215,0.5); animation-delay: 0.5s; }
.speed-bar:nth-child(7) { height: 50%; background: rgba(50,130,215,0.4); animation-delay: 0.6s; }
.speed-bar:nth-child(8) { height: 35%; background: rgba(50,130,215,0.3); animation-delay: 0.7s; }

@keyframes barGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.7); }
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    counter-increment: step;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(50,130,215,0.2) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 8px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════ LOCATIONS / GLOBE ═══════════════ */
.locations-wrap {
    display: flex;
    gap: 48px;
    align-items: center;
}

.locations-info { flex: 1; min-width: 0; }

.globe-container {
    flex: 1;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#globeCanvas {
    position: absolute;
    inset: 0;
    display: block;
    cursor: grab;
    touch-action: none;
}

#globeCanvas:active { cursor: grabbing; }

.globe-tooltip {
    position: fixed;
    pointer-events: none;
    background: rgba(15,17,23,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xs);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.globe-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.globe-tap-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    background: rgba(50,130,215,0.25);
    border: 1px solid rgba(50,130,215,0.4);
    padding: 6px 14px;
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 15;
    min-width: 32px;
    text-align: center;
}

.globe-tap-hint.visible {
    opacity: 1;
}

.globe-tooltip-flag {
    display: flex;
    align-items: center;
    line-height: 1;
}

.globe-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.globe-legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    background: #14161c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
}

.globe-legend-chip:hover {
    border-color: rgba(50,130,215,0.3);
    background: #171a24;
    color: var(--text);
}

.globe-legend-chip img {
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
}

/* ═══════════════ REFERRAL ═══════════════ */
.referral-section {
    background: linear-gradient(180deg, transparent 0%, rgba(50,130,215,0.03) 50%, transparent 100%);
}

.referral-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.referral-visual {
    position: relative;
}

.referral-card-stack {
    position: relative;
    height: 320px;
}

.referral-float-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.referral-float-card--1 {
    top: 0; left: 0; right: 40px;
    animation: floatCard1 6s ease-in-out infinite;
}

.referral-float-card--2 {
    bottom: 0; left: 40px; right: 0;
    animation: floatCard2 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translate(0, 0) rotate(-1deg); }
    50% { transform: translate(5px, -10px) rotate(0deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translate(0, 0) rotate(1deg); }
    50% { transform: translate(-5px, 10px) rotate(0deg); }
}

.ref-card-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ref-card-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.ref-card-value--green { color: var(--accent2); }

.ref-card-bar {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    margin-top: 16px;
    overflow: hidden;
}

.ref-card-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-hero);
    animation: barFill 8s ease-in-out infinite;
}

@keyframes barFill {
    0% { width: 55%; }
    50% { width: 72%; }
    100% { width: 55%; }
}

.referral-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.referral-perk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.referral-perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    background: rgba(50,130,215,0.1);
    color: var(--accent);
}

.referral-perk-text h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.referral-perk-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════ CTA ═══════════════ */
.cta-section {
    padding: 120px 0;
}

.cta-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-hero);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-orb--1 {
    width: 300px; height: 300px;
    background: var(--accent);
    opacity: 0.1;
    top: -100px; left: -50px;
}

.cta-orb--2 {
    width: 250px; height: 250px;
    background: var(--accent2);
    opacity: 0.08;
    bottom: -80px; right: -30px;
}

.cta-box h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #2AABEE;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(42,171,238,0.3);
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(42,171,238,0.4);
}

.btn-telegram svg { width: 22px; height: 22px; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-secondary); }

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-muted);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════ AI DEMO ═══════════════ */
.ai-wrap {
    flex-direction: row-reverse;
}

.ai-info,
.pay-info {
    flex: 1;
    min-width: 0;
}

.ai-demo-wrap {
    flex: 1;
}

.ai-demo {
    background: #0e1017;
    border: 1px solid rgba(230,126,34,0.12);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(230,126,34,0.06);
}

.ai-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.ai-demo-tabs {
    display: flex;
    gap: 4px;
}

.ai-demo-tab {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
}

.ai-demo-tab:hover {
    color: var(--text-secondary);
    background: rgba(255,255,255,0.04);
}

.ai-demo-tab.active {
    color: #e67e22;
    background: rgba(230,126,34,0.1);
}

.ai-demo-model {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.ai-demo-body {
    padding: 20px;
    height: 370px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.ai-demo-prompt {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    min-height: 20px;
    line-height: 1.5;
    flex-shrink: 0;
}

.ai-demo-prompt::before {
    content: '→ ';
    color: #e67e22;
    font-weight: 600;
}

.ai-demo-output {
    flex: 1;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text);
    position: relative;
}

.ai-demo-output .ai-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #e67e22;
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ai-demo-output .ai-code-block {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre;
}

.ai-code-block .kw { color: #c678dd; }
.ai-code-block .fn { color: #61afef; }
.ai-code-block .str { color: #98c379; }
.ai-code-block .cm { color: #5c6370; font-style: italic; }
.ai-code-block .num { color: #d19a66; }
.ai-code-block .op { color: #56b6c2; }

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

.ai-image-cell {
    aspect-ratio: 1; background: #0a0d14;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.ai-image-cell .ai-img-reveal {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    animation: imgReveal 2.5s ease-out forwards;
    opacity: 0;
}

.ai-image-cell img.ai-img-real {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: imgReveal 2s ease-out forwards;
}

@keyframes imgReveal {
    0% { opacity: 0; filter: blur(20px) saturate(0); transform: scale(1.1); }
    40% { opacity: 0.6; filter: blur(10px) saturate(0.5); }
    100% { opacity: 1; filter: blur(0) saturate(1); transform: scale(1); }
}

.ai-image-cell .ai-img-noise {
    position: absolute;
    inset: 0;
    background:
        repeating-conic-gradient(rgba(255,255,255,0.03) 0% 25%, transparent 0% 50%) 0 0 / 4px 4px;
    animation: noiseOut 2s ease-out forwards;
}

@keyframes noiseOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.ai-music-vis {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
}

.ai-music-cover {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    flex-shrink: 0;
    animation: coverPulse 2s ease-in-out infinite;
}

@keyframes coverPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.ai-music-info {
    flex: 1;
    min-width: 0;
}

.ai-music-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.ai-music-artist {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ai-demo-output .ai-fade-in {
    animation: aiFadeIn 0.4s ease-out;
}

@keyframes aiFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-demo-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.015);
}

.ai-demo-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.ai-demo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e67e22;
    animation: pulse 2s ease-in-out infinite;
}

.ai-demo-models-row {
    display: flex;
    gap: 4px;
}

.ai-model-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ═══════════════ AID PAY — MOSAIC ═══════════════ */
.pay-section {
    background: linear-gradient(180deg, transparent 0%, rgba(46,204,113,0.015) 50%, transparent 100%);
}

.pay-block {
    display: flex;
    gap: 48px;
    align-items: center;
}

/* ── Pay Terminal ── */
.pay-terminal-wrap {
    flex: 1;
    min-width: 0;
}

.pay-terminal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.4s ease;
}

.pay-terminal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: opacity 0.3s ease;
}

.pay-terminal-svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.pay-terminal-svc-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: inherit;
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
}

.pay-terminal-svc-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.pay-terminal-svc-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

.pay-terminal-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pay-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.pay-field:first-child {
    z-index: 3;
}

.pay-field.visible {
    opacity: 1;
    transform: translateY(0);
}

.pay-field-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}

.pay-field-value {
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.pay-select-arrow {
    color: var(--text-muted);
    font-size: 10px;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pay-field-value.focused {
    border-color: rgba(46,204,113,0.35);
    background: rgba(46,204,113,0.04);
}

.pay-field-value.dropdown-open {
    border-color: rgba(46,204,113,0.35);
    border-radius: 12px 12px 0 0;
    border-bottom-color: rgba(255,255,255,0.04);
    background: rgba(46,204,113,0.04);
}

.pay-field-value.dropdown-open .pay-select-arrow {
    transform: rotate(180deg);
}

.pay-field-placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.pay-type-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--accent2);
    animation: payCursorBlink 0.7s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 1px;
}

@keyframes payCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.pay-field-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: #12141a;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.pay-field-options.open {
    max-height: 200px;
    opacity: 1;
}

.pay-field-option {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
    cursor: default;
}

.pay-field-option + .pay-field-option {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.pay-field-option.highlighted {
    background: rgba(46,204,113,0.12);
    color: var(--accent2);
    font-weight: 600;
}

.pay-terminal-footer {
    height: 48px;
    display: flex;
    align-items: center;
}

.pay-terminal-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: default;
    user-select: none;
    background: rgba(46,204,113,0.14);
    color: var(--accent2);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pay-terminal-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.pay-terminal-btn:hover {
    background: rgba(46,204,113,0.22);
    box-shadow: 0 0 0 1px rgba(46,204,113,0.3);
}

.pay-terminal-btn:active {
    transform: scale(0.97);
    background: rgba(46,204,113,0.3);
    box-shadow: 0 0 0 2px rgba(46,204,113,0.5);
}

.pay-terminal-btn.loading {
    opacity: 0.5;
    background: rgba(46,204,113,0.08);
    color: rgba(46,204,113,0.5);
    pointer-events: none;
}

.pay-terminal-btn.loading:hover {
    box-shadow: none;
    background: rgba(46,204,113,0.08);
}

.pay-terminal-success {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    height: 48px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent2);
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pay-terminal-success.visible {
    opacity: 1;
    transform: scale(1);
}

.pay-success-check {
    font-size: 18px;
}

/* QIWI Easter Egg */
.pay-terminal.qiwi-mode {
    background: linear-gradient(170deg, #ff6b00 0%, #ff8c1a 40%, #e85d00 100%);
    border: 3px solid #cc5500;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255,107,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    animation: qiwiAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 450px;
}

@keyframes qiwiAppear {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.pay-terminal.qiwi-mode::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.04) 3px,
        rgba(0,0,0,0.04) 6px
    );
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
}

.qiwi-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 2px dashed rgba(255,255,255,0.25);
    margin-bottom: 16px;
}

.qiwi-header-left {
    text-align: left;
}

.qiwi-close-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.qiwi-close-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.qiwi-close-btn:active {
    transform: scale(0.9);
    background: rgba(255,0,0,0.3);
}

.qiwi-logo {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.qiwi-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 1px;
}

.qiwi-field {
    margin-bottom: 10px;
}

.qiwi-field-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.qiwi-field-input {
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 10px 14px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

.qiwi-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 14px;
    background: linear-gradient(180deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border: 2px solid #2E7D32;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    cursor: default;
    user-select: none;
}

.qiwi-receipt {
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.pay-terminal.qiwi-mode .pay-terminal-footer {
    height: auto;
}

.pay-terminal.qiwi-mode .pay-terminal-header,
.pay-terminal.qiwi-mode .pay-terminal-body,
.pay-terminal.qiwi-mode .pay-terminal-footer {
    position: relative;
    z-index: 2;
    padding: 0;
    gap: 0;
}

.qiwi-menu {
    position: relative;
    height: 234px;
}

.qiwi-menu-btn {
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    box-shadow: none;
    transition: transform 0.15s ease, filter 0.15s ease;
    animation: qiwiMenuIn 0.4s cubic-bezier(0.34,1.56,0.64,1) backwards;
}

.qiwi-menu-btn:nth-child(1) { top: 0; z-index: 3; }
.qiwi-menu-btn:nth-child(2) { top: 82px; z-index: 2; }
.qiwi-menu-btn:nth-child(3) { top: 164px; z-index: 1; }

.qiwi-menu-btn:hover {
    filter: brightness(1.15);
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: -2px;
}

.qiwi-menu-btn:active {
    transform: scale(0.97);
    filter: brightness(0.85);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
    outline: 2px solid rgba(255,255,255,0.7);
    outline-offset: -2px;
}

.qiwi-menu-btn:nth-child(2) { animation-delay: 0.1s; }
.qiwi-menu-btn:nth-child(3) { animation-delay: 0.2s; }

@keyframes qiwiMenuIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.qiwi-menu-blue {
    background: linear-gradient(180deg, #5b9bd5 0%, #2e75b6 50%, #1f4e79 100%);
    border: 2px solid #1a3f66;
}

.qiwi-menu-orange {
    background: linear-gradient(180deg, #ffb347 0%, #ff8c00 50%, #e06c00 100%);
    border: 2px solid #b85500;
}

.qiwi-menu-icon {
    font-size: 22px;
    width: 32px;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.qiwi-menu-icon-text {
    font-size: 14px;
    font-weight: 900;
    width: 32px;
    text-align: center;
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.qiwi-menu-divider {
    width: 2px;
    height: 22px;
    background: rgba(255,255,255,0.4);
    border-radius: 1px;
}

.qiwi-menu-text {
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.qiwi-back-btn {
    background: linear-gradient(180deg, #666 0%, #444 100%) !important;
    border-color: #333 !important;
    font-size: 13px !important;
    letter-spacing: 1px;
}

.qiwi-back-btn:hover {
    filter: brightness(1.2);
}

.qiwi-back-btn:active {
    filter: brightness(0.8);
    transform: scale(0.97);
}

.pay-terminal.qiwi-mode .pay-terminal-body {
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.qiwi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

.qiwi-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    border-radius: 10px;
    background: linear-gradient(180deg, #6aabdf 0%, #3a82c4 50%, #1f5fa0 100%);
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    user-select: none;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: filter 0.15s ease, transform 0.1s ease;
    animation: qiwiMenuIn 0.3s cubic-bezier(0.34,1.56,0.64,1) backwards;
    min-height: 70px;
}

.qiwi-tile:nth-child(2) { animation-delay: 0.05s; }
.qiwi-tile:nth-child(3) { animation-delay: 0.1s; }
.qiwi-tile:nth-child(4) { animation-delay: 0.15s; }
.qiwi-tile:nth-child(5) { animation-delay: 0.2s; }
.qiwi-tile:nth-child(6) { animation-delay: 0.25s; }
.qiwi-tile:nth-child(7) { animation-delay: 0.3s; }
.qiwi-tile:nth-child(8) { animation-delay: 0.35s; }

.qiwi-tile:hover {
    filter: brightness(1.15);
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: -2px;
}

.qiwi-tile:active {
    transform: scale(0.95);
    filter: brightness(0.85);
}

.qiwi-tile-icon {
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.qiwi-tile-text {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    line-height: 1.2;
}

/* Dots indicator */
.pay-dots {
    display: none;
}

.pay-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.pay-dot.active {
    background: var(--accent2);
    box-shadow: 0 0 8px rgba(46,204,113,0.4);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--wide { grid-column: span 2; }
    .locations-wrap { flex-direction: column; align-items: stretch; }
    .ai-wrap { flex-direction: column; align-items: stretch; }
    .pay-block { flex-direction: column; align-items: stretch; }
    .referral-wrap { grid-template-columns: 1fr; }
    .referral-visual { order: -1; }
    .referral-card-stack { height: 260px; }
    .cta-box { padding: 60px 40px; }

    #locations .container {
        padding: 0;
    }

    #locations .locations-wrap {
        position: relative;
        overflow: hidden;
        padding: 0 24px;
    }

    #locations .locations-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(12,14,18,0.5);
        z-index: 0;
        pointer-events: none;
    }

    .globe-container {
        position: absolute;
        inset: 0;
        aspect-ratio: auto;
        min-height: 0;
        max-height: none;
        z-index: 0;
        opacity: 0.3;
        filter: blur(4px);
        transition: opacity 0.8s ease, filter 0.8s ease;
    }

    .globe-container.globe-ee-active {
        opacity: 1;
        filter: none;
        z-index: 10;
    }

    .locations-info.globe-ee-hidden {
        opacity: 0 !important;
        pointer-events: none;
        transition: opacity 0.8s ease;
    }

    .locations-info {
        position: relative;
        z-index: 1;
    }

    #ai .ai-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    #ai .ai-info {
        display: contents;
    }

    #ai .ai-info .section-label { order: 1; width: fit-content; align-self: flex-start; }
    #ai .ai-info .section-badge--dev { order: 1; align-self: flex-start; margin-left: 0; margin-bottom: 8px; }
    #ai .ai-info .section-title { order: 2; }
    #ai .ai-info .section-desc { display: none; }
    #ai .ai-demo-wrap { order: 3; width: 100%; flex: none; }
    #ai .ai-info .product-features { display: none; }

    #ai .ai-demo {
        border-color: rgba(230,126,34,0.08);
    }

    #ai .ai-demo-header { display: none; }
    #ai .ai-demo-footer { display: none; }

    #ai .ai-demo {
        display: flex;
        flex-direction: column;
        min-height: 400px;
    }
    #ai .ai-demo-body {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    #ai .ai-demo-output {
        padding: 20px;
        background: rgba(255,255,255,0.02);
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255,255,255,0.04);
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-secondary);
    }
    #ai .ai-demo-output .ai-output-header {
        font-size: 17px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }
    #ai .ai-demo-output .ai-output-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #ai .ai-demo-output .ai-output-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    #ai .ai-demo-output .ai-output-list li::before {
        content: '•';
        color: #e67e22;
        font-weight: 700;
        font-size: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(12,14,18,0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                    visibility 0.3s;
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        visibility: visible;
    }

    .nav-mobile-toggle { display: block; }

    .nav.scrolled .nav-inner {
        border-radius: 20px;
        padding: 8px 16px;
    }

    .nav.scrolled .nav-links.open {
        border-radius: 16px;
    }

    .nav-cta-group {
        flex-direction: row;
        width: 100%;
    }

    .nav-cta {
        justify-content: center;
        flex: 1;
    }

    .steps { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--wide { grid-column: span 1; }

    .ai-info,
    .ai-demo-wrap,
    .pay-info,
    .pay-terminal-wrap,
    .locations-info {
        width: 100%;
        flex: none;
    }

    .ai-demo-body { height: 300px; }
    .ai-demo-tabs { gap: 2px; }
    .ai-demo-tab { padding: 5px 8px; font-size: 11px; }
    .ai-demo-tab svg { display: none; }
    .ai-demo-models-row { display: none; }
    .ai-image-grid { grid-template-columns: 1fr 1fr; gap: 6px; }

    .ai-demo {
        border-radius: var(--radius-sm);
    }




    .cta-box { padding: 48px 24px; border-radius: var(--radius); }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .section { padding: 80px 0; }
    .referral-card-stack { height: 220px; }
    .referral-float-card { padding: 20px; }
    .ref-card-value { font-size: 24px; }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary, .btn-telegram { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .ai-demo-body { height: 280px; padding: 14px; }
    .pay-terminal-body { gap: 10px; }
    .pay-field-value { padding: 10px 12px; font-size: 13px; }
}

/* ═══════════════ AI DEMO — WINDOWS XP EASTER EGG ═══════════════ */
.ai-demo.xp-mode {
    position: relative;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    animation: xpAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 400px;
}

@keyframes xpAppear {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.xp-easter-egg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.xp-window {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.3);
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
}

.xp-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    background: linear-gradient(180deg, #0a246a 0%, #3a6ea5 8%, #0a246a 20%, #1867c7 60%, #3a6ea5 95%, #0a246a 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-height: 28px;
    user-select: none;
}

.xp-titlebar-icon { font-size: 14px; }

.xp-titlebar-text {
    flex: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
}

.xp-titlebar-buttons {
    display: flex;
    gap: 2px;
}

.xp-titlebar-buttons button {
    width: 21px;
    height: 21px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.xp-btn-min, .xp-btn-max {
    background: linear-gradient(180deg, #558abb 0%, #3d73a7 50%, #2d5f95 100%);
}

.xp-btn-close {
    background: linear-gradient(180deg, #c45544 0%, #b33525 50%, #9c2a1c 100%);
}

.xp-btn-close:hover {
    background: linear-gradient(180deg, #e06050 0%, #d04535 50%, #c03020 100%);
}

.xp-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.xp-bliss {
    position: absolute;
    inset: 0;
    background: url('/assets/img/xp-bliss.jpg') center/cover no-repeat;
}

.xp-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 20px 20px 30px;
}

.xp-clippy-gif {
    width: 110px;
    height: auto;
    display: block;
    filter: drop-shadow(2px 3px 6px rgba(0,0,0,0.25));
    animation: clippyBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes clippyBounce {
    from { transform: translateY(30px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.xp-speech-bubble {
    position: relative;
    background: #ffffe1;
    border: 1px solid #2e2e2e;
    border-radius: 6px;
    padding: 12px 16px;
    max-width: 280px;
    min-width: 180px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
    z-index: 5;
    margin-bottom: 10px;
    display: none;
}

.xp-speech-bubble.visible {
    display: block;
    animation: bubbleIn 0.3s ease-out both;
}

@keyframes bubbleIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.xp-speech-bubble::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #2e2e2e;
}

.xp-speech-bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #ffffe1;
}

.xp-speech-text {
    font-size: 13px;
    font-family: 'Tahoma', 'Segoe UI', sans-serif;
    color: #222;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

.xp-taskbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    background: linear-gradient(180deg, #1f56c5 0%, #245edb 15%, #3c80e8 40%, #3675d5 60%, #2258b7 85%, #1a4da0 100%);
    min-height: 30px;
    border-top: 1px solid #0c3c8c;
}

.xp-start-btn {
    padding: 3px 14px 3px 6px;
    background: linear-gradient(180deg, #40a340 0%, #2d8f2d 40%, #288a28 60%, #1d7a1d 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tahoma', sans-serif;
    border-radius: 0 8px 8px 0;
    border: 1px solid #1a6e1a;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    cursor: default;
    user-select: none;
}

.xp-taskbar-item {
    flex: 1;
    padding: 3px 12px;
    background: linear-gradient(180deg, #3a7ad9 0%, #2866c2 50%, #2d6fd3 100%);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xp-taskbar-clock {
    padding: 3px 10px;
    background: linear-gradient(180deg, #1a8dd6 0%, #1578b8 50%, #126ca8 100%);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    font-family: 'Tahoma', sans-serif;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* BSOD — Windows XP style */
.xp-bsod {
    position: absolute;
    inset: 0;
    background: #000088;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 100;
    border-radius: inherit;
    animation: bsodFlash 0.15s ease-out;
}

@keyframes bsodFlash {
    0% { opacity: 0; }
    30% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.xp-bsod-text {
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 10px;
    color: #b0b0b0;
    line-height: 1.5;
    max-width: 420px;
    text-shadow: none;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .pay-terminal.qiwi-mode {
        height: 400px;
        padding: 14px;
    }
    .qiwi-logo { font-size: 18px; letter-spacing: 2px; }
    .qiwi-sub { font-size: 10px; }
    .qiwi-header { padding-bottom: 10px; margin-bottom: 12px; }
    .qiwi-menu { height: 200px; }
    .qiwi-menu-btn {
        height: 58px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 29px;
        gap: 10px;
    }
    .qiwi-menu-btn:nth-child(1) { top: 0; }
    .qiwi-menu-btn:nth-child(2) { top: 70px; }
    .qiwi-menu-btn:nth-child(3) { top: 140px; }
    .qiwi-menu-icon { font-size: 18px; width: 26px; }
    .qiwi-grid { grid-template-columns: 1fr 1fr; gap: 5px; }
    .qiwi-tile { min-height: 56px; padding: 8px 4px; }
    .qiwi-tile-icon { font-size: 18px; }
    .qiwi-tile-text { font-size: 9px; }
    .qiwi-field-input { font-size: 13px; padding: 8px 10px; }
    .qiwi-field-label { font-size: 9px; }
    .qiwi-btn { padding: 10px; font-size: 13px; margin-top: 10px; }
    .pay-terminal.qiwi-mode .pay-terminal-body { max-height: 240px; }

    .ai-demo.xp-mode { min-height: 380px; }
    .xp-clippy-gif { width: 80px; }
    .xp-speech-bubble { max-width: 200px; padding: 10px 12px; min-width: 140px; }
    .xp-speech-text { font-size: 11px; }
    .xp-bsod { padding: 20px 24px; }
    .xp-bsod-text { font-size: 9px; }
    .xp-content { padding: 12px 12px 20px; }
}

@media (max-width: 480px) {
    .pay-terminal.qiwi-mode {
        height: 370px;
        padding: 10px;
    }
    .qiwi-logo { font-size: 16px; }
    .qiwi-sub { font-size: 9px; }
    .qiwi-header { padding-bottom: 8px; margin-bottom: 10px; }
    .qiwi-menu { height: 180px; }
    .qiwi-menu-btn {
        height: 52px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 26px;
        gap: 8px;
    }
    .qiwi-menu-btn:nth-child(1) { top: 0; }
    .qiwi-menu-btn:nth-child(2) { top: 62px; }
    .qiwi-menu-btn:nth-child(3) { top: 124px; }
    .qiwi-menu-icon { font-size: 16px; width: 22px; }
    .qiwi-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
    .qiwi-tile { min-height: 48px; padding: 6px 3px; }
    .qiwi-tile-icon { font-size: 16px; }
    .qiwi-tile-text { font-size: 8px; }
    .qiwi-field-input { font-size: 12px; padding: 7px 8px; }
    .qiwi-field-label { font-size: 8px; }
    .qiwi-btn { padding: 8px; font-size: 11px; margin-top: 8px; letter-spacing: 1px; }
    .pay-terminal.qiwi-mode .pay-terminal-body { max-height: 200px; }

    .ai-demo.xp-mode { min-height: 360px; }
    .xp-bsod { padding: 16px 20px; }
    .xp-bsod-text { font-size: 8px; max-width: 300px; }
}
