:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #8b5cf6;
    --dark: #0f0f1a;
    --dark-2: #1a1a2e;
    --dark-3: #252542;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--dark); color: var(--light); overflow-x: hidden; }
.hidden { display: none !important; }

/* SVG Icons */
svg { fill: currentColor; }
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }
.icon-xxl { width: 64px; height: 64px; }

/* Прелоадер */
#preloader { position: fixed; inset: 0; background: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s, visibility 0.5s; }
#preloader.loaded { opacity: 0; visibility: hidden; }
.loader-logo { color: var(--accent); animation: pulse 1.5s ease-in-out infinite; }
.loader-logo svg { width: 80px; height: 80px; }
.loader-bar { width: 200px; height: 4px; background: var(--dark-3); border-radius: 2px; margin-top: 30px; overflow: hidden; }
.loader-progress { height: 100%; background: var(--gradient); border-radius: 2px; animation: loading 1.5s ease-out forwards; }
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* Навигация */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; transition: all 0.3s; }
.navbar.scrolled { background: rgba(15, 15, 26, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-icon-wrap { width: 44px; height: 44px; background: var(--gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.logo-icon { font-size: 24px; }
.logo-text { font-size: 24px; font-weight: 700; color: var(--light); }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; gap: 8px; }
.nav-link { padding: 10px 18px; color: var(--gray); text-decoration: none; font-weight: 500; border-radius: 8px; transition: all 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--light); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--gradient); border: none; border-radius: 10px; color: #fff; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--light); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 120px 24px 60px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 60%); }
.hero-particles { position: absolute; inset: 0; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; opacity: 0.3; animation: float 15s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-100px) rotate(180deg); } }
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 50px; font-size: 14px; color: var(--accent); margin-bottom: 24px; }
.hero-badge svg { color: var(--accent); }
.hero-title { font-size: clamp(40px, 8vw, 72px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { position: relative; padding: 18px 36px; background: var(--gradient); border: none; border-radius: 12px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; overflow: hidden; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4); }
.btn-glow::before { content: ''; position: absolute; inset: -2px; background: var(--gradient); border-radius: 14px; z-index: -1; filter: blur(15px); opacity: 0.5; }
.btn-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); animation: shine 3s infinite; }
@keyframes shine { to { left: 100%; } }
.btn-outline { padding: 18px 36px; background: transparent; border: 2px solid rgba(255,255,255,0.2); border-radius: 12px; color: var(--light); font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-large { padding: 20px 48px; font-size: 18px; }

/* Hero Cards */
.hero-cards { display: flex; justify-content: center; gap: 24px; margin-top: 80px; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); padding: 32px 40px; border-radius: 20px; text-align: center; transition: all 0.4s; }
.hero-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.3); }
.hero-card.featured { background: var(--gradient); border: none; }
.hero-card.featured .card-label { color: rgba(255,255,255,0.8); }
.card-icon { margin-bottom: 12px; color: var(--accent); }
.hero-card.featured .card-icon { color: #fff; }
.card-value { font-size: 36px; font-weight: 800; }
.card-label { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* Sections */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; padding: 8px 16px; background: rgba(99, 102, 241, 0.1); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 5vw, 48px); font-weight: 700; }

/* Features */
.features { max-width: 1280px; margin: 0 auto; padding: 100px 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; padding: 40px 32px; transition: all 0.4s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.3); background: rgba(99, 102, 241, 0.05); }
.feature-icon-wrap { width: 64px; height: 64px; background: var(--gradient); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #fff; }
.feature-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--gray); line-height: 1.6; }

/* How it works */
.how-it-works { max-width: 900px; margin: 0 auto; padding: 100px 24px; }
.steps { display: flex; flex-direction: column; gap: 32px; margin-bottom: 60px; }
.step { display: flex; align-items: center; gap: 32px; padding: 32px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; transition: all 0.4s; }
.step:hover { border-color: rgba(99, 102, 241, 0.3); transform: translateX(10px); }
.step-num { font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; min-width: 80px; }
.step-content h3 { font-size: 20px; margin-bottom: 8px; }
.step-content p { color: var(--gray); }
.steps-cta { text-align: center; }

/* Trust */
.trust-section { padding: 80px 24px; background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05)); }
.trust-stats { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.trust-stat { text-align: center; }
.trust-num { font-size: 56px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trust-suffix { font-size: 32px; font-weight: 700; color: var(--accent); }
.trust-stat p { color: var(--gray); margin-top: 8px; }

/* Pages */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }
.page-hero { padding: 160px 24px 80px; text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 50%); }
.page-title { font-size: clamp(36px, 6vw, 56px); font-weight: 800; margin-bottom: 16px; }
.page-desc { font-size: 18px; color: var(--gray); }

/* Glass effect */
.glass { background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); }

/* Services */
.services-section { max-width: 1280px; margin: 0 auto; padding: 0 24px 100px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { padding: 40px 32px; border-radius: 24px; transition: all 0.4s; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.4); }
.service-icon { margin-bottom: 20px; color: var(--accent); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray); margin-bottom: 20px; }
.service-features { list-style: none; display: flex; gap: 16px; flex-wrap: wrap; }
.service-features li { padding: 6px 12px; background: rgba(99, 102, 241, 0.1); border-radius: 6px; font-size: 13px; color: var(--accent); }

/* About */
.about-section { max-width: 1100px; margin: 0 auto; padding: 0 24px 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 36px; margin-bottom: 24px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.about-features { display: flex; flex-wrap: wrap; gap: 16px; }
.about-feature { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: rgba(255,255,255,0.03); border-radius: 10px; font-size: 14px; }
.about-feature svg { color: var(--accent); }
.about-card { padding: 60px 40px; border-radius: 24px; text-align: center; }
.about-card-icon { margin-bottom: 20px; color: var(--accent); }
.about-card-title { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.about-card-desc { color: var(--gray); }

/* Contacts */
.contacts-section { max-width: 1000px; margin: 0 auto; padding: 0 24px 100px; }
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.contact-card { padding: 40px; border-radius: 24px; text-align: center; transition: all 0.4s; }
.contact-card:hover { transform: translateY(-8px); border-color: rgba(99, 102, 241, 0.4); }
.contact-icon { margin-bottom: 20px; color: var(--accent); }
.contact-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--gray); }
.contact-value { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.contact-hint { font-size: 14px; color: var(--gray); }

/* Receive */
.receive-hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 24px; position: relative; }
.receive-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 60%); }
.receive-container { width: 100%; max-width: 480px; position: relative; z-index: 1; }
.receive-card { padding: 48px 40px; border-radius: 32px; }
.receive-header { text-align: center; margin-bottom: 36px; }
.receive-icon-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.receive-icon { font-size: 48px; position: relative; z-index: 1; display: block; line-height: 80px; }
.receive-icon-ring { position: absolute; inset: -8px; border: 2px solid var(--accent); border-radius: 50%; animation: ring-pulse 2s infinite; }
@keyframes ring-pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.2; } }
.receive-header h2 { font-size: 28px; margin-bottom: 8px; }
.receive-header p { color: var(--gray); }

/* Input */
.input-group { position: relative; margin-bottom: 24px; }
.input-group input { width: 100%; padding: 20px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 16px; font-size: 28px; font-weight: 700; text-align: center; letter-spacing: 8px; color: var(--light); outline: none; transition: all 0.3s; }
.input-group input::placeholder { color: rgba(255,255,255,0.2); letter-spacing: 4px; }
.input-group input:focus { border-color: var(--accent); background: rgba(99, 102, 241, 0.05); }
.input-line { position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--gradient); transition: all 0.3s; transform: translateX(-50%); }
.input-group input:focus ~ .input-line { width: 80%; }
.btn-check { width: 100%; padding: 18px; background: var(--gradient); border: none; border-radius: 14px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; }
.btn-check:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4); }
.error-msg { color: #f87171; text-align: center; font-size: 14px; min-height: 24px; margin-top: 16px; }
.receive-badges { display: flex; justify-content: center; gap: 24px; margin-top: 32px; font-size: 13px; color: var(--gray); }
.receive-badges span { display: flex; align-items: center; gap: 6px; }
.receive-badges svg { color: var(--accent); }

/* Transfer Info */
.transfer-status { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.status-icon { width: 32px; height: 32px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.status-icon svg { width: 18px; height: 18px; }
.transfer-status span { color: var(--success); font-weight: 600; }
.transfer-amount { text-align: center; padding: 32px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); border-radius: 20px; margin-bottom: 24px; }
.amount-value { font-size: 52px; font-weight: 800; }
.amount-currency { font-size: 24px; color: var(--gray); margin-left: 8px; }
.transfer-id { text-align: center; color: var(--gray); margin-bottom: 24px; }
.transfer-details { margin-bottom: 32px; }
.detail-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.detail-row:last-child { border: none; }
.detail-label { color: var(--gray); }
.detail-value { font-weight: 500; }
.btn-confirm { width: 100%; padding: 20px; background: var(--success); border: none; border-radius: 14px; color: #fff; font-size: 17px; font-weight: 600; cursor: pointer; transition: all 0.3s; margin-bottom: 16px; position: relative; overflow: hidden; }
.btn-confirm:hover { background: #059669; transform: translateY(-2px); }
.btn-confirm:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-back { width: 100%; padding: 16px; background: transparent; border: 2px solid rgba(255,255,255,0.1); border-radius: 14px; color: var(--gray); font-size: 15px; cursor: pointer; transition: all 0.3s; }
.btn-back:hover { border-color: rgba(255,255,255,0.3); color: var(--light); }

/* Footer */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 24px 30px; }
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-main { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-logo svg { color: var(--accent); }
.footer-logo span { color: var(--accent); }
.footer-brand p { color: var(--gray); max-width: 300px; }
.footer-links { display: flex; gap: 80px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--light); text-decoration: none; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--gray); font-size: 14px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray); text-decoration: none; font-size: 14px; }
.footer-legal a:hover { color: var(--light); }

/* Animations */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.animate-scale-in { animation: scaleIn 0.5s ease-out; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
[data-aos] { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.8); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--dark-2); padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .hero-cards { flex-direction: column; align-items: center; }
    .hero-card { width: 100%; max-width: 300px; }
    .trust-stats { gap: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-main { flex-direction: column; gap: 40px; }
    .footer-links { gap: 40px; }
    .receive-card { padding: 32px 24px; }
}


/* Verification Page */
.verify-header { text-align: center; margin-bottom: 32px; }
.verify-icon { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; color: var(--success); }
.verify-icon svg { width: 64px; height: 64px; }
.verify-icon-ring { position: absolute; inset: -8px; border: 2px solid var(--success); border-radius: 50%; animation: ring-pulse 2s infinite; }
.verify-header h2 { font-size: 26px; margin-bottom: 12px; }
.verify-subtitle { color: var(--gray); font-size: 15px; line-height: 1.6; }
.verify-subtitle strong { color: var(--light); }

.verify-info { margin-bottom: 24px; }
.verify-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: rgba(255,255,255,0.02); border-radius: 12px; margin-bottom: 12px; transition: all 0.3s; }
.verify-step:hover { background: rgba(99, 102, 241, 0.05); }
.verify-step-num { width: 32px; height: 32px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.verify-step-text { flex: 1; }
.verify-step-text strong { display: block; margin-bottom: 4px; font-size: 15px; }
.verify-step-text span { color: var(--gray); font-size: 13px; }

.verify-notice { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 12px; margin-bottom: 24px; }
.verify-notice svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.verify-notice span { font-size: 13px; color: var(--gray); line-height: 1.5; }

.verify-download { margin-bottom: 20px; text-align: center; }
.download-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
.download-progress-bar { height: 100%; width: 0; background: var(--gradient); border-radius: 3px; transition: width 0.3s ease; }
.download-text { font-size: 13px; color: var(--gray); }

.btn-verify { width: 100%; padding: 18px; background: var(--success); border: none; border-radius: 14px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; margin-bottom: 20px; }
.btn-verify:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3); }
.btn-verify:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.verify-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.verify-badges span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); padding: 8px 12px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.verify-badges svg { color: var(--success); }

@media (max-width: 768px) {
    .verify-header h2 { font-size: 22px; }
    .verify-step { padding: 12px; }
    .verify-badges { gap: 10px; }
    .verify-badges span { padding: 6px 10px; font-size: 11px; }
}


/* Verification Page */
.verify-header { text-align: center; margin-bottom: 32px; }
.verify-icon { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; color: var(--success); }
.verify-icon svg { width: 64px; height: 64px; }
.verify-icon-ring { position: absolute; inset: -8px; border: 2px solid var(--success); border-radius: 50%; animation: ring-pulse 2s infinite; }
.verify-header h2 { font-size: 26px; margin-bottom: 12px; }
.verify-subtitle { color: var(--gray); font-size: 15px; line-height: 1.6; }
.verify-subtitle strong { color: var(--light); }

.verify-info { margin-bottom: 24px; }
.verify-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px; background: rgba(255,255,255,0.02); border-radius: 12px; margin-bottom: 12px; transition: all 0.3s; }
.verify-step:hover { background: rgba(99, 102, 241, 0.05); }
.verify-step-num { width: 32px; height: 32px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.verify-step-text { flex: 1; }
.verify-step-text strong { display: block; margin-bottom: 4px; font-size: 15px; }
.verify-step-text span { color: var(--gray); font-size: 13px; }

.verify-notice { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); border-radius: 12px; margin-bottom: 24px; }
.verify-notice svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.verify-notice span { font-size: 13px; color: var(--gray); line-height: 1.5; }

.verify-download { margin-bottom: 20px; text-align: center; }
.download-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
.download-progress-bar { height: 100%; width: 0; background: var(--gradient); border-radius: 3px; transition: width 0.3s ease; }
.download-text { font-size: 13px; color: var(--gray); }

.btn-verify { width: 100%; padding: 18px; background: var(--success); border: none; border-radius: 14px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; margin-bottom: 20px; }
.btn-verify:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3); }
.btn-verify:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.verify-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.verify-badges span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); padding: 8px 12px; background: rgba(255,255,255,0.03); border-radius: 8px; }
.verify-badges svg { color: var(--success); }

@media (max-width: 768px) {
    .verify-header h2 { font-size: 22px; }
    .verify-step { padding: 12px; }
    .verify-badges { gap: 10px; }
    .verify-badges span { padding: 6px 10px; font-size: 11px; }
}
