*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f0eefb;
  --bg2:       #e8e4f8;
  --surface:   #ffffff;
  --surface2:  #f7f5fd;
  --border:    rgba(140,110,220,0.18);
  --accent:    #7c5cbf;
  --accent2:   #a07de0;
  --accent3:   #c9b8f0;
  --text:      #1a1530;
  --text2:     #5a5070;
  --text3:     #9088a8;
  --tg:        #229ED9;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(100,70,200,0.10);
  --shadow-lg: 0 8px 48px rgba(100,70,200,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── BACKGROUND BLOBS ─────────────────────────────── */
.bg-blob {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.35;
}
.bg-blob-1 { width: 500px; height: 500px; background: #c3b0f0; top: -100px; left: -150px; }
.bg-blob-2 { width: 400px; height: 400px; background: #f5c6e0; bottom: 10%; right: -100px; }
.bg-blob-3 { width: 350px; height: 350px; background: #b8d8f0; bottom: 30%; left: -80px; }

/* ── CONTAINER ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── HEADER ────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease;
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 24px; max-width: 1180px; margin: 0 auto;
}
.header.scrolled {
  background: rgba(240,238,251,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.logo {
  display: inline-block;
}

.nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: all .2s;
}
.nav a:hover { background: var(--surface); color: var(--accent); }

.header-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.btn-header {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 10px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.btn-header-primary { background: var(--accent); color: #fff; }
.btn-header-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-header-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-header-ghost:hover { border-color: var(--accent3); color: var(--accent); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(320px, 85vw);
  background: var(--surface); z-index: 2000; padding: 80px 28px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,.12); transition: right .35s ease;
}
.mobile-nav.open { right: 0; display: flex;}
.mobile-nav a {
  font-size: 16px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mob-close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--bg2); border-radius: 50%; cursor: pointer; border: none; font-size: 18px;
}
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1999; background: rgba(0,0,0,.3);
}
.nav-overlay.open { display: block; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px;
  background: url('../images/background.png') center/cover no-repeat;
  position: relative;
}
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,92,191,0.12); border: 1px solid var(--accent3);
  color: var(--accent); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 6vw, 68px); font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-desc {
  font-size: 17px; color: var(--text2); line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
}
.hero-desc strong { color: var(--text); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,92,191,.35);
  transition: all .25s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,92,191,.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); color: var(--text);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1px solid var(--border);
  transition: all .25s;
}
.btn-secondary:hover { border-color: var(--accent3); color: var(--accent); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--accent);
}
.hero-stat-label { font-size: 13px; color: var(--text3); margin-top: 2px; }

/* ── SECTION SHARED ────────────────────────────────── */
.section { padding: 96px 0; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4vw, 40px); font-weight: 700; line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-desc { font-size: 16px; color: var(--text2); line-height: 1.7; max-width: 580px; }

/* ── ABOUT ─────────────────────────────────────────── */
.about { background: var(--surface); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text p { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { color: var(--text); }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border);
}
.about-card-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 4px;
}
.about-card-label { font-size: 13px; color: var(--text2); }

/* ── LINKS ─────────────────────────────────────────── */
.links-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 24px; padding: 48px; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.links-hero-text h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.links-hero-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--accent);
  padding: 13px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: all .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.links-domains {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
  margin-bottom: 40px;
}
.links-domain-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  box-shadow: var(--shadow);
}
.links-domain-card-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text3); margin-bottom: 16px;
}
.domain-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}
.domain-dot.onion { background: var(--accent3); box-shadow: 0 0 6px var(--accent3); }
.links-domain-card a {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 10px 12px; border-radius: 8px; transition: all .2s;
  border: 1px solid transparent;
}
.links-domain-card a:hover { background: var(--bg); border-color: var(--accent3); color: var(--accent); }
.links-domain-card a + a { margin-top: 4px; }

.tg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.tg-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border-radius: var(--radius);
  padding: 20px 24px; text-decoration: none; color: var(--text);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all .25s;
}
.tg-card:hover { border-color: #229ED9; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(34,158,217,.15); }
.tg-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #229ED9, #1a7fc0);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tg-icon img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.tg-card-label { font-size: 11px; color: var(--text3); margin-bottom: 2px; font-weight: 500; }
.tg-card-name { font-size: 15px; font-weight: 600; }

/* ── BYPASS ────────────────────────────────────────── */
.bypass { background: var(--surface); }
.bypass-tabs-nav {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.bypass-tab-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: var(--bg); border: 2px solid transparent;
  font-size: 14px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all .2s;
}
.bypass-tab-btn svg { width: 18px; height: 18px; opacity: .6; fill: currentColor; }
.bypass-tab-btn:hover { border-color: var(--accent3); color: var(--accent); }
.bypass-tab-btn:hover svg { opacity: 1; }
.bypass-tab-btn.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.bypass-tab-btn.active svg { opacity: 1; fill: #fff; }

.bypass-panel { display: none; }
.bypass-panel.active { display: block; }

.bypass-platform-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.bypass-platform-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--bg2);
}
.bypass-platform-title img { width: 20px; height: 20px; }

.bypass-app {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 12px;
  border: 1px solid var(--border); transition: border-color .2s;
}
.bypass-app:hover { border-color: var(--accent3); }
/*.bypass-app-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent3), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}*/
.bypass-app-icon img { width: 44px; height: 44px; }
.bypass-app-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.bypass-app-desc { font-size: 12px; color: var(--text3); line-height: 1.5; margin-bottom: 8px; }
.bypass-app-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-decoration: none; background: rgba(124,92,191,.1);
  padding: 4px 10px; border-radius: 6px; transition: all .2s;
}
.bypass-app-link:hover { background: var(--accent); color: #fff; }
.bypass-app-link img { width: 14px; height: 14px; display: inline; margin-left: 2px; }

/* extensions tab */
.ext-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.ext-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 20px; border: 1px solid var(--border);
}
.ext-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
/*.ext-logo {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}*/
.ext-logo img { width: 42px; height: 42px; }
.ext-name { font-size: 15px; font-weight: 700; }
.ext-desc { font-size: 13px; color: var(--text2); line-height: 1.5; margin-bottom: 14px; }
.ext-browsers { display: flex; flex-wrap: wrap; gap: 6px; }
.ext-browser-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 5px 11px;
  border-radius: 6px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text2);
  text-decoration: none; transition: all .2s;
}
.ext-browser-btn:hover { border-color: var(--accent); color: var(--accent); }
.ext-browser-btn img { width: 16px; height: 16px; }

/* antidetect */
.antidetect-card {
  background: linear-gradient(135deg, #1a1530 0%, #2a1f4a 100%);
  border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(124,92,191,.4); color: #fff; margin-top: 24px;
}
.antidetect-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,92,191,.3); border: 1px solid rgba(124,92,191,.5);
  color: var(--accent3); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.antidetect-card h4 { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.antidetect-card p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 16px; }
.btn-antidetect {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; padding: 10px 20px;
  border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none;
  transition: all .2s;
}
.btn-antidetect:hover { background: var(--accent2); }

/* ── SAFETY ────────────────────────────────────────── */
.safety-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.safety-desc-text {
  font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 24px;
}
.safety-tip {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 16px; border: 1px solid var(--border); margin-bottom: 12px;
}
.safety-tip-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(124,92,191,.12); display: flex; align-items: center; justify-content: center;
}
.safety-tip-icon img { width: 20px; height: 20px; }
.safety-tip-title { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.safety-tip-text { font-size: 12px; color: var(--text3); line-height: 1.5; }

.crypto-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.crypto-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); transition: all .25s; text-decoration: none; color: var(--text);
}
.crypto-card:hover { border-color: var(--accent3); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.crypto-icon img { width: 28px; height: 28px; flex-shrink: 0; }
.crypto-name { font-size: 14px; font-weight: 700; }
.crypto-ticker { font-size: 12px; color: var(--text3); }
.crypto-note { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ── BUYCRYPTO / BESTCHANGE ────────────────────────── */
.buycrypto { background: var(--surface); }
.bestchange-card {
  background: linear-gradient(135deg, #0f2027 0%, #1a3a3a 50%, #0f2027 100%);
  border-radius: 24px; padding: 48px; display: flex;
  align-items: center; gap: 48px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.08); margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.bestchange-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,.15) 0%, transparent 70%);
}
.bestchange-logo-block { flex-shrink: 0; }
.bc-logo img {
  height: 50px;
  width: auto;
  display: block;
}
.bestchange-info { flex: 1; min-width: 200px; }
.bestchange-info h3 {
  font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.bestchange-info p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.bc-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bc-feature {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08); padding: 5px 12px; border-radius: 100px;
}
.btn-bestchange {
  display: inline-flex; align-items: center; gap: 8px;
  background: #34d399; color: #0f2027;
  padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.btn-bestchange:hover { background: #6ee7b7; transform: translateY(-2px); }

.bc-help-btn {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(34,158,217,.1); border: 1px solid rgba(34,158,217,.3);
  border-radius: 14px; padding: 18px 24px;
  text-decoration: none; color: var(--text); transition: all .2s;
}
.bc-help-btn:hover { border-color: var(--tg); background: rgba(34,158,217,.15); }
.bc-help-text { font-size: 14px; font-weight: 600; }
.bc-help-sub { font-size: 12px; color: var(--text3); }
.bc-help-btn img { width: 20px; height: 20px; }

/* ── WALLETS / STORAGE ─────────────────────────────── */
.wallets-section { }
.wallets-header { margin-bottom: 40px; }
.wallets-tabs-nav {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.wallet-tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  background: var(--bg2); border: 2px solid transparent;
  font-size: 13px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all .2s;
}
.wallet-tab-btn svg { width: 16px; height: 16px; fill: currentColor; opacity: .6; }
.wallet-tab-btn:hover { border-color: var(--accent3); color: var(--accent); }
.wallet-tab-btn:hover svg { opacity: 1; }
.wallet-tab-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.wallet-tab-btn.active svg { opacity: 1; fill: #fff; }

.wallet-panel { display: none; }
.wallet-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.wallet-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all .25s;
}
.wallet-card:hover { border-color: var(--accent3); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wallet-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
/*.wallet-logo {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; border: 1px solid var(--border);
}*/
.wallet-logo img { width: 48px; height: 48px; }
.wallet-name { font-size: 16px; font-weight: 700; }
.wallet-type { font-size: 11px; color: var(--text3); font-weight: 600; letter-spacing: .5px; }
.wallet-desc { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.wallet-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.wallet-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 6px 12px;
  border-radius: 6px; text-decoration: none; transition: all .2s;
}
.wallet-btn img { width: 14px; height: 14px; }
.wallet-btn-primary { background: var(--accent); color: #fff; }
.wallet-btn-primary:hover { background: var(--accent2); }
.wallet-btn-store { background: var(--bg); border: 1px solid var(--border); color: var(--text2); }
.wallet-btn-store:hover { border-color: var(--accent3); color: var(--accent); }
.wallet-decentralized-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  color: #059669; background: rgba(5,150,105,.1); border: 1px solid rgba(5,150,105,.2);
  padding: 3px 8px; border-radius: 100px; margin-bottom: 8px;
}

/* ── FOOTER / CTA ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #9b5de5 100%);
  border-radius: 24px; padding: 64px 48px;
  text-align: center; margin: 80px 0;
}
.cta-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px); font-weight: 700;
  color: #fff; margin-bottom: 14px;
}
.cta-section p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--text3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px; color: var(--text3); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-top {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none; cursor: pointer;
}

/* ── DIVIDER ───────────────────────────────────────── */
.section-divider {
  height: 1px; background: var(--border); margin: 0;
}

/* ── RESPONSIVE ────────────────────────────────────── */

/* При 1040px скрываем кнопку "Перейти на форум" */
@media (max-width: 1040px) {
  .header-actions .btn-header-primary {
    display: none;
  }
}

/* При 900px скрываем навигацию и показываем бургер */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .about-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .bypass-platform-grid { grid-template-columns: 1fr; }
  .bestchange-card { gap: 28px; }
}

/* При 700px адаптируем остальные элементы */
@media (max-width: 700px) {
  .btn-header-ghost { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .section { padding: 60px 0; }
  .links-hero { padding: 28px; }
  .bestchange-card { padding: 28px; }
  .cta-section { padding: 40px 24px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .crypto-grid { grid-template-columns: 1fr 1fr; }
}

/* При 420px адаптируем для мобильных телефонов */
@media (max-width: 420px) {
  .about-cards { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: 1fr; }
  .bypass-tabs-nav { flex-direction: column; }
  .wallet-panel.active { grid-template-columns: 1fr; }
  .wallets-tabs-nav { flex-direction: column; }
  .wallets-tabs-nav .wallet-tab-btn { justify-content: center; }
}

/* ── ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}