:root {
  --navy: #0b2f5b;
  --navy-dark: #08284d;
  --navy-deep: #08264a;
  --navy-ink: #102a4c;
  --green: #62b77a;
  --green-strong: #4bb77a;
  --green-soft: #e6f6ee;
  --orange: #f7a51d;
  --text: #102a4c;
  --muted: #647286;
  --muted-light: #aeb9c8;
  --bg-soft: #f3f7fb;
  --border: #d9e3ee;
  --white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(8, 38, 74, 0.08);
  --shadow-card: 0 2px 8px rgba(8, 38, 74, 0.06);
  --container: 1280px;
  --header-height: 88px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --section-space: 116px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg-soft);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(98, 183, 122, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 13px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  min-height: 42px;
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 5px 14px rgba(8, 38, 74, 0.22);
}

.btn-dark:hover {
  background: #123967;
  box-shadow: 0 8px 20px rgba(8, 38, 74, 0.3);
}

.btn-green {
  background: var(--green);
  color: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(62, 142, 91, 0.22);
}

.hero .btn-green {
  color: var(--white);
}

.btn-green:hover {
  background: #70c789;
  box-shadow: 0 16px 32px rgba(62, 142, 91, 0.32);
}

.btn-white {
  background: var(--white);
  color: #243046;
  box-shadow: 0 10px 26px rgba(8, 38, 74, 0.12);
}

.btn-white:hover {
  background: #f7fafc;
  box-shadow: 0 14px 32px rgba(8, 38, 74, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 227, 238, 0);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(217, 227, 238, 0.9);
  box-shadow: 0 10px 24px rgba(8, 38, 74, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 42px;
  background: #d6dee8;
}

.treasury-lockup {
  display: grid;
  gap: 1px;
  color: #778294;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #697487;
  font-size: 16px;
  font-weight: 800;
}

.site-nav>a:not(.btn) {
  transition: color 180ms ease;
}

.site-nav>a:not(.btn):hover {
  color: var(--navy-deep);
}

.nav-cta {
  padding-inline: 28px 22px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #4BAF75;
  color: #ffffff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(8, 38, 74, 0.1);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  height: 33vw;
  max-height: 680px;
  isolation: isolate;
  background-image: url("../assets/hero-digigov.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 29, 54, 0.52) 0%, rgba(7, 29, 54, 0.25) 37%, rgba(7, 29, 54, 0) 70%);
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 615px;
  margin-top: 20px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: 66px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-orange {
  color: var(--orange);
}

.hero-green {
  color: var(--green);
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(4, 20, 38, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 238px;
}

.logo-strip {
  background: var(--white);
  padding: 42px 0 68px;
}

.logo-strip-label {
  margin: 0 0 24px;
  color: #273449;
  font-size: 15px;
  font-weight: 500;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, var(--white) 15%, var(--white) 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, var(--white) 15%, var(--white) 85%, transparent);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 68px;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-carousel-track:hover {
  animation-play-state: paused;
}

.logo-img {
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-presidency {
  height: 92px;
}

.logo-sarb {
  height: 82px;
}

.logo-home-affairs {
  height: 82px;
}

.logo-mymzansi {
  height: 104px;
}

.logo-national-treasury {
  height: 82px;
}

.logo-mzansixchange {
  height: 74px;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

.section {
  padding: var(--section-space) 0;
}

.section-soft {
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title {
  max-width: 770px;
  margin: 0;
  color: var(--navy-ink);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy {
  max-width: 1135px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

.section-copy p {
  margin: 0;
}

.section-copy p+p {
  margin-top: 30px;
}

.wide-copy {
  max-width: 1220px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 64px;
}

.feature-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.comparison-card,
.approach-callout,
.timeline-card {
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.feature-card:hover,
.comparison-card:hover,
.approach-callout:hover,
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(8, 38, 74, 0.12);
}

.feature-card {
  position: relative;
  min-height: 248px;
  border-radius: var(--radius-md);
  padding: 28px 28px 26px;
}

.card-icon,
.soft-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 23px;
}

.soft-icon {
  background: var(--green-soft);
  color: var(--green);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: #788397;
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 28px 0 8px;
  color: var(--navy-ink);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.22;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-approach {
  padding-top: 126px;
  border-top: 1px solid #dfe8f2;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 66px;
}

.comparison-card {
  min-height: 310px;
  border-radius: var(--radius-lg);
  padding: 38px;
}

.comparison-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #6d788a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.comparison-topline small {
  font: inherit;
}

.comparison-card h3 {
  margin: 0 0 26px;
  color: var(--navy-ink);
  font-size: 27px;
  line-height: 1.2;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.35;
}

.check-list span {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-deep);
  font-size: 14px;
}

.muted-list li {
  color: var(--muted);
}

.muted-list span {
  background: #edf3f8;
  color: #91a0af;
}

.comparison-digigov {
  border-color: transparent;
  background: var(--navy-deep);
  box-shadow: 0 22px 52px rgba(8, 38, 74, 0.22);
}

.comparison-digigov:hover {
  box-shadow: 0 28px 64px rgba(8, 38, 74, 0.32);
}

.comparison-digigov .comparison-topline {
  color: var(--green);
}

.comparison-digigov h3 {
  color: var(--white);
}

.recommended {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(98, 183, 122, 0.75);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--green);
  text-transform: none;
}

.recommended::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.approach-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  color: var(--navy-ink);
}

.callout-icon {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 26px;
}

.approach-callout p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.security-section {
  background: var(--navy-deep);
  color: var(--white);
}

.security-section .section-title {
  max-width: 860px;
  color: var(--white);
}

.lead-green {
  margin: 34px 0 22px;
  color: var(--green);
  font-size: 23px;
  font-weight: 900;
}

.security-copy {
  max-width: 1210px;
  margin: 0;
  color: rgba(227, 235, 246, 0.78);
  font-size: 21px;
  line-height: 1.6;
}

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

.security-card {
  min-height: 236px;
  border: 1px solid rgba(144, 180, 214, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(41, 75, 118, 0.36);
  padding: 32px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 12px rgba(98, 183, 122, 0.15);
}

.outline-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid rgba(98, 183, 122, 0.75);
  border-radius: 18px;
  color: var(--green);
  font-size: 24px;
}

.security-card h3 {
  margin: 28px 0 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.security-card p {
  margin: 0;
  color: rgba(227, 235, 246, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.highlight-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  border: 1px solid rgba(98, 183, 122, 0.26);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 67, 96, 0.74), rgba(13, 47, 88, 0.82));
  padding: 42px 36px 46px;
}

.highlight-panel .eyebrow {
  margin-bottom: 8px;
}

.highlight-panel h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.15;
}

.highlight-panel p:last-child {
  max-width: 920px;
  margin: 0;
  color: rgba(227, 235, 246, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.highlight-icon {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--green);
  color: var(--navy-deep);
  font-size: 24px;
}

.compact-card {
  min-height: 216px;
  padding: 32px;
}

.compact-card h3 {
  margin-top: 30px;
}

.timeline-card {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  padding: 34px 42px 34px;
  overflow-x: auto;
}

.timeline-steps {
  position: relative;
  display: grid;
  min-width: 760px;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}

.timeline-line {
  position: absolute;
  top: 23px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #dfe7f0;
}

.timeline-step {
  position: relative;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: #edf4fb;
  color: var(--navy-ink);
  font-size: 14px;
  font-weight: 900;
}

.timeline-step.active .timeline-dot {
  width: 56px;
  height: 56px;
  margin-top: -7px;
  margin-bottom: 15px;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
}

.timeline-step h3 {
  margin: 0 0 2px;
  color: var(--navy-ink);
  font-size: 16px;
  line-height: 1.25;
}

.timeline-step p {
  margin: 0;
  color: #6c7686;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  background: var(--bg-soft);
  padding: 112px 0 126px;
}

.cta-card {
  max-width: 1220px;
  min-height: 600px;
  margin-inline: auto;
  border-radius: 28px;
  background: var(--navy-deep);
  box-shadow: 0 28px 72px rgba(8, 38, 74, 0.18);
  color: var(--white);
  padding: 86px 92px;
}

.initiative-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  border: 1px solid rgba(179, 199, 222, 0.22);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.initiative-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.cta-card h2 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 62px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-card p:not(.initiative-pill) {
  max-width: 1040px;
  margin: 0;
  color: rgba(227, 235, 246, 0.76);
  font-size: 21px;
  line-height: 1.55;
}

.cta-card p+p:not(.initiative-pill) {
  margin-top: 18px;
}

.cta-card .btn {
  margin-top: 54px;
  min-width: 218px;
}

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 34px 0 54px;
}

.footer-inner {
  max-width: 1220px;
}

.footer-brand img {
  width: 236px;
  height: auto;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--navy-ink);
  font-size: 18px;
  font-weight: 900;
}

.footer-rule {
  height: 1px;
  margin: 34px 0 30px;
  background: var(--border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #768297;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #657287;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom nav a+a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 26px;
  border-radius: 50%;
  background: #d0d8e2;
  vertical-align: middle;
}

.footer-bottom a:hover {
  color: var(--navy-deep);
}

@media (max-width: 1180px) {
  :root {
    --section-space: 94px;
  }

  .brand-logo {
    width: 210px;
  }

  .site-nav {
    gap: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section-title {
    font-size: 48px;
  }

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

  .logo-carousel-track {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
    --section-space: 78px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 172px;
  }

  .brand-divider,
  .treasury-lockup {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    visibility: hidden;
    transform: translateY(-8px);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .btn {
    margin-top: 6px;
    padding: 0 20px;
  }

  .hero {
    min-height: 720px;
    height: auto;
    max-height: none;
    background-position: 62% top;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 29, 54, 0.74) 0%, rgba(7, 29, 54, 0.64) 56%, rgba(7, 29, 54, 0.28) 100%);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 78px;
  }

  .hero-copy {
    width: min(100%, 560px);
    margin-top: 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p,
  .section-copy,
  .security-copy,
  .cta-card p:not(.initiative-pill) {
    font-size: 19px;
  }

  .section-title {
    font-size: 42px;
  }

  .comparison-grid,
  .security-grid,
  .feature-grid-three {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    min-height: auto;
  }

  .cta-card {
    min-height: auto;
    padding: 58px 40px;
  }

  .cta-card h2 {
    font-size: 46px;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero {
    min-height: 600px;
    background-position: 64% top;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-actions {
    display: grid;
  }

  .logo-strip {
    padding: 34px 0 48px;
  }

  .logo-carousel-track {
    gap: 34px;
    animation-duration: 20s;
  }

  .logo-img {
    max-width: 220px;
    height: 94px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-copy {
    margin-top: 26px;
  }

  .feature-grid,
  .comparison-grid,
  .security-grid {
    margin-top: 42px;
  }

  .feature-grid-four {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .comparison-card,
  .security-card,
  .compact-card {
    padding: 26px;
  }

  .approach-callout,
  .highlight-panel {
    display: grid;
    padding: 28px;
  }

  .highlight-panel h3 {
    font-size: 28px;
  }

  .timeline-card {
    padding: 26px 22px;
  }

  .cta-section {
    padding: 74px 0 86px;
  }

  .cta-card {
    border-radius: 22px;
    padding: 40px 26px;
  }

  .cta-card h2 {
    font-size: 36px;
  }

  .footer-brand img {
    width: 200px;
  }

  .footer-bottom nav {
    gap: 14px;
  }

  .footer-bottom nav a+a::before {
    margin-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}