.hero-content-inner {
  width: 100%;
  max-width: 640px;
}
.accordion {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.accordion details {
  background: rgba(10, 31, 68, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.section.light .accordion details {
  background: var(--color-white);
  color: var(--color-deep-blue);
  border-color: rgba(10, 31, 68, 0.12);
  box-shadow: 0 18px 36px rgba(2, 6, 16, 0.12);
}

.accordion details[open] {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.18);
}

.section.light .accordion details[open] {
  border-color: rgba(10, 31, 68, 0.22);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion details[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-content {
  padding: 0 32px 32px;
  display: grid;
  gap: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.accordion-content p {
  margin: 0;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
}

.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(10, 31, 68, 0.4);
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(10, 31, 68, 0.1);
}

.table {
  width: 100%;
  color: inherit;
  font-size: 15px;
}

.table th,
.table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 31, 68, 0.12);
}

.table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10, 31, 68, 0.75);
}

.card .table th,
.card .table td {
  color: inherit;
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}

.table--compact th,
.table--compact td {
  padding: 16px 20px;
}

.table--grid thead th {
  background: rgba(10, 31, 68, 0.08);
}

.table--grid tbody tr:nth-child(odd) {
  background: rgba(10, 31, 68, 0.04);
}

.table--grid th,
.table--grid td {
  border-bottom: 1px solid rgba(10, 31, 68, 0.12);
}

.table--grid tbody tr:last-child th,
.table--grid tbody tr:last-child td {
  border-bottom: none;
}

.table a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 78, 30, 0.6);
}
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--color-white);
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.partner-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@font-face {
  font-family: "Flama";
  src: url("../fonts/flama/FlamaTrial-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Flama";
  src: url("../fonts/flama/FlamaTrial-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Flama";
  src: url("../fonts/flama/FlamaTrial-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Flama";
  src: url("../fonts/flama/FlamaTrial-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Flama";
  src: url("../fonts/flama/FlamaTrial-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-deep-blue: #0a1f44;
  --color-deep-blue-dark: #06132c;
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-surface-strong: rgba(10, 31, 68, 0.82);
  --color-orange: #ff4e1e;
  --color-teal: #00897b;
  --color-white: #ffffff;
  --color-muted: rgba(226, 237, 255, 0.72);
  --color-text: #ffffff;
  --shadow-lg: 0 28px 60px rgba(2, 6, 16, 0.55);
  --shadow-sm: 0 12px 30px rgba(2, 6, 16, 0.35);
  --max-width: 1180px;
  --font-primary: "Flama", "Montserrat", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: linear-gradient(180deg, var(--color-deep-blue) 0%, var(--color-deep-blue-dark) 100%);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-white);
}

img,
video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

iframe,
video {
  border: 0;
}

::selection {
  background: rgba(255, 107, 51, 0.35);
  color: var(--color-white);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  background: rgba(10, 31, 68, 0.85);
}

header.scrolled {
  background: rgba(6, 19, 44, 0.92);
  box-shadow: 0 14px 40px rgba(2, 6, 16, 0.45);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-white);
}

.logo img {
  height: 40px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 31, 68, 0.8);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(10, 31, 68, 0.92);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  color: var(--color-white);
  padding: 10px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .button {
  padding: 12px 22px;
  border-radius: 4px;
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(255, 78, 30, 0.35);
}

.nav-links .button::after {
  display: none;
}

.nav-links .button:hover {
  opacity: 0.88;
}

main {
  padding-bottom: 140px;
}

.section {
  position: relative;
  width: 100%;
  padding: 110px 0;
}

.section > * {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tagline,
.eyebrow {
  color: var(--color-teal);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 14px;
}

.section p {
  margin: 0 0 16px;
}

.section.light {
  background: var(--color-white);
  color: var(--color-deep-blue);
  box-shadow: none;
}

.section.light .card {
  background: rgba(10, 31, 68, 0.07);
  color: var(--color-deep-blue);
  border-color: rgba(9, 20, 40, 0.12);
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero > .section-content {
  width: 100%;
  margin: 0;
  padding: 0 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 40px 32px 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.hero-content--summary {
  padding: 60px 32px 80px;
  gap: 16px;
}

.hero-content--summary h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

.hero-content--summary p {
  font-size: 16px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.6px;
  color: var(--color-white);
}

.hero-content p {
  max-width: 640px;
  font-size: 16px;
  color: rgba(230, 236, 255, 0.85);
}
.hero-content-inner {
  width: 100%;
  max-width: 640px;
}

.eyebrow {
  font-size: 15px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tagline {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero--video {
  min-height: 92vh;
  display: flex;
  align-items: stretch;
}

.hero--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.08) 0%, rgba(10, 31, 68, 0.55) 55%, rgba(6, 19, 44, 0.82) 100%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(110%) brightness(0.92) contrast(1.05);
}

.hero--simple {
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.96) 0%, rgba(6, 19, 44, 0.96) 100%);
}

.hero--simple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(0, 137, 123, 0.28), transparent 55%);
  z-index: 1;
}

.hero--simple .hero-content {
  padding: 140px 32px 120px;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.cards-three--stacked {
  margin-top: 36px;
}

.grid-two.align-start {
  align-items: flex-start;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-block h2 {
  margin: 0;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 18px 40px rgba(255, 78, 30, 0.35);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(255, 107, 51, 0.4);
}

.cta-button--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  box-shadow: none;
}

.cta-button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.card {
  background: rgba(10, 31, 68, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  color: var(--color-white);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.22);
}

.card h3 {
  margin-top: 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.card.light {
  background: var(--color-white);
  color: var(--color-deep-blue);
  border-color: rgba(10, 31, 68, 0.08);
  box-shadow: 0 24px 48px rgba(2, 6, 16, 0.18);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.metric {
  background: rgba(10, 31, 68, 0.08);
  border: 1px solid rgba(0, 137, 123, 0.45);
  padding: 28px 32px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: rgba(10, 31, 68, 0.9);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.metric span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.metric:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(10, 31, 68, 0.6);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: auto;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.05), rgba(10, 31, 68, 0.65));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-wrapper:hover::after {
  opacity: 1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.tech-update {
  background: var(--color-white);
  color: var(--color-deep-blue);
}

.tech-update .tagline {
  color: var(--color-teal);
}

.tech-update-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.tech-update-header h2 {
  margin: 0;
}

.tech-update-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.tech-update-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 31, 68, 0.06);
  border: 1px solid rgba(10, 31, 68, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

.tech-update-card img {
  height: 220px;
  object-fit: cover;
}

.tech-update-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-update-card h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tech-update-card p {
  margin: 0;
  color: rgba(10, 31, 68, 0.78);
}

.tech-update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(2, 6, 16, 0.18);
}

.gallery img {
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(110%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.media-block {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.media-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 6px rgba(0, 137, 123, 0.18);
}

.floating-media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.floating-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 22, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-media:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.floating-media:hover::after {
  opacity: 1;
}

.contact-info {
  background: rgba(10, 31, 68, 0.9);
  border-radius: 4px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--color-white);
}

form {
  display: grid;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 31, 68, 0.72);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: border 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(10, 31, 68, 0.88);
  transform: translateY(-1px);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-light input,
.form-light textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 31, 68, 0.6);
  color: var(--color-white);
}

.form-light input:focus,
.form-light textarea:focus {
  border-color: var(--color-orange);
  background: rgba(10, 31, 68, 0.82);
}

footer {
  background: linear-gradient(180deg, rgba(6, 19, 44, 0.98) 0%, rgba(4, 12, 28, 1) 100%);
  padding: 72px 24px 48px;
  color: var(--color-muted);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.footer-content h3 {
  color: var(--color-white);
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(146, 160, 191, 0.65);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 16px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    gap: 12px;
    background: rgba(4, 16, 40, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-content {
    padding: 140px 20px 120px;
  }

  .section {
    padding: 90px 0;
  }

  .section > * {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tech-update-gallery {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .gallery img {
    height: 200px;
  }

  .tech-update-gallery {
    grid-template-columns: 1fr;
  }

  .tech-update-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tech-update-header h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .metrics {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  input,
  textarea {
    font-size: 14px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}
