:root {
  --navy: #091f36;
  --navy-2: #102a49;
  --blue: #066dea;
  --purple: #1a01ac;
  --magenta: #d84cff;
  --ink: #0d2238;
  --muted: #526578;
  --line: #d8e1ea;
  --soft: #f3f6f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 31, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 18px;
  color: var(--navy);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
}

.social-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 36px;
  padding: 4px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #06182b;
  color: rgba(255, 255, 255, 0.62);
}

.social-utility > span {
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link span {
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1;
}

.social-link-instagram span {
  font-size: 1.08rem;
  font-weight: 520;
}

.social-link-linkedin span {
  font-size: 0.68rem;
  letter-spacing: -0.04em;
}

.social-link-facebook span {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.social-link:hover {
  border-color: var(--magenta);
  background: rgba(216, 76, 255, 0.14);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 12px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 31, 54, 0.97);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
  font-size: 1.42rem;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.brand > span > span,
.footer-brand span {
  color: var(--magenta);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(216, 76, 255, 0.5), 0 0 22px rgba(216, 76, 255, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 550;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(216, 76, 255, 0.7);
  border-radius: 9px;
  padding: 11px 18px;
  background: rgba(216, 76, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 680;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: var(--magenta);
  background: rgba(216, 76, 255, 0.16);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(480px, 0.8fr);
  min-height: calc(100vh - 122px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 44%, rgba(6, 109, 234, 0.13), transparent 27%),
    radial-gradient(circle at 68% 72%, rgba(216, 76, 255, 0.08), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(88px, 10vw, 142px) clamp(38px, 4vw, 64px);
  animation: rise-in 520ms ease both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.5rem, 4.3vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: #385069;
  font-size: clamp(1.08rem, 1.38vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  border-radius: 10px;
  padding: 0 24px;
  font-size: 0.98rem;
  font-weight: 720;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button span {
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translateX(4px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 30px rgba(26, 1, 172, 0.18);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(26, 1, 172, 0.25);
}

.button-secondary {
  border: 1px solid #9aaabb;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: #f2f7ff;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 38px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #cbd7e2;
  color: #2f455d;
  font-size: 0.84rem;
  font-weight: 630;
  list-style: none;
}

.hero-services li {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-services li:not(:last-child)::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 720px;
  border-left: 1px solid rgba(9, 31, 54, 0.07);
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 31, 54, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 31, 54, 0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(216, 76, 255, 0.45) 1.2px, transparent 1.5px);
  background-position: 0 0, 0 0, 16px 16px;
  background-size: 112px 112px, 112px 112px, 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 85%, transparent);
  opacity: 0.68;
}

.hero-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(640px, calc(100% - 70px));
  margin: clamp(95px, 13vh, 145px) auto;
}

.hero-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border: 1px solid rgba(9, 31, 54, 0.14);
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  animation: rise-in 540ms ease both;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-card:nth-child(2) {
  animation-delay: 70ms;
}

.hero-card:nth-child(3) {
  animation-delay: 140ms;
}

.hero-card:nth-child(4) {
  animation-delay: 210ms;
}

.hero-card:hover {
  border-color: rgba(6, 109, 234, 0.38);
  box-shadow: 0 28px 78px rgba(9, 31, 54, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 4px;
  width: 46px;
  height: 46px;
  place-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 8px 22px rgba(26, 1, 172, 0.18);
}

.card-icon span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
}

.hero-card h2 {
  margin: 24px 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.card-status {
  display: flex;
  gap: 5px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9d4df;
}

.card-status span:first-child {
  background: var(--magenta);
}

.card-index {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: #bec9d4;
  font-size: 0.7rem;
  font-weight: 750;
}

.section {
  padding: clamp(90px, 10vw, 154px) clamp(28px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  gap: 40px 80px;
  max-width: 1380px;
  margin: 0 auto 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1380px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: #f8fbff;
  box-shadow: 0 20px 60px rgba(9, 31, 54, 0.08);
  transform: translateY(-3px);
}

.service-number {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 58px 0 20px;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 730;
}

.service-card a span {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 90px;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7vw, 112px);
  background:
    radial-gradient(circle at 12% 10%, rgba(6, 109, 234, 0.2), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(216, 76, 255, 0.13), transparent 30%),
    var(--navy);
  color: var(--white);
}

.eyebrow-light {
  color: #a9c9ff;
}

.method-intro h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.method-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: #c2cfdb;
  font-size: 1.05rem;
  line-height: 1.75;
}

.dpo-callout {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 48px;
  border-left: 3px solid var(--magenta);
  padding: 4px 0 4px 24px;
}

.dpo-callout span {
  color: #aac9ff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dpo-callout strong {
  font-size: 1.18rem;
  line-height: 1.45;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 30px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 180ms ease, padding 180ms ease;
}

.method-list li:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.method-list li > span {
  color: var(--magenta);
  font-size: 0.75rem;
  font-weight: 760;
}

.method-list h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
}

.method-list p {
  max-width: 580px;
  margin: 0;
  color: #b7c5d3;
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  max-width: 1580px;
  margin: 0 auto;
}

.about-brand {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(9, 31, 54, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 31, 54, 0.06) 1px, transparent 1px),
    #f4f7fb;
  background-size: 54px 54px;
}

.about-brand::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(6, 109, 234, 0.28);
  border-radius: 50%;
  content: "";
}

.about-brand img {
  position: relative;
  z-index: 3;
  width: 188px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(216, 76, 255, 0.2);
}

.about-orbit {
  position: absolute;
  z-index: 2;
  width: 410px;
  height: 190px;
  border: 1px solid rgba(216, 76, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.about-copy {
  max-width: 820px;
}

.about-lead {
  margin: 34px 0 0;
  color: #263e56;
  font-size: 1.17rem;
  line-height: 1.75;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.about-values div {
  padding: 24px 24px 0 0;
}

.about-values div + div {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.about-values dt {
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 760;
}

.about-values dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  padding: clamp(82px, 9vw, 132px) clamp(28px, 7vw, 112px);
  background: linear-gradient(135deg, var(--blue), var(--purple) 68%, #3b087f);
  color: var(--white);
}

.contact-section h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-section > div:first-child > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.77);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-actions a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: padding 180ms ease, background 180ms ease;
}

.contact-actions a:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  overflow-wrap: anywhere;
}

.contact-actions b {
  font-size: 1.45rem;
  font-weight: 400;
}

.site-footer {
  padding: 58px clamp(28px, 6vw, 96px) 30px;
  background: #06182b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.footer-top p {
  margin: 0;
  text-align: center;
}

.footer-top > a:last-child {
  justify-self: end;
  color: var(--white);
}

.privacy-note {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 18px;
}

.privacy-note summary {
  width: fit-content;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 650;
}

.privacy-note p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  line-height: 1.7;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
}

.footer-bottom a:hover,
.footer-top > a:last-child:hover {
  color: var(--magenta);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual {
    min-height: 630px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-card-grid {
    margin: 75px auto;
  }

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

  .method-section {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-section {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 60px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  .social-utility {
    justify-content: center;
    min-height: 38px;
    padding: 5px 18px;
  }

  .social-utility > span {
    display: none;
  }

  .site-header {
    min-height: 74px;
    padding: 10px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 8px;
    font-size: 1.12rem;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 0;
    padding: 82px 22px 70px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.68rem;
  }

  .eyebrow::before {
    width: 28px;
    margin-top: 8px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: space-between;
  }

  .hero-services {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-services li::after {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 48px 18px;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .hero-card {
    min-height: 220px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

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

  .service-card {
    min-height: 360px;
  }

  .method-section {
    padding: 88px 22px;
  }

  .method-list li {
    grid-template-columns: 42px 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 88px 22px;
  }

  .about-brand {
    min-height: 390px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values div + div {
    margin-top: 20px;
    border-left: 0;
    padding-left: 0;
  }

  .contact-section {
    gap: 58px;
    padding: 86px 22px;
  }

  .contact-actions a {
    grid-template-columns: 1fr auto;
  }

  .contact-actions span {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-top > a:last-child {
    justify-self: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}

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

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