/* ═══════════════════════════════════════════════════════
   PAY WITH ANON — Shared Stylesheet
   Colors: White bg, black accents, high contrast text
   Fonts: Nunito (logo/brand) + Figtree (body) + Instrument Serif (display italic)
═══════════════════════════════════════════════════════ */

:root {
  --white:      #ffffff;
  --off:        #f5f5f5;
  --off2:       #eeeeee;
  --border:     #e2e2e2;
  --border2:    #cccccc;
  --ink:        #0e0e0e;
  --ink2:       #2a2a2a;
  --muted:      #555555;
  --muted2:     #888888;
  --accent:     #111111;
  --accent-bg:  #f0f0f0;
  --accent-bg2: #e8e8e8;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.16);
  --r:   12px;
  --r-lg: 18px;
  --r-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 64px); letter-spacing: -2px; }
h2 { font-size: clamp(26px, 3vw, 42px); letter-spacing: -1.5px; }
h3 { font-size: 17px; letter-spacing: -0.3px; font-weight: 700; }
em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--ink);
}
p { color: var(--muted); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 14px 0 28px;
}

/* ── BUTTONS ── */
.btn-black {
  display: inline-block;
  background: var(--ink);
  color: #ffffff !important;
  border: none;
  padding: 12px 24px;
  border-radius: var(--r);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
}
.btn-black:hover { background: #333333; transform: translateY(-1px); }

.btn-hero {
  display: inline-block;
  background: var(--ink);
  color: #ffffff !important;
  border: none;
  padding: 15px 32px;
  border-radius: var(--r);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}
.btn-hero:hover { background: #222222; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.28); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink) !important;
  border: 1.5px solid var(--border2);
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--ink2); background: var(--off); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted) !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}
.btn-text-link:hover { color: var(--ink) !important; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  color: var(--muted) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.16s, background 0.16s;
}
.nav-links a:hover { color: var(--ink) !important; background: var(--off); }
.nav-links a.active { color: var(--ink) !important; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--border2);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 199;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu a:hover { background: var(--off); color: var(--ink) !important; }
.mobile-menu .mm-cta {
  margin-top: 10px;
  background: var(--ink) !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 800;
  border-radius: var(--r);
}
.mobile-menu .mm-cta:hover { background: #333 !important; }

/* PAGE PADDING */
.page-body { padding-top: 64px; }

/* ── HERO ── */
.hero {
  padding-top: 64px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 36px 100px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 64px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off);
  border: 1.5px solid var(--border2);
  color: var(--ink2) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a9e1a;
  animation: livepulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livepulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-content h1 { margin-bottom: 20px; }
.hero-lead {
  font-size: 18px;
  color: var(--muted) !important;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--ink2) !important; font-weight: 700; }

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-n { font-size: 22px; font-weight: 900; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.stat-l { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── VIRTUAL CARD ── */
.hero-card-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.vcard {
  width: 380px;
  height: 240px;
  background: linear-gradient(145deg, #111111 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
  cursor: default;
}
.vcard:hover { transform: perspective(900px) rotateY(-3deg) rotateX(1deg); }
.vcard::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(ellipse at 35% 35%, rgba(255,255,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.vcard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.vcard-brand {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #aaff3d;
  letter-spacing: -0.3px;
}
.vcard-chip {
  width: 36px; height: 28px;
  background: linear-gradient(135deg, #c9a227 0%, #f0c84a 50%, #c9a227 100%);
  border-radius: 5px;
}
.vcard-num {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.vcard-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.vcard-holder { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }
.vcard-exp-label { font-size: 8px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
.vcard-exp { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 2px; }
.vcard-visa { font-size: 24px; font-weight: 900; font-style: italic; color: #fff; letter-spacing: -1px; }

.crypto-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.c-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink2);
  transition: border-color 0.16s, background 0.16s;
}
.c-chip:hover { border-color: var(--border2); background: var(--off2); }
.cd { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ── MONERO SECTION ── */
.monero-section {
  background: var(--ink);
  padding: 80px 36px;
}
.monero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.monero-section .eyebrow { color: #aaaaaa; }
.monero-section h2 { color: #ffffff; margin-bottom: 16px; }
.monero-section h2 em { color: #aaff3d; }
.monero-section p { color: rgba(255,255,255,0.65) !important; font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.monero-section p strong { color: rgba(255,255,255,0.9) !important; }

.monero-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.monero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75) !important;
  font-size: 15px;
  font-weight: 500;
}
.bullet-icon {
  width: 22px; height: 22px;
  background: rgba(170,255,61,0.15);
  border: 1px solid rgba(170,255,61,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #aaff3d;
  flex-shrink: 0;
  font-weight: 800;
}
.monero-section .btn-black {
  background: #aaff3d !important;
  color: #000000 !important;
}
.monero-section .btn-black:hover { background: #c0ff55 !important; }

.xmr-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  text-align: center;
}
.xmr-icon { margin-bottom: 16px; }
.xmr-label { font-size: 20px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.xmr-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.xmr-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.xmr-tag {
  background: rgba(170,255,61,0.12);
  border: 1px solid rgba(170,255,61,0.25);
  color: #aaff3d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.xmr-arrow {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── BRANDS BAR ── */
.brands-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 36px;
}
.brands-inner { max-width: 1180px; margin: 0 auto; }
.brands-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted2);
  margin-bottom: 20px;
}
.brands-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.brand { font-size: 15px; font-weight: 800; color: var(--border2); letter-spacing: -0.3px; transition: color 0.18s; }
.brand:hover { color: var(--muted); }

/* ── FEATURES ── */
.features-section { padding: 96px 36px; background: var(--white); }
.features-inner { max-width: 1180px; margin: 0 auto; }
.features-inner > h2 { margin-bottom: 12px; }
.features-inner > .section-lead { max-width: 560px; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.feat-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  border-color: var(--border2);
  background: var(--off2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feat-icon {
  width: 46px; height: 46px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.feat-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── CRYPTO LIST SECTION ── */
.crypto-section {
  padding: 96px 36px;
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.crypto-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.crypto-list-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.clist-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.16s;
}
.clist-row:last-of-type { border-bottom: none; }
.clist-row:hover { background: var(--off); }
.clist-row.highlight { background: var(--ink); }
.clist-row.highlight:hover { background: #1a1a1a; }
.clist-left { display: flex; align-items: center; gap: 12px; }
.clist-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.clist-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.clist-row.highlight .clist-name { color: #ffffff; }
.clist-sym { font-size: 12px; color: var(--muted); margin-top: 2px; }
.clist-row.highlight .clist-sym { color: rgba(255,255,255,0.55); }
.clist-tag { font-size: 12px; font-weight: 700; color: var(--muted); }
.clist-badge {
  font-size: 11px;
  font-weight: 700;
  background: #aaff3d;
  color: #000;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.clist-more {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  background: var(--off);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ── SEND & RECEIVE ── */
.sr-section {
  padding: 96px 36px;
  background: var(--white);
}
.sr-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.sr-text > h2 { margin-bottom: 12px; }

.tx-widget { width: 300px; }
.tx-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.tx-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.tx-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.tx-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tx-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 6px;
}
.tx-line-v { width: 1.5px; height: 18px; background: var(--border2); }
.tx-pill {
  background: var(--ink);
  color: #ffffff;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.tx-instant {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  font-weight: 700;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--ink);
  padding: 80px 36px;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-strip h2 { color: #ffffff; margin-bottom: 12px; }
.cta-strip h2 em { color: rgba(255,255,255,0.75); }
.cta-strip p { color: rgba(255,255,255,0.6) !important; font-size: 16px; margin-bottom: 32px; }
.cta-strip .btn-hero {
  background: #ffffff;
  color: #000000 !important;
  box-shadow: none;
}
.cta-strip .btn-hero:hover { background: #eeeeee; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* ── SEO TEXT ── */
.seo-content {
  padding: 80px 36px;
  background: var(--off);
  border-top: 1px solid var(--border);
}
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.seo-inner h2 { font-size: 24px; margin-bottom: 14px; }
.seo-inner h3 { font-size: 18px; margin: 32px 0 10px; color: var(--ink2); }
.seo-inner p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.seo-inner strong { color: var(--ink2); font-weight: 700; }

/* ── HOW IT WORKS PAGE ── */
.page-hero {
  padding-top: 64px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 36px 56px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { font-size: 18px; color: var(--muted); line-height: 1.65; max-width: 600px; margin-top: 12px; }

.hiw-body { max-width: 1180px; margin: 0 auto; padding: 72px 36px 100px; }

.hiw-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 80px; }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.hiw-step:last-child { border-bottom: none; }
.step-num-box {
  width: 52px; height: 52px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.hiw-step h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink); }
.hiw-step p { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.hiw-step .step-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: var(--off2);
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
}

.hiw-extras { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 72px; }
.hiw-extra-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.hiw-extra-card h3 { font-size: 17px; margin-bottom: 10px; }
.hiw-extra-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FAQ PAGE ── */
.faq-body { max-width: 780px; margin: 0 auto; padding: 64px 36px 100px; }

.faq-search {
  background: var(--off);
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.faq-search input {
  flex: 1;
  border: none;
  background: none;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.faq-search input::placeholder { color: var(--muted2); }
.faq-search-icon { color: var(--muted2); font-size: 18px; line-height: 1; }

.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: color 0.16s;
  line-height: 1.4;
}
.faq-btn:hover { color: var(--ink2); }
.faq-ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.25s;
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-ico {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-ans { max-height: 500px; }
.faq-ans-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-ans-inner strong { color: var(--ink2); font-weight: 700; }

/* ── SUPPORT PAGE ── */
.support-body { max-width: 960px; margin: 0 auto; padding: 64px 36px 100px; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.support-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.support-card:hover { border-color: var(--border2); background: var(--off2); transform: translateY(-2px); box-shadow: var(--shadow); }
.support-card .si { font-size: 32px; display: block; margin-bottom: 16px; }
.support-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.support-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.support-card a {
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.16s;
}
.support-card a:hover { border-color: var(--ink); }

.support-meta {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.support-meta h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.support-meta p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 380px; }
.meta-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.ms-val { font-size: 26px; font-weight: 900; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.ms-label { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

.support-tip {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.support-tip h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.support-tip p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.support-tip a { color: var(--ink) !important; font-weight: 700; text-decoration: underline; }

/* ── INNER PAGE CTA ── */
.inner-cta {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 72px 36px;
  text-align: center;
}
.inner-cta h2 { margin-bottom: 12px; }
.inner-cta p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 56px 36px 40px;
}
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .flogo {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45) !important; line-height: 1.65; max-width: 220px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-col ul a:hover { color: #ffffff !important; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
  line-height: 1.8;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .monero-inner { grid-template-columns: 1fr; gap: 40px; }
  .xmr-card { max-width: 360px; margin: 0 auto; }
  .crypto-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiw-extras { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 48px 20px 64px; gap: 40px; }
  .hero-card-col { align-items: flex-start; }
  .vcard { width: 100%; max-width: 360px; transform: none; }
  .hero-stats { gap: 20px; }
  .sr-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }
  .tx-widget { width: 100%; max-width: 300px; margin: 0 auto; }
  .features-section, .crypto-section, .seo-content { padding: 64px 20px; }
  .feat-grid { grid-template-columns: 1fr; }
  .monero-section { padding: 64px 20px; }
  .brands-bar { padding: 24px 20px; }
  .brands-row { gap: 18px; }
  .cta-strip { padding: 64px 20px; }
  .hiw-body { padding: 48px 20px 80px; }
  .hiw-step { grid-template-columns: 1fr; gap: 16px; }
  .hiw-extras { grid-template-columns: 1fr; }
  .faq-body { padding: 40px 20px 80px; }
  .support-body { padding: 40px 20px 80px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-meta { flex-direction: column; gap: 24px; }
  .page-hero-inner { padding: 48px 20px 40px; }
  .inner-cta { padding: 56px 20px; }
  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  h1 { letter-spacing: -1.5px; }
}
