/* ==========================================================================
   MonoTools — Minimalist Black Line-Art Design System
   Pure white background · Black ink lines · Zero color · Zero gradients
   Fully static, client-side, bilingual (EN default / AR toggle)
   ========================================================================== */

/* -------- Design Tokens (only black & white) -------- */
:root {
  --white:      #ffffff;
  --black:      #000000;
  --ink:        #0a0a0a;
  --paper:      #ffffff;
  --line:       #000000;
  --line-soft:  rgba(0,0,0,0.12);
  --line-mid:   rgba(0,0,0,0.30);
  --shade-1:    rgba(0,0,0,0.03);
  --shade-2:    rgba(0,0,0,0.06);
  --shade-3:    rgba(0,0,0,0.55);
  --radius:     2px;
  --radius-lg:  4px;
  --bw:         1.5px;
  --bw-md:      2px;
  --bw-lg:      3px;
  --max-w:      1180px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --ff:         'Inter', 'Cairo', system-ui, -apple-system, sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* -------- Strict Black/White Identity (kill all browser-default blue) -------- */
::selection { background: var(--black); color: var(--white); }
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
* { -webkit-tap-highlight-color: transparent; }
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
input[type="checkbox"] { accent-color: var(--black); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--bw) solid var(--black);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.logo-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--black);
}
.logo-text { line-height: 1; }
.logo-text .light { font-weight: 300; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 8px;
}
.main-nav a {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  border: var(--bw) solid transparent;
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.main-nav a:hover { border-color: var(--black); }
.main-nav a.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.lang-toggle:hover { background: var(--black); color: var(--white); }
.lang-toggle svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--black);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   AD SLOTS
   ========================================================================== */
.ad-slot {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
}
.ad-inner {
  width: 100%;
  max-width: 970px;
  height: 90px;
  border: var(--bw) dashed var(--line-mid);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--shade-1);
}
.ad-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ad-size {
  font-size: 0.62rem;
  font-family: monospace;
  color: rgba(0,0,0,0.25);
}

/* ==========================================================================
   MAIN / VIEWS (SPA show-hide — no innerHTML rebuilding)
   ========================================================================== */
.app-main { flex: 1; padding-top: 40px; padding-bottom: 60px; }

.view { display: none; }
.view.active { display: block; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.tool-page { max-width: 780px; margin: 0 auto; }

/* ==========================================================================
   HOME — Hero
   ========================================================================== */
.hero {
  text-align: center;
  padding: 44px 0 52px;
  position: relative;
}
.hero-line-art {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  color: var(--black);
  pointer-events: none;
}
.hero-line-art svg { width: 100%; height: auto; }
.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  position: relative;
}
.hero-sub {
  margin: 22px auto 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--shade-3);
  max-width: 580px;
  line-height: 1.7;
}

/* ==========================================================================
   HOME — Tools Grid
   ========================================================================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.tool-card {
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  background: var(--white);
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  transition: transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s var(--ease);
  z-index: 0;
}
.tool-card:hover { transform: translateY(-3px); }
.tool-card:hover::before { transform: scaleY(1); }
.tool-card > * { position: relative; z-index: 1; transition: color .25s var(--ease); }
.tool-card:hover * { color: var(--white); }

.tool-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--black);
}
.tool-icon svg { width: 100%; height: 100%; }
.tool-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 0.86rem;
  color: var(--shade-3);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.tool-cta {
  font-size: 0.84rem;
  font-weight: 700;
  border-top: var(--bw) solid var(--line-soft);
  padding-top: 14px;
  display: inline-block;
}

/* ==========================================================================
   TRUST BADGE
   ========================================================================== */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 22px;
  border: var(--bw) solid var(--line-soft);
  border-radius: var(--radius);
  margin: 8px 0 0;
}
.trust-badge svg { width: 22px; height: 22px; color: var(--black); flex-shrink: 0; }
.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shade-3);
}
.trust-badge strong { color: var(--black); font-weight: 700; }

/* ==========================================================================
   HOME — Features Strip
   ========================================================================== */
.features-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 22px;
  border: var(--bw) solid var(--line-soft);
  border-radius: var(--radius);
  margin-top: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--shade-3);
}
.feature-item svg { width: 20px; height: 20px; color: var(--black); }

/* ==========================================================================
   TOOL PAGE — Common
   ========================================================================== */
.tool-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.back-btn:hover { background: var(--black); color: var(--white); }
.back-btn svg { width: 18px; height: 18px; transform: scaleX(-1); }
[dir="rtl"] .back-btn svg { transform: none; }

.tool-page-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.tool-page-desc {
  color: var(--shade-3);
  font-size: 0.94rem;
  margin-bottom: 28px;
  max-width: 620px;
  line-height: 1.65;
}

/* -------- Upload Zone -------- */
.upload-zone {
  border: var(--bw-md) dashed var(--line-mid);
  border-radius: var(--radius-lg);
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--shade-1);
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--black);
  background: var(--shade-2);
}
.upload-zone svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--black);
}
.upload-zone p { font-weight: 600; margin-bottom: 4px; }
.upload-zone span { font-size: 0.78rem; color: var(--shade-3); }

/* -------- Profile Pic Maker crop frame -------- */
.pfp-crop-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.pfp-crop-frame {
  width: 280px;
  height: 280px;
  max-width: 78vw;
  max-height: 78vw;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: var(--bw) solid var(--black);
  background: var(--shade-1);
  touch-action: none;
  cursor: grab;
}
.pfp-crop-frame.dragging { cursor: grabbing; }
.pfp-crop-frame img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  user-select: none;
  pointer-events: none;
}
.pfp-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--shade-3);
  margin: 14px 0 18px;
}
.upload-input { display: none; }

/* -------- Preview Area -------- */
.preview-area {
  margin-top: 24px;
  padding: 24px;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  min-height: 120px;
  display: none;
}
.preview-area.active { display: block; }
.preview-img-wrap { text-align: center; margin-bottom: 20px; }
.preview-img-wrap img {
  max-width: 100%;
  max-height: 420px;
  margin: 0 auto;
  border: 1px solid var(--line-soft);
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.92rem;
  font-weight: 700;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: background .2s, color .2s, opacity .2s;
  cursor: pointer;
}
.btn:hover { background: var(--black); color: var(--white); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:disabled:hover { background: var(--white); color: var(--black); }
.btn svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------- Loading Spinner -------- */
.spinner-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px;
}
.spinner {
  width: 40px;
  height: 40px;
  border: var(--bw-md) solid var(--line-soft);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-wrap p { font-size: 0.88rem; color: var(--shade-3); font-weight: 600; }

/* Progress bar (model download) */
.progress-track {
  width: 220px;
  height: 6px;
  border: 1px solid var(--line-mid);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--black);
  transition: width .2s linear;
}

/* -------- Error Box -------- */
.error-box {
  padding: 14px 20px;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  background: var(--shade-1);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  display: none;
}
.error-box.active { display: block; }

/* -------- Result Info -------- */
.result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: var(--bw) solid var(--line-soft);
  margin-bottom: 16px;
}
.result-info-item { font-size: 0.78rem; color: var(--shade-3); }
.result-info-item strong { color: var(--black); font-weight: 700; }

/* ==========================================================================
   QR CODE TOOL
   ========================================================================== */
.qr-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qr-form-group { margin-bottom: 20px; }
.qr-form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.qr-input, .qr-textarea, .qr-select {
  width: 100%;
  padding: 12px 14px;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 0.94rem;
  outline: none;
  transition: box-shadow .2s;
}
.qr-input:focus, .qr-textarea:focus, .qr-select:focus { box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
.qr-textarea { resize: vertical; min-height: 84px; }

.qr-preview-box {
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.qr-preview {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.qr-preview img, .qr-preview canvas {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.qr-preview-empty {
  color: var(--shade-3);
  font-size: 0.84rem;
  text-align: center;
  padding: 20px;
}

/* ==========================================================================
   UPSCALER + PDF shared option chips
   ========================================================================== */
.scale-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.scale-option {
  flex: 1;
  text-align: center;
  padding: 13px;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background .2s, color .2s;
  background: var(--white);
  user-select: none;
}
.scale-option:hover { background: var(--shade-2); }
.scale-option.active { background: var(--black); color: var(--white); }

.pdf-page-options {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pdf-page-options label { font-size: 0.84rem; font-weight: 600; }

/* ==========================================================================
   YOUTUBE THUMBNAIL TOOL
   ========================================================================== */
.yt-form {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.yt-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
.yt-thumb-card {
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.yt-thumb-preview {
  text-align: center;
  background: var(--shade-1);
  position: relative;
}
.yt-thumb-preview img { max-height: 220px; width: auto; margin: 0 auto; }
.yt-thumb-preview.unavailable {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shade-3);
  font-size: 0.84rem;
  font-weight: 600;
}
.yt-thumb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}
.yt-thumb-meta-info { display: flex; flex-direction: column; gap: 2px; }
.yt-thumb-meta-info strong { font-size: 0.88rem; }
.yt-thumb-meta-info span { font-size: 0.72rem; color: var(--shade-3); font-family: monospace; }

/* ==========================================================================
   IMAGE-TO-PDF TOOL
   ========================================================================== */
.pdf-files-list {
  margin-top: 16px;
  border: var(--bw) solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.pdf-file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.84rem;
}
.pdf-file-row:last-child { border-bottom: none; }
.pdf-file-row img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}
.pdf-file-name { flex: 1; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdf-file-size { color: var(--shade-3); font-size: 0.72rem; font-family: monospace; }
.pdf-file-del {
  padding: 4px 10px;
  border: 1px solid var(--line-mid);
  border-radius: var(--radius);
  font-size: 0.74rem;
  transition: background .2s, color .2s;
}
.pdf-file-del:hover { background: var(--black); color: var(--white); }

.pdf-orientation { display: flex; gap: 10px; margin: 20px 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: var(--bw) solid var(--black);
  background: var(--white);
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 24px 0;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo-icon { width: 26px; height: 26px; }
.footer-name { font-weight: 900; font-size: 1.05rem; letter-spacing: -0.02em; }
.footer-name .light { font-weight: 300; }
.footer-tag { font-size: 0.76rem; color: var(--shade-3); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 10px;
  border: var(--bw) solid transparent;
  border-radius: var(--radius);
  transition: border-color .2s;
}
.footer-nav a:hover { border-color: var(--black); }

.footer-credit {
  text-align: center;
  padding: 18px;
  border-top: 1px solid var(--line-soft);
  margin-top: 24px;
  width: 100%;
}
.footer-credit .credit-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--shade-3);
}
.footer-credit svg { width: 16px; height: 16px; color: var(--black); }
.footer-credit .credit-name {
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
  text-align: center;
  width: 100%;
  padding: 6px 0 14px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .qr-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: var(--bw) solid var(--black);
    padding: 12px;
    gap: 2px;
  }
  .main-nav.open a { width: 100%; }
  .nav-toggle { display: block; }
  .tools-grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 0 36px; }
  .features-strip { gap: 18px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .ad-inner { height: 70px; }
  .yt-form { flex-direction: column; }
  .yt-form .btn { width: 100%; }
}
/* ==========================================================================
   SEO CONTENT BLOCKS (intro / how-to / FAQ on each tool page)
   ========================================================================== */
.seo-content {
  margin-top: 56px;
  padding-top: 40px;
  border-top: var(--bw) solid var(--line-soft);
}
.seo-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.seo-content > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 68ch;
}
.seo-howto {
  list-style: none;
  counter-reset: step;
  margin: 22px 0 40px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.seo-howto li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.seo-howto li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: var(--bw) solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.seo-faq { margin-top: 8px; }
.seo-faq-item {
  padding: 18px 0;
  border-bottom: var(--bw) solid var(--line-soft);
}
.seo-faq-item:last-child { border-bottom: none; }
.seo-faq-item h3 {
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.seo-faq-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--shade-3);
  max-width: 68ch;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  padding-bottom: 10px;
}
.footer-legal a { color: rgba(0,0,0,0.5); text-decoration: none; }
.footer-legal a:hover { color: var(--black); text-decoration: underline; }

/* -------- Static info pages (Privacy / Terms / About / Contact) -------- */
.legal-page {
  max-width: 72ch;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.legal-page h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.legal-page .legal-updated { font-size: 0.8rem; color: var(--shade-3); margin-bottom: 32px; }
.legal-page h2 { font-size: 1.1rem; font-weight: 800; margin: 32px 0 10px; }
.legal-page p, .legal-page li { font-size: 0.94rem; line-height: 1.75; color: var(--ink); }
.legal-page ul { padding-inline-start: 20px; margin: 10px 0; }
.legal-page a { color: var(--black); }
