/* ==========================================================================
   Oglvl — shared styles for content & legal pages
   Mirrors the design system used on the main landing page.
   ========================================================================== */

:root {
  --bg: #000000;
  --bg1: #0c0c0e;
  --bg2: #141416;
  --bg3: #1c1c1f;
  --red: #e61355;
  --red-light: #ff4d81;
  --red-pale: #ffb8cf;
  --red-wash: rgba(230, 19, 85, 0.14);
  --red-wash2: rgba(230, 19, 85, 0.07);
  --red-line: rgba(230, 19, 85, 0.55);
  --red-glow: rgba(230, 19, 85, 0.38);
  --white: #ffffff;
  --text: #f7f7f8;
  --text2: rgba(247, 247, 248, 0.60);
  --text3: rgba(247, 247, 248, 0.30);
  --line: rgba(255, 255, 255, 0.10);
  --line2: rgba(255, 255, 255, 0.06);
  --green: #29c76f;
  --gold: #f2b544;
  --rpill: 999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Exo', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

svg {
  display: block;
  flex-shrink: 0;
}

.mono {
  font-family: 'Exo', sans-serif;
}

:focus-visible {
  outline: 2px solid var(--red-light);
  outline-offset: 2px;
}

.section-lbl {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-lbl::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--red-light);
}

.heading-accent {
  background-image: linear-gradient(90deg, #fff5fa 0%, #ffb8cf 40%, #e61355 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, .8, .24, 1), transform .7s cubic-bezier(.16, .8, .24, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pxbtn-pixel {
    animation: none !important;
  }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 60;
  width: min(1100px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
  background: rgba(12, 12, 14, .75);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 8px 28px rgba(0, 0, 0, .45);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .32s ease;
}

.nav.nav-hidden {
  transform: translate(-50%, -160%);
}

.nav-row {
  display: contents;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--red-light), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: background .15s, color .15s;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
}

/* ============ PIXEL BUTTON ============ */
.pxwrap {
  position: relative;
  display: inline-flex;
}

.pxbtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  padding: 14px 60px;
  border-radius: 12px;
  cursor: pointer;
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #ff8fae 0%, #ff4d81 55%, #c81050 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4), inset 0 -6px 10px rgba(0, 0, 0, 0.2), 0 0 45px #ff4d81aa;
  transition: transform 130ms ease, box-shadow 130ms ease, border-color 130ms ease;
}

.pxbtn:hover {
  transform: translate(2px, 2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45), inset 0 -6px 10px rgba(0, 0, 0, 0.2), 0 0 45px #ff4d81aa;
}

.pxbtn:active {
  transform: translate(5px, 5px);
  background-color: #ff4d81;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.25), 0 0 45px #ff4d81aa;
}

.pxbtn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(7, auto);
  grid-template-rows: repeat(7, auto);
  gap: 2px;
  border-radius: 7px;
  background-color: transparent;
}

.pxbtn-icon-left {
  left: 18px;
}

.pxbtn-icon-right {
  right: 18px;
}

.pxbtn-pixel {
  width: 2.6px;
  height: 2.6px;
  background-color: transparent;
  border-radius: 1px;
}

.pxbtn-pixel:nth-child(9),
.pxbtn-pixel:nth-child(10),
.pxbtn-pixel:nth-child(11),
.pxbtn-pixel:nth-child(17),
.pxbtn-pixel:nth-child(18),
.pxbtn-pixel:nth-child(19),
.pxbtn-pixel:nth-child(25),
.pxbtn-pixel:nth-child(26),
.pxbtn-pixel:nth-child(27),
.pxbtn-pixel:nth-child(31),
.pxbtn-pixel:nth-child(32),
.pxbtn-pixel:nth-child(33),
.pxbtn-pixel:nth-child(37),
.pxbtn-pixel:nth-child(38),
.pxbtn-pixel:nth-child(39) {
  background-color: #fff;
  box-shadow: 0 0 2px rgba(255, 255, 255, .35);
  animation: pxPulse 1.2s infinite ease-in-out;
}

.pxbtn-pixel:nth-child(9)  { animation-delay: 0s; }
.pxbtn-pixel:nth-child(10) { animation-delay: .1s; }
.pxbtn-pixel:nth-child(11) { animation-delay: .2s; }
.pxbtn-pixel:nth-child(17) { animation-delay: .1s; }
.pxbtn-pixel:nth-child(18) { animation-delay: .2s; }
.pxbtn-pixel:nth-child(19) { animation-delay: .3s; }
.pxbtn-pixel:nth-child(25) { animation-delay: .2s; }
.pxbtn-pixel:nth-child(26) { animation-delay: .3s; }
.pxbtn-pixel:nth-child(27) { animation-delay: .4s; }
.pxbtn-pixel:nth-child(31) { animation-delay: .1s; }
.pxbtn-pixel:nth-child(32) { animation-delay: .2s; }
.pxbtn-pixel:nth-child(33) { animation-delay: .3s; }
.pxbtn-pixel:nth-child(37) { animation-delay: 0s; }
.pxbtn-pixel:nth-child(38) { animation-delay: .1s; }
.pxbtn-pixel:nth-child(39) { animation-delay: .2s; }

/* the right icon mirrors the arrow shape */
.pxbtn-icon-right .pxbtn-pixel:nth-child(9),
.pxbtn-icon-right .pxbtn-pixel:nth-child(10),
.pxbtn-icon-right .pxbtn-pixel:nth-child(26),
.pxbtn-icon-right .pxbtn-pixel:nth-child(27),
.pxbtn-icon-right .pxbtn-pixel:nth-child(37),
.pxbtn-icon-right .pxbtn-pixel:nth-child(38) {
  background-color: transparent;
  box-shadow: none;
  animation: none;
}

.pxbtn-icon-right .pxbtn-pixel:nth-child(12),
.pxbtn-icon-right .pxbtn-pixel:nth-child(13),
.pxbtn-icon-right .pxbtn-pixel:nth-child(23),
.pxbtn-icon-right .pxbtn-pixel:nth-child(24),
.pxbtn-icon-right .pxbtn-pixel:nth-child(40),
.pxbtn-icon-right .pxbtn-pixel:nth-child(41) {
  background-color: #fff;
  box-shadow: 0 0 2px rgba(255, 255, 255, .35);
  animation: pxPulse 1.2s infinite ease-in-out;
  animation-delay: 0s;
}

@keyframes pxPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .45;
  }
}

.pxbtn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: #fff;
  font-family: 'Belanosima', sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1;
  user-select: none;
}

.pxbtn-letter {
  display: inline-block;
}

/* nav variant */
.pxbtn-nav {
  min-width: 0;
  width: auto;
  height: 38px;
  padding: 0 52px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35), inset 0 -5px 9px rgba(0, 0, 0, .2), 0 0 26px #ff4d8188;
}

.pxbtn-nav:hover {
  transform: translate(1px, 1px);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .4), inset 0 -5px 9px rgba(0, 0, 0, .2), 0 0 30px #ff4d81aa;
}

.pxbtn-nav:active {
  transform: translate(3px, 3px);
}

.pxbtn-nav .pxbtn-icon-left  { left: 12px; }
.pxbtn-nav .pxbtn-icon-right { right: 12px; }

.pxbtn-nav .pxbtn-pixel {
  width: 2.1px;
  height: 2.1px;
}

.pxbtn-nav .pxbtn-text {
  font-size: 13px;
}

@media (max-width: 520px) {
  .pxbtn-nav {
    height: 34px;
    padding: 0 42px;
  }

  .pxbtn-nav .pxbtn-icon-left  { left: 9px; }
  .pxbtn-nav .pxbtn-icon-right { right: 9px; }

  .pxbtn-nav .pxbtn-text {
    font-size: 12px;
  }
}

/* ============ PAGE HEADER ============ */
.legal-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(140px, 18vh, 200px) 24px 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 52% 70% at 86% 14%, rgba(230, 19, 85, .11) 0%, rgba(230, 19, 85, .035) 32%, transparent 70%),
    linear-gradient(118deg, #0b0b0d 0%, #020203 52%, #09070a 100%);
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 84px 84px, 84px 84px;
  -webkit-mask-image: radial-gradient(ellipse 76% 88% at 50% 30%, #000 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 88% at 50% 30%, #000 0%, transparent 100%);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero-inner.is-wide {
  max-width: 1000px;
}

.legal-title {
  font-family: 'Belanosima', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.05;
  margin-top: 14px;
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--red-wash);
  border: 0.5px solid var(--red-line);
  font-size: 12px;
  font-weight: 600;
  color: var(--red-pale);
}

.legal-intro {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text2);
  max-width: 680px;
}

/* ============ BODY ============ */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 24px 100px;
}

.legal-body.is-wide {
  max-width: 1000px;
}

/* table of contents */
.legal-toc {
  margin: 0 0 48px;
  padding: 22px 24px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-toc h2 {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  display: flex;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text2);
  transition: color .15s;
}

.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--text3);
  font-weight: 600;
  flex-shrink: 0;
}

.legal-toc a:hover {
  color: var(--red-light);
}

@media (max-width: 640px) {
  .legal-toc ol {
    grid-template-columns: 1fr;
  }
}

/* sections */
.legal-sec {
  padding-top: 8px;
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.legal-sec h2 {
  font-family: 'Belanosima', sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.legal-sec h2 .num {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red-light);
  flex-shrink: 0;
}

.legal-sec h3 {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 8px;
}

.legal-sec p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text2);
  margin-bottom: 14px;
}

.legal-sec p:last-child {
  margin-bottom: 0;
}

.legal-sec a:not(.legal-plain):not(.pxbtn) {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-sec ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.legal-sec ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
}

.legal-sec ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red-light);
}

.legal-sec ul li strong,
.legal-sec p strong {
  color: var(--text);
  font-weight: 600;
}

.legal-divider {
  height: 1px;
  background: var(--line2);
  border: none;
  margin: 40px 0;
}

/* callout */
.legal-note {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--red-wash), transparent 70%);
  border: 1px solid var(--red-line);
  border-radius: 14px;
}

.legal-note svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke: var(--red-light);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text2);
}

.legal-note.is-green {
  background: linear-gradient(135deg, rgba(41, 199, 111, .12), transparent 70%);
  border-color: rgba(41, 199, 111, .38);
}

.legal-note.is-green svg {
  stroke: var(--green);
}

.legal-note.is-gold {
  background: linear-gradient(135deg, rgba(242, 181, 68, .12), transparent 70%);
  border-color: rgba(242, 181, 68, .38);
}

.legal-note.is-gold svg {
  stroke: var(--gold);
}

/* contact / info card */
.legal-contact {
  padding: 26px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.legal-contact h3 {
  margin-top: 0;
  font-family: 'Belanosima', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.legal-contact dl {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.legal-contact dl > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 14px;
}

.legal-contact dt {
  min-width: 92px;
  color: var(--text3);
  font-weight: 600;
}

.legal-contact dd {
  color: var(--text2);
}

.legal-contact dd a {
  color: var(--red-light);
}

/* ---- generic card grid (about / contact pages) ---- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.legal-card {
  padding: 22px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .15s, background .15s;
}

.legal-card:hover {
  border-color: var(--red-line);
  background: var(--bg2);
}

.legal-card-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--red-wash);
  border: 0.5px solid var(--red-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.legal-card-ico svg {
  width: 15px;
  height: 15px;
  stroke: var(--red-light);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-card h3 {
  font-family: 'Belanosima', sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin: 0 0 7px;
  color: var(--text);
}

.legal-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text2);
  margin: 0;
}

.legal-card a {
  color: var(--red-light);
}

/* ---- comparison / status rows ---- */
.legal-rows {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.legal-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-row-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-row-mark svg {
  width: 10px;
  height: 10px;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-row.is-yes .legal-row-mark {
  background: rgba(41, 199, 111, .15);
}

.legal-row.is-yes .legal-row-mark svg {
  stroke: var(--green);
}

.legal-row.is-no .legal-row-mark {
  background: var(--bg3);
}

.legal-row.is-no .legal-row-mark svg {
  stroke: var(--text3);
}

.legal-row-txt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text2);
}

.legal-row-txt b {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ---- steps ---- */
.legal-steps {
  display: grid;
  gap: 10px;
  counter-reset: step;
  margin: 0 0 18px;
}

.legal-step {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 54px;
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-step::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red-wash);
  border: 0.5px solid var(--red-line);
  color: var(--red-light);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-step b {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.legal-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text2);
}

/* ---- CTA band ---- */
.legal-cta {
  margin-top: 8px;
  padding: 40px 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--red-wash), transparent 70%);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.legal-cta h2 {
  font-family: 'Belanosima', sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
}

.legal-cta p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 24px;
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 32px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line2);
}

.foot-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: nowrap;
  gap: 48px;
}

.foot-brand-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}

.foot-about {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text2);
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12px 36px;
  justify-content: end;
}

.foot-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.foot-col b {
  display: block;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 3px;
}

.foot-col a {
  display: block;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text2);
}

.foot-col a:hover {
  color: var(--text);
}

.foot-bottom {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 48px auto 0;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 760px) {
  .foot-row {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 32px;
  }

  .foot-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    width: 100%;
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .foot-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .legal-body {
    padding: 8px 20px 72px;
  }

  .legal-cta {
    padding: 32px 20px;
  }
}
