/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --eth:  #627eea;   /* Ethereum blue-purple */
  --xmr:  #ff6600;   /* Monero orange        */
  --bg:   #09090f;
  --card: #0e0e18;
  --card2:#100f1a;
  --border: rgba(98,126,234,0.18);
  --border-xmr: rgba(255,102,0,0.18);
  --text: #d0d4f0;
  --dim:  #4a5070;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  padding: 40px 20px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  /* ETH purple left, XMR orange right — the swap concept baked into the bg */
  background-image:
    radial-gradient(ellipse at 0%   20%, rgba(98,126,234,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 80%, rgba(255,102,0,0.10)  0%, transparent 50%),
    radial-gradient(ellipse at 50%  50%, rgba(14,8,30,0.95)    0%, transparent 80%);
}

/* Subtle mesh — ETH hexagons meet XMR organic feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(98,126,234,0.018) 50px,
      rgba(98,126,234,0.018) 51px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 50px,
      rgba(255,102,0,0.012) 50px,
      rgba(255,102,0,0.012) 51px
    );
  pointer-events: none;
  z-index: 0;
}

/* NO-KYC scanlines — privacy layer on top */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(98,126,234,0.008) 3px,
    rgba(98,126,234,0.008) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Container */
.mix-container {
  width: 100%;
  max-width: 1000px;
  background: var(--card);
  border: 1px solid rgba(98,126,234,0.2);
  border-radius: 16px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 80px rgba(0,0,0,0.8),
    0 -2px 40px rgba(98,126,234,0.06),
     2px 0 40px rgba(255,102,0,0.04);
}

/* ETH→XMR split gradient top bar */
.mix-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    #627eea 0%,
    #8b5cf6 30%,
    #c04888 55%,
    #e06020 75%,
    #ff6600 100%
  );
  background-size: 200% 100%;
  animation: swap-gradient 6s ease-in-out infinite alternate;
}

@keyframes swap-gradient {
  0%   { background-position: 0% 0;    }
  100% { background-position: 100% 0;  }
}

/* Privacy shield orb — centre */
.mix-container::after {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse,
    rgba(98,126,234,0.1) 0%,
    rgba(139,92,246,0.06) 35%,
    rgba(255,102,0,0.04) 65%,
    transparent 80%
  );
  pointer-events: none;
}

/* Header */
.mix-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Privacy badge */
.mix-header::before {
  content: '🔒 NO KYC  ·  NO AML  ·  NO LOGS';
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.mix-logo {
  width: 68px;
  height: 68px;
  display: block;
  margin: 0 auto 14px;
  filter:
    drop-shadow(0 0 10px rgba(98,126,234,0.5))
    drop-shadow(0 0 28px rgba(255,102,0,0.25));
}

.mix-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.6px;
  /* ETH→XMR gradient text */
  background: linear-gradient(135deg,
    #8ba4ff 0%,
    #627eea 25%,
    #c04888 55%,
    #ff6600 80%,
    #ff9944 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Swap direction hint */
.mix-header::after {
  content: 'ETH  ⟶  XMR';
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #627eea, #ff6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form */
.mix-form {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Exchange Panel */
.exchange-panel {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
}

/* FROM panel — ETH side (purple) */
.from-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(98,126,234,0.04);
  border: 1px solid rgba(98,126,234,0.2);
  border-radius: 12px;
  overflow: visible;
  transition: all 0.25s;
  position: relative;
}

.from-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 2px;
  background: #627eea;
  box-shadow: 0 0 8px rgba(98,126,234,0.6);
}

.from-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 24px;
  background: #627eea;
  box-shadow: 0 0 8px rgba(98,126,234,0.6);
}

.from-panel:hover {
  border-color: rgba(98,126,234,0.45);
  box-shadow: 0 0 24px rgba(98,126,234,0.1);
}

/* TO panel — XMR side (orange) */
.to-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255,102,0,0.04);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 12px;
  overflow: visible;
  transition: all 0.25s;
  position: relative;
}

.to-panel::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 24px; height: 2px;
  background: #ff6600;
  box-shadow: 0 0 8px rgba(255,102,0,0.6);
}

.to-panel::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 2px; height: 24px;
  background: #ff6600;
  box-shadow: 0 0 8px rgba(255,102,0,0.6);
}

.to-panel:hover {
  border-color: rgba(255,102,0,0.45);
  box-shadow: 0 0 24px rgba(255,102,0,0.08);
}

/* Panel */
.panel {
  /* shared fallback — overridden above */
}

/* Panel Label */
.panel-label {
  padding: 12px 18px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.from-panel .panel-label {
  color: rgba(98,126,234,0.7);
  border-bottom-color: rgba(98,126,234,0.1);
}

.to-panel .panel-label {
  color: rgba(255,102,0,0.7);
  border-bottom-color: rgba(255,102,0,0.1);
}

/* Panel Header */
.panel-header {
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Amount Input */
.from-panel .panel-header input {
  width: 100%;
  max-width: 280px;
  padding: 8px 12px;
  font-size: 38px;
  font-weight: 800;
  text-align: right;
  border: none;
  background: transparent;
  color: #7b9aff;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -2px;
  caret-color: #627eea;
  text-shadow: 0 0 16px rgba(98,126,234,0.4);
}

.from-panel .panel-header input::placeholder {
  color: rgba(98,126,234,0.15);
  text-shadow: none;
}

/* Receive Amount */
.to-panel .panel-header .receive-big {
  width: 100%;
  max-width: 280px;
  padding: 8px 12px;
  font-size: 38px;
  font-weight: 800;
  text-align: right;
  color: #ff8840;
  background: transparent;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -2px;
  text-shadow: 0 0 16px rgba(255,102,0,0.35);
}

/* Select Area */
.panel-select {
  padding: 8px 14px 14px;
}

/* Custom Select */
.custom-select {
  position: relative;
  width: 100%;
  z-index: 100;
}

.from-panel .select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(98,126,234,0.2);
  border-radius: 8px;
  background: rgba(98,126,234,0.06);
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}

.from-panel .select-trigger:hover {
  border-color: rgba(98,126,234,0.5);
  background: rgba(98,126,234,0.1);
  box-shadow: 0 0 12px rgba(98,126,234,0.1);
}

.to-panel .select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 8px;
  background: rgba(255,102,0,0.06);
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}

.to-panel .select-trigger:hover {
  border-color: rgba(255,102,0,0.5);
  background: rgba(255,102,0,0.1);
  box-shadow: 0 0 12px rgba(255,102,0,0.1);
}

.select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(98,126,234,0.06);
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}

.select-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.select-value {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e0e4f8;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3px;
}

.from-panel .arrow { font-size: 10px; color: #627eea; transition: transform 0.2s; }
.to-panel   .arrow { font-size: 10px; color: #ff6600; transition: transform 0.2s; }
.arrow { font-size: 10px; color: #627eea; transition: transform 0.2s; }

.custom-select.active .arrow { transform: rotate(180deg); }

/* Options Dropdown */
.options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #0e0e1c;
  padding: 0;
  border: 1px solid rgba(98,126,234,0.25);
  border-radius: 10px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10000 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 24px rgba(98,126,234,0.08);
}

.to-panel .options {
  border-color: rgba(255,102,0,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), 0 0 24px rgba(255,102,0,0.06);
}

.options::-webkit-scrollbar { width: 4px; }
.options::-webkit-scrollbar-track { background: #0e0e1c; }
.options::-webkit-scrollbar-thumb { background: rgba(98,126,234,0.35); border-radius: 3px; }
.options::-webkit-scrollbar-thumb:hover { background: #627eea; }

/* Search Input */
.search-input {
  position: sticky;
  top: 0;
  width: 100%;
  height: 44px;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid rgba(98,126,234,0.1);
  background: rgba(98,126,234,0.05);
  color: var(--text);
  font-size: 12px;
  outline: none;
  border-radius: 10px 10px 0 0;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  caret-color: #627eea;
}

.search-input::placeholder { color: rgba(98,126,234,0.22); }

/* Option Group */
.opt-group {
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 700;
  color: #627eea;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: #0e0e1c;
  position: sticky;
  top: 44px;
  z-index: 1;
  font-family: 'JetBrains Mono', monospace;
}

/* Option Item */
.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  color: #5060a0;
  transition: all 0.15s;
  box-shadow: inset 0 -1px 0 rgba(98,126,234,0.06);
}

.option:last-child { box-shadow: none; }
.option:hover { background: rgba(98,126,234,0.08); color: var(--text); }

.option.selected {
  background: rgba(98,126,234,0.12);
  color: #8ba4ff;
  box-shadow: inset 3px 0 0 #627eea, inset 0 -1px 0 rgba(98,126,234,0.06);
}

.option img { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; }
.option span { font-size: 13px; font-weight: 500; font-family: 'JetBrains Mono', monospace; }

/* Swap Button — the centrepiece */
.mix-swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(98,126,234,0.2), rgba(255,102,0,0.15));
  border: 1.5px solid transparent;
  background-clip: padding-box;
  color: #d0d4f0;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  /* gradient border trick */
  background: #0e0e18;
  box-shadow:
    0 0 0 1.5px rgba(98,126,234,0.5),
    0 0 20px rgba(98,126,234,0.15),
    0 0 20px rgba(255,102,0,0.08);
}

.mix-swap:hover {
  background: linear-gradient(135deg, #627eea, #c04888, #ff6600);
  box-shadow:
    0 0 30px rgba(98,126,234,0.5),
    0 0 30px rgba(255,102,0,0.3);
  color: #ffffff;
  transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
}

/* Wallet Input */
.mix-form label {
  display: block;
  margin: 20px 0 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: 'JetBrains Mono', monospace;
}

.mix-form input[type="text"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(98,126,234,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
  font-family: 'JetBrains Mono', monospace;
  caret-color: #627eea;
}

.mix-form input[type="text"]:focus {
  border-color: rgba(98,126,234,0.5);
  box-shadow:
    0 0 0 3px rgba(98,126,234,0.1),
    0 0 20px rgba(98,126,234,0.07);
}

.mix-form input[type="text"]::placeholder { color: rgba(98,126,234,0.2); }

/* Submit Button — ETH→XMR gradient */
.mix-submit {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #627eea 0%, #8b5cf6 35%, #c04888 65%, #ff6600 100%);
  background-size: 200% 100%;
  color: #ffffff;
  border: none;
  padding: 17px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 24px;
  transition: all 0.4s;
  box-shadow: 0 4px 28px rgba(98,126,234,0.35), 0 4px 28px rgba(255,102,0,0.15);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.mix-submit::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s;
}

.mix-submit:hover::before { left: 140%; }

.mix-submit:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow:
    0 8px 36px rgba(98,126,234,0.45),
    0 8px 36px rgba(255,102,0,0.25);
}

.mix-submit:active { transform: translateY(0); }

/* SEO Section */
.seo-section {
  max-width: 800px;
  margin: 36px auto 0;
  padding: 28px;
  background: var(--card2);
  border: 1px solid rgba(98,126,234,0.12);
  border-right-color: rgba(255,102,0,0.10);
  border-radius: 14px;
  color: var(--dim);
}

.seo-section h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 11px;
  background: linear-gradient(90deg, #8ba4ff, #ff8840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.2px;
}

.seo-section h2:first-child { margin-top: 0; }
.seo-section p  { margin-bottom: 12px; line-height: 1.8; font-size: 14px; }
.seo-section ul { margin: 12px 0 12px 20px; list-style: none; padding: 0; }
.seo-section li { margin-bottom: 8px; font-size: 14px; line-height: 1.65; }
.seo-section li::before { content: '→ '; color: #627eea; }

/* Info Block */
.info-block {
  max-width: 800px;
  margin: 14px auto 0;
  padding: 20px 28px;
  background: var(--card2);
  border: 1px solid rgba(98,126,234,0.12);
  border-radius: 14px;
  color: var(--text);
}

.info-block .label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: 'JetBrains Mono', monospace;
}

.info-block .value p { margin: 0; font-size: 14px; }
.info-block .value a {
  background: linear-gradient(90deg, #8ba4ff, #ff8840);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.info-block .value a:hover { opacity: 0.8; }

/* Loader */
.loader {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(98,126,234,0.15);
  border-top-color: #627eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  visibility: hidden;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 768px) {
  .mix-container { padding: 26px 16px; border-radius: 14px; }
  .mix-title { font-size: 20px; }
  .mix-header::before { font-size: 9px; letter-spacing: 1.5px; }
  .mix-header::after  { font-size: 10px; letter-spacing: 3px; }

  .exchange-panel { flex-direction: column; gap: 0; position: relative; }
  .from-panel { z-index: 10; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .to-panel   { z-index: 5;  border-top-left-radius: 0;    border-top-right-radius: 0;    margin-top: -1px; }

  .from-panel .panel-header input,
  .to-panel .panel-header .receive-big { font-size: 28px; max-width: 100%; text-align: center; letter-spacing: -1px; }

  .mix-swap {
    position: relative; left: auto; top: auto; transform: none;
    margin: -23px auto; z-index: 20; order: 1;
    width: 46px; height: 46px;
  }

  .from-panel { order: 0; }
  .to-panel   { order: 2; }

  .mix-submit { padding: 14px 18px; font-size: 13px; margin-top: 20px; letter-spacing: 1px; }
  .seo-section, .info-block { padding: 20px 16px; margin-top: 20px; border-radius: 12px; }
  .seo-section h2 { font-size: 15px; }
  .seo-section p, .seo-section li { font-size: 13px; }
}

@media (max-width: 480px) {
  body { padding: 18px 10px; }
  .mix-container { padding: 20px 14px; border-radius: 12px; }
  .mix-logo { width: 56px; height: 56px; margin-bottom: 12px; }
  .mix-title { font-size: 18px; }
  .panel-label { padding: 10px 14px 5px; font-size: 9px; }
  .panel-header { padding: 12px 14px; }
  .from-panel .panel-header input,
  .to-panel .panel-header .receive-big { font-size: 24px; }
  .panel-select { padding: 6px 12px 12px; }
  .mix-swap { width: 40px; height: 40px; margin: -20px auto; }
  .mix-form input[type="text"] { padding: 11px 13px; }
  .mix-submit { padding: 13px 16px; margin-top: 18px; }
}

/* Validation */
.wallet-error { color: #ff6070; font-size: 11px; margin-top: 5px; display: none; font-family: 'JetBrains Mono', monospace; }
.wallet-input.error { border-color: #ff6070 !important; }
.wallet-validation-status { display: inline-block; margin-left: 8px; font-size: 14px; }
.wallet-validation-status.valid   { color: #44dd99; }
.wallet-validation-status.invalid { color: #ff6070; }
.amount-error { color: #ff6070; font-size: 11px; margin-top: 5px; }
#amount.error { color: #ff6070; }

    /* ── Page-level H1 (lives outside .seo-section) ── */
    .page-h1-wrap {
      max-width: 800px;
      margin: 0 auto 28px;
      text-align: center;
    }

    .page-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: -0.6px;
      background: linear-gradient(135deg,
        #8ba4ff 0%, #627eea 25%, #c04888 55%, #ff6600 80%, #ff9944 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin: 0 0 10px;
    }

    .page-h1-sub {
      font-size: 13px;
      color: var(--dim);
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* ── Benefits strip ── */
    .benefits-strip {
      max-width: 800px;
      margin: 0 auto 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .benefit-card {
      background: var(--card2);
      border: 1px solid rgba(98,126,234,0.14);
      border-radius: 12px;
      padding: 18px 16px;
      text-align: center;
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .benefit-card:hover {
      border-color: rgba(98,126,234,0.35);
      box-shadow: 0 0 20px rgba(98,126,234,0.08);
    }

    .benefit-card .bc-icon {
      font-size: 24px;
      display: block;
      margin-bottom: 8px;
    }

    .benefit-card .bc-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: #8ba4ff;
      font-family: 'JetBrains Mono', monospace;
      display: block;
      margin-bottom: 5px;
    }

    .benefit-card .bc-text {
      font-size: 12px;
      color: var(--dim);
      line-height: 1.6;
    }

    /* ── FAQ inside seo-section ── */
    .faq-item {
      border-top: 1px solid rgba(98,126,234,0.1);
      padding: 14px 0 4px;
    }

    .faq-item:first-of-type { border-top: none; padding-top: 0; }

    .faq-q {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 7px;
      line-height: 1.5;
    }

    .faq-a {
      font-size: 13px;
      color: var(--dim);
      line-height: 1.8;
      margin-bottom: 10px;
    }

    /* ── Coins list ── */
    .coins-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 12px 0;
    }

    .coin-tag {
      background: rgba(98,126,234,0.07);
      border: 1px solid rgba(98,126,234,0.18);
      border-radius: 6px;
      padding: 4px 11px;
      font-size: 11px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      color: #8ba4ff;
      letter-spacing: 0.4px;
    }

    .coin-tag.xmr { background: rgba(255,102,0,0.07); border-color: rgba(255,102,0,0.2); color: #ff8840; }

    /* ── Steps timeline ── */
    .steps-list {
      counter-reset: step;
      list-style: none;
      padding: 0;
      margin: 12px 0;
    }

    .steps-list li {
      counter-increment: step;
      padding: 10px 0 10px 44px;
      position: relative;
      border-left: 1px solid rgba(98,126,234,0.15);
      margin-left: 16px;
      font-size: 13px;
      color: var(--dim);
      line-height: 1.7;
    }

    .steps-list li::before {
      content: counter(step);
      position: absolute;
      left: -16px;
      top: 10px;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #627eea, #c04888);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 14px rgba(98,126,234,0.35);
    }

    .steps-list li::after { content: none; }

    .steps-list li strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px;
    }

    /* ── CTA button inside SEO section ── */
    .seo-cta {
      display: inline-block;
      margin-top: 8px;
      padding: 13px 32px;
      border-radius: 10px;
      background: linear-gradient(90deg, #627eea 0%, #8b5cf6 35%, #c04888 65%, #ff6600 100%);
      background-size: 200% 100%;
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 4px 24px rgba(98,126,234,0.3), 0 4px 24px rgba(255,102,0,0.12);
    }

    .seo-cta:hover {
      background-position: 100% 0;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(98,126,234,0.45), 0 8px 32px rgba(255,102,0,0.22);
    }

    /* ── Trust badges row ── */
    .trust-row {
      max-width: 800px;
      margin: 14px auto 0;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .trust-badge {
      flex: 1 1 calc(50% - 10px);
      min-width: 200px;
      background: var(--card2);
      border: 1px solid rgba(255,102,0,0.12);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .trust-badge .tb-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .trust-badge .tb-body .tb-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.6px;
      color: #ff8840;
      font-family: 'JetBrains Mono', monospace;
      display: block;
      margin-bottom: 4px;
    }

    .trust-badge .tb-body p {
      font-size: 12px;
      color: var(--dim);
      line-height: 1.65;
      margin: 0;
    }

    /* ── Responsive tweaks for new elements ── */
    @media (max-width: 600px) {
      .benefits-strip { grid-template-columns: 1fr; }
      .trust-row { flex-direction: column; }
      .trust-badge { flex: 1 1 100%; }
      .page-h1 { font-size: 22px; }
    }