:root {
  --black: #030405;
  --ink: #090b0c;
  --ink-2: #0d1011;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.074);
  --line: rgba(255, 255, 255, 0.105);
  --text: #f7f7f2;
  --muted: #aab1ac;
  --soft: #dfe4df;
  --orange: #ffad45;
  --violet: #f0f4ff;
  --blue: #9bcfff;
  --green: #72d39a;
  --chrome: #f8fbff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% -8%, rgba(155, 207, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #020303 0%, var(--black) 42%, #070909 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav a,
.topbar-action,
.button,
.example-grid a,
.footer-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 850;
}

.brand span span {
  color: var(--chrome);
}

.brand-symbol {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(248, 251, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045));
  color: var(--text);
  font-size: 0.9rem;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.topbar-action:hover,
.footer-link:hover {
  color: var(--text);
}

.topbar-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  font-weight: 750;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
  min-height: calc(88vh - 68px);
  padding: 76px 72px 68px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(3, 4, 5, 1) 0%, rgba(3, 4, 5, 0.96) 38%, rgba(3, 4, 5, 0.7) 70%, rgba(3, 4, 5, 0.9) 100%),
    radial-gradient(circle at 58% 26%, rgba(255, 255, 255, 0.08), transparent 18rem),
    url("assets/risework-glossy-black-background.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.78);
  opacity: 0.88;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(0deg, var(--black), rgba(3, 4, 5, 0));
}

.skill-ticker {
  position: absolute;
  top: 50%;
  right: clamp(52px, 9vw, 150px);
  z-index: 2;
  width: min(460px, calc(100vw - 40px));
  padding: 22px 24px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(160, 168, 172, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px) saturate(1.12);
}

.skill-ticker > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticker-window {
  height: 128px;
  overflow: hidden;
}

.ticker-window ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: skill-cycle 48s steps(8) infinite;
}

.ticker-window li {
  display: grid;
  align-content: center;
  height: 128px;
  color: var(--text);
}

.ticker-window strong {
  display: block;
  color: var(--text);
  font-size: 1.52rem;
  font-weight: 890;
  line-height: 1.1;
}

.ticker-window p {
  max-width: 390px;
  margin: 8px 0 0;
  color: #c4cbc6;
  font-size: 1.04rem;
  line-height: 1.38;
}

@keyframes skill-cycle {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1024px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-window ul {
    animation: none;
  }
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  width: max-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 155, 33, 0.24);
  border-radius: 999px;
  background: rgba(255, 155, 33, 0.11);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 5.25rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--violet);
  text-shadow: 0 0 28px rgba(155, 207, 255, 0.15);
}

h2 {
  margin-bottom: 18px;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-copy,
.section-lede p,
.copy-block,
.pricing-copy p,
.audit-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-copy {
  max-width: 760px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.rating-row span,
.service-link,
.stat-strip div,
.process-grid article,
.testimonial-grid article,
.mini-form,
.quote-band {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.026));
}

.rating-row span {
  padding: 10px 13px;
  color: var(--soft);
  font-weight: 820;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: #170d04;
  box-shadow: 0 14px 36px rgba(255, 155, 33, 0.18);
}

.button-primary::after {
  content: "->";
  margin-left: 10px;
}

.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.subnote {
  margin-top: 12px;
  color: #89918b;
  font-size: 0.92rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 36px 72px;
  border-bottom: 1px solid var(--line);
  background: #050707;
  text-align: center;
}

.stats-section strong {
  display: block;
  color: var(--orange);
  font-size: 2.55rem;
  line-height: 1;
}

.stats-section span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 720;
}

.diagnostic-panel {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(8, 10, 11, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-label {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-label span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-label strong {
  max-width: 430px;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.08;
}

.diagnostic-panel ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnostic-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.diagnostic-panel li:last-child {
  border-bottom: 0;
}

.diagnostic-panel li span {
  grid-row: span 2;
  color: var(--blue);
  font-weight: 900;
}

.diagnostic-panel li strong {
  display: block;
  font-size: 1.03rem;
}

.diagnostic-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.section {
  padding: 82px 72px;
  border-bottom: 1px solid var(--line);
}

.intro-band,
.pricing-section,
.audit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
  background:
    radial-gradient(circle at 86% 0%, rgba(155, 207, 255, 0.055), transparent 28rem),
    var(--ink);
}

.section-lede {
  max-width: 760px;
}

.section-lede.narrow {
  max-width: 850px;
  margin-bottom: 30px;
}

.copy-block {
  max-width: 760px;
}

.signal-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.signal-list span {
  display: grid;
  gap: 7px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-weight: 500;
}

.signal-list strong {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 850;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat-strip div {
  min-height: 104px;
  padding: 18px;
}

.stat-strip strong {
  display: block;
  color: var(--orange);
  font-size: 2.1rem;
  line-height: 1;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.32;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.032);
  box-shadow: var(--shadow);
}

.service-matrix article {
  min-height: 478px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.service-matrix article:last-child {
  border-right: 0;
}

.service-matrix span,
.example-grid span,
.pricing-card > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-matrix p,
.service-matrix li,
.pricing-card li {
  color: var(--muted);
  line-height: 1.5;
}

.service-matrix .service-outcome {
  margin: 14px 0 0;
  color: var(--soft);
  font-weight: 720;
}

.service-matrix ul,
.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 13px;
  color: var(--text);
  font-weight: 830;
  text-decoration: none;
}

.service-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--orange);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
}

.quote-band p {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.examples-band {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(360px, 1fr);
  gap: 70px;
  background: #050707;
}

.system-snapshot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 6%, rgba(155, 207, 255, 0.07), transparent 30rem),
    var(--ink);
}

.system-snapshot-card {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.028);
  box-shadow: var(--shadow);
}

.system-snapshot-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  filter: saturate(0.88) contrast(1.06) brightness(0.9);
}

.system-snapshot-card figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.example-grid {
  display: grid;
  gap: 14px;
}

.example-grid a {
  display: grid;
  gap: 8px;
  min-height: 144px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.example-grid a:hover {
  border-color: rgba(255, 155, 33, 0.42);
  background: var(--panel-strong);
}

.example-grid span {
  margin-bottom: 0;
}

.example-grid strong {
  max-width: 540px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 118px;
  padding: 20px;
}

.process-grid span {
  grid-row: span 2;
  color: var(--blue);
  font-weight: 900;
}

.process-grid strong {
  color: var(--text);
  font-size: 1.24rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.process-button {
  width: max-content;
  margin: 22px auto 0;
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 0.55fr);
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.045), transparent 30rem),
    var(--ink);
}

.mini-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.mini-form p,
.form-status,
.downloaded {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  color: var(--soft);
  font-weight: 720;
}

.downloaded {
  margin-top: 18px;
  color: var(--soft);
  font-weight: 760;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-grid article {
  min-height: 330px;
  padding: 24px;
}

.testimonial-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 155, 33, 0.12);
  color: var(--orange);
  font-weight: 860;
  text-transform: uppercase;
}

.stars {
  color: var(--orange);
  letter-spacing: 0;
}

blockquote {
  margin: 18px 0 24px;
  color: var(--soft);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-grid strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.testimonial-grid p {
  margin: 4px 0 0;
  color: var(--muted);
}

.start-options-section {
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 173, 69, 0.07), transparent 26rem),
    #050707;
}

.start-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.start-options-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 314px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.026);
  box-shadow: var(--shadow);
}

.start-options-grid .call-option {
  border-color: rgba(255, 173, 69, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 173, 69, 0.14), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.026);
}

.start-options-grid span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.start-options-grid h3 {
  margin: 4px 0 0;
  font-size: 2rem;
}

.start-options-grid p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.58;
}

.start-options-grid .button {
  width: max-content;
  margin-top: auto;
}

.pricing-card,
.audit-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.032)),
    rgba(3, 4, 5, 0.72);
  box-shadow: var(--shadow);
}

.pricing-card {
  padding: 28px;
}

.pricing-card > strong {
  display: block;
  margin-bottom: 22px;
  font-size: 2.9rem;
  line-height: 1;
}

.pricing-card .button {
  width: 100%;
  margin-top: 22px;
}

.pricing-card .button + .button {
  margin-top: 12px;
}

.calendly-button::after {
  content: "";
  margin-left: 0;
}

.package-note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--soft);
  line-height: 1.48;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(112, 184, 255, 0.42);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.audit-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 128px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 155, 33, 0.5);
  outline-offset: 2px;
}

.audit-form .button {
  width: 100%;
}

.audit-form .button + .button {
  margin-top: 0;
}

.audit-form p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.audit-form a {
  color: var(--orange);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list span {
  display: block;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  font-weight: 760;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px 72px;
}

.footer p {
  margin: 0;
  font-size: 0.96rem;
}

.footer-link {
  color: var(--soft);
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav a {
  text-decoration: none;
}

@media (max-width: 1120px) {
  .topbar,
  .hero,
  .section,
  .stats-section,
  .footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero,
  .intro-band,
  .examples-band,
  .system-snapshot-section,
  .pricing-section,
  .audit-section,
  .checklist-section {
    grid-template-columns: 1fr;
  }

  .diagnostic-panel {
    max-width: 720px;
  }

  .service-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .start-options-grid {
    grid-template-columns: 1fr;
  }

  .service-matrix article:nth-child(2) {
    border-right: 0;
  }

  .service-matrix article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 62px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .topbar-action {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.88rem;
  }

  .hero,
  .section {
    padding: 46px 20px;
  }

  .stats-section {
    grid-template-columns: 1fr;
    padding: 34px 20px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .skill-ticker {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }

  .hero-art {
    background-position: 62% center;
  }

  h1 {
    font-size: 3.34rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.34rem;
  }

  .hero-copy,
  .section-lede p,
  .copy-block,
  .pricing-copy p,
  .audit-copy p {
    font-size: 1rem;
  }

  .hero-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .diagnostic-panel li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px;
  }

  .signal-list,
  .service-matrix,
  .stat-strip,
  .system-snapshot-section {
    grid-template-columns: 1fr;
  }

  .quote-band {
    grid-template-columns: 1fr;
  }

  .service-matrix article,
  .service-matrix article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-matrix article:last-child {
    border-bottom: 0;
  }

  .pricing-card > strong {
    font-size: 2.35rem;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .footer-nav {
    display: grid;
    gap: 10px;
  }
}
