@font-face {
  font-family: "Formular";
  src: url("../fonts/769415_ceefff92e9314d5189276a71b84203ac.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Formular";
  src: url("../fonts/769415_7e31dc2dc6ec4d10b2325c99057e0065.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sana Alt Black";
  src: url("../fonts/769415_213130fd3e68447f9d97dfa23a8adcde.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/769415_76a1ec9ab80247cab347b99018359bea.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Form";
  src: url("../fonts/769415_785b8d0400ee41d28ce8474dca2d5fa0.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #2a2d41;
  --navy-trans: rgba(42, 45, 65, 0.86);
  --red: #ff4d5b;
  --body-blue: #4b5e68;
  --muted: #6f7b8b;
  --white: #fff;
  --black: #000;
  --content: 871px;
  --wide: 951px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Formular", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9000;
  width: min(872px, 100vw);
  height: 52px;
  transform: translateX(-50%);
  background: var(--navy-trans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px 0 24px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  min-width: 260px;
  font-family: "Formular", Arial, sans-serif;
  font-size: 29px;
  line-height: 1;
  white-space: nowrap;
}

.brand strong {
  font-family: "Formular", Arial, sans-serif;
  font-weight: 700;
}

.brand span {
  font-weight: 400;
  margin-left: 5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle .dots {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  gap: 3px;
  justify-content: center;
}

.menu-toggle .dots i {
  display: block;
  width: 4px;
  height: 4px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  background: var(--navy);
  color: var(--white);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__close {
  position: absolute;
  top: 42px;
  right: 54px;
  width: 62px;
  height: 62px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 4px;
  width: 58px;
  height: 4px;
  background: currentColor;
  transform: rotate(45deg);
}

.mobile-menu__close::after {
  transform: rotate(-45deg);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  gap: 76px;
  padding: 120px 22px;
  font-family: "Formular", Arial, sans-serif;
  font-size: clamp(48px, 9.5vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}

.mobile-menu__nav a.active,
.mobile-menu__nav a:hover {
  color: var(--red);
}

.motion-section {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.motion-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-bg__sticky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  min-height: 100%;
  overflow: hidden;
  will-change: transform;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #000;
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero video {
  z-index: 1;
  opacity: 0.64;
}

.hero .hero-fallback {
  z-index: 0;
  background: url("../images/hero-ship.jpg") center / cover no-repeat;
  opacity: 0.64;
  transition: opacity 0.35s ease;
}

.hero.video-ready .hero-fallback {
  opacity: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.36);
}

.hero h1 {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100vw - 40px));
  margin: 0;
  font-family: "Formular", Arial, sans-serif;
  font-size: clamp(42px, 4.35vw, 70px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  animation: heroTitleReveal 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero h1 strong {
  display: block;
  font-weight: 700;
}

[data-motion-enter] {
  opacity: 0;
  transform: translate3d(0, var(--motion-y, 36px), 0);
  clip-path: inset(var(--clip-top, 0) 0 var(--clip-bottom, 0) 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, clip-path;
}

[data-motion-enter].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  clip-path: inset(0 0 0 0);
}

.reveal-down {
  --motion-y: -42px;
  --clip-bottom: 100%;
}

.reveal-up {
  --motion-y: 42px;
  --clip-top: 100%;
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) rotateX(8deg);
    clip-path: inset(0 0 100% 0);
  }
  60% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0deg);
    clip-path: inset(0 0 0 0);
  }
}

.section {
  position: relative;
}

.content {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.wide-content {
  width: min(var(--wide), calc(100% - 48px));
  margin: 0 auto;
}

.about-section {
  min-height: 100vh;
  padding: 27.6vh 0 140px;
  background: var(--white);
}

.section-title {
  margin: 0;
  font-family: "Formular", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.about-section .section-title,
.dark-lead .section-title {
  font-size: clamp(64px, 6.2vw, 100px);
  line-height: 0.9;
}

.about-section .section-title {
  color: var(--navy);
}

.lead-copy,
.body-copy {
  margin: 30px 0 0;
  color: var(--body-blue);
  font-size: 18px;
  line-height: 1.6;
}

.lead-copy p,
.body-copy p {
  margin: 0 0 28px;
}

.stripe-white,
.stripe-red {
  height: 102px;
  background-size: 64px 102px;
}

.stripe-white {
  background-color: var(--white);
  background-image: repeating-linear-gradient(124deg, transparent 0 22px, var(--navy) 22px 34px, transparent 34px 64px);
}

.stripe-red {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(124deg, var(--red) 0 14px, transparent 14px 52px);
}

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

.dark-lead {
  min-height: 601px;
  padding: 65px 0 65px;
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .lead-copy,
.dark-section .body-copy {
  color: var(--white);
}

.powering {
  min-height: 148.42vh;
  padding: 58px 0 63px;
}

.powering h2 {
  margin: 0;
  font-family: "Formular", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-list {
  margin-top: 48px;
  display: grid;
  gap: 58px;
}

.service-item {
  min-height: 157px;
}

.service-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  background: var(--red);
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.service-item h3 {
  margin: 0 0 14px;
  font-family: "Formular", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.service-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.image-section {
  min-height: 105.853vh;
  padding: 320px 0 190px;
  background: #000;
  color: var(--white);
}

.image-section__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)),
    url("../images/cargo-ship-aerial.jpg") center / cover no-repeat;
}

.image-section h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.image-section p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
}

.image-section .content {
  position: relative;
  z-index: 1;
  width: min(746px, calc(100% - 48px));
}

.partnerships {
  min-height: 994px;
  padding: 315px 0 120px;
  background: var(--white);
}

.partnerships h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}

.partnerships p {
  margin: 0 0 30px;
  color: var(--body-blue);
  font-size: 18px;
  line-height: 1.6;
  text-transform: capitalize;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 53px;
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  font-family: "Formular", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.outline-button:hover {
  background: var(--black);
  color: var(--white);
}

.site-footer {
  min-height: 430px;
  background: var(--navy);
  color: var(--white);
  padding: 38px 0 36px;
}

.footer-logo {
  display: inline-flex;
  margin: 40px 0 58px;
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-logo strong {
  font-weight: 700;
}

.footer-logo span {
  margin-left: 8px;
  font-weight: 400;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 260px 1fr;
  gap: 18px;
}

.footer-col h3 {
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
  font-size: 14px;
}

.footer-credit {
  font-size: 8px;
}

.footer-credit strong,
.copyright strong {
  font-weight: 700;
}

.privacy-main,
.contact-main {
  background: var(--white);
}

.legal-content {
  width: min(881px, calc(100% - 48px));
  margin: 0 auto;
  padding: 91px 0 36px;
}

.legal-content h1 {
  margin: 0 0 30px;
  color: var(--muted);
  font-family: "Formular", Arial, sans-serif;
  font-size: clamp(78px, 8vw, 130px);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-content h2,
.legal-content h3 {
  margin: 30px 0 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.legal-content p,
.legal-content li {
  font-size: 18px;
  line-height: 1.6;
}

.legal-content p {
  margin: 0 0 28px;
}

.legal-content ul {
  margin: 0 0 28px 32px;
  padding: 0;
}

.legal-content a {
  text-decoration: underline;
}

.contact-content {
  width: min(953px, calc(100% - 48px));
  margin: 0 auto;
  padding: 129px 0 24px;
}

.contact-content h1 {
  margin: 0 0 84px;
  color: var(--navy);
  font-family: "Formular", Arial, sans-serif;
  font-size: clamp(76px, 6.2vw, 100px);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 24px;
}

.field {
  display: grid;
  gap: 12px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-family: "Wix Form", Arial, sans-serif;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeb7c1;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font-family: "Wix Form", Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  outline: none;
  padding: 0 0 11px;
}

.field textarea {
  min-height: 76px;
  resize: vertical;
}

.form-submit {
  grid-column: 1 / -1;
  height: 45px;
  border: 2px solid var(--body-blue);
  background: transparent;
  color: var(--black);
  font-family: "Wix Form", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--body-blue);
  color: var(--white);
}

.thank-you {
  grid-column: 1 / -1;
  display: none;
  text-align: center;
  color: var(--body-blue);
  font-size: 15px;
}

.thank-you.is-visible {
  display: block;
}

.fingerprint-widget {
  position: fixed;
  left: 35px;
  bottom: 36px;
  z-index: 8000;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #092bb4;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: none;
  cursor: pointer;
}

.fingerprint-widget svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

#cookie-banner,
#cookie-modal {
  letter-spacing: 0;
}

#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #ffffff; border-top: 1px solid #e0e0e0; box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1); padding: 16px 20px; z-index: 9999; font-size: 14px; line-height: 1.5; display: flex; justify-content: space-between; align-items: center; gap: 20px; animation: slideUp 0.4s ease-out; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
#cookie-banner.hidden { display: none !important; }
.cookie-content { flex: 1; display: flex; gap: 16px; align-items: center; }
.cookie-text { color: #333; font-size: 14px; }
.cookie-text a { color: #0066cc; text-decoration: none; font-weight: 500; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-btn { padding: 8px 16px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; min-height: 36px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
.cookie-btn-reject { background: #f0f0f0; color: #333; border: 1px solid #d0d0d0; }
.cookie-btn-reject:hover { background: #e5e5e5; border-color: #bbb; }
.cookie-btn-accept { background: #0066cc; color: white; }
.cookie-btn-accept:hover { background: #0052a3; }
.cookie-close { width: 24px; height: 24px; background: none; border: none; cursor: pointer; color: #666; font-size: 18px; padding: 0; display: flex; align-items: center; justify-content: center; }
.cookie-close:hover { color: #333; }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: none; justify-content: center; align-items: center; z-index: 10000; padding: 20px; }
#cookie-modal.show { display: flex; }
.modal-content { background: white; border-radius: 12px; padding: 28px; max-width: 500px; width: 100%; max-height: 80vh; overflow-y: auto; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); animation: popIn 0.3s ease-out; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
@keyframes popIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-header h2 { font-size: 20px; color: #222; margin: 0; }
.modal-close { width: 28px; height: 28px; background: none; border: none; cursor: pointer; font-size: 24px; color: #666; padding: 0; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { color: #333; }
.cookie-category { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e0e0e0; }
.cookie-category:last-child { border-bottom: none; margin-bottom: 16px; padding-bottom: 0; }
.category-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.category-name { font-weight: 600; color: #222; margin-bottom: 4px; }
.category-desc { font-size: 13px; color: #666; }
.toggle-switch { width: 40px; height: 24px; background: #ccc; border: none; border-radius: 12px; cursor: pointer; position: relative; padding: 0; transition: background 0.2s; flex-shrink: 0; appearance: none; -webkit-appearance: none; }
.toggle-switch::after { content: ''; position: absolute; width: 20px; height: 20px; background: white; border-radius: 50%; top: 2px; left: 2px; transition: left 0.2s; }
.toggle-switch:checked { background: #0066cc; }
.toggle-switch:checked::after { left: 18px; }
.toggle-switch:disabled { cursor: not-allowed; opacity: 0.5; }
.modal-footer { display: flex; gap: 12px; margin-top: 24px; }
.modal-footer button { flex: 1; padding: 10px 16px; border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; }
.modal-btn-reject { background: #f0f0f0; color: #333; }
.modal-btn-reject:hover { background: #e0e0e0; }
.modal-btn-accept { background: #0066cc; color: white; }
.modal-btn-accept:hover { background: #0052a3; }
.cookie-settings-link { color: #0066cc; text-decoration: none; cursor: pointer; font-weight: 500; border: none; background: none; padding: 0; font-size: inherit; font-family: inherit; }
.cookie-settings-link:hover { text-decoration: underline; }

@media (max-width: 1000px) {
  .site-header {
    left: 0;
    width: 100%;
    transform: none;
  }

  .about-section .section-title,
  .dark-lead .section-title {
    font-size: clamp(52px, 13vw, 92px);
  }
}

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

  .site-header {
    height: 83px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu__close {
    top: 30px;
    right: 30px;
  }

  .mobile-menu__nav {
    gap: 58px;
    font-size: 45px;
  }

  .hero {
    min-height: 76.214vh;
    padding-top: 83px;
    place-items: center start;
  }

  .hero video,
  .hero .hero-fallback,
  .hero::after {
    display: none;
  }

  .hero h1 {
    width: 80.256%;
    margin-left: 22px;
    font-size: 53px;
    line-height: 0.95;
    text-align: left;
  }

  .content,
  .wide-content,
  .legal-content,
  .contact-content,
  .image-section .content {
    width: calc(100% - 40px);
  }

  .about-section {
    min-height: 100vh;
    padding: 56px 0 48px;
    display: flex;
    align-items: center;
  }

  .about-section .section-title,
  .dark-lead .section-title {
    font-size: clamp(30px, 11.5vw, 89px);
    line-height: 0.92;
  }

  .lead-copy,
  .body-copy,
  .dark-section .lead-copy,
  .dark-section .body-copy,
  .service-item p,
  .image-section p,
  .partnerships p {
    font-size: 15px;
    line-height: 1.6;
  }

  .legal-content p,
  .legal-content li {
    font-size: 12px;
    line-height: 1.55;
  }

  .lead-copy p,
  .body-copy p {
    margin-bottom: 18px;
  }

  .stripe-white,
  .stripe-red {
    height: 72px;
    background-size: 44px 72px;
  }

  .dark-lead {
    min-height: 71.108vh;
    padding: 42px 0 20px;
  }

  .powering {
    min-height: 100vh;
    padding: 40px 0 45px;
  }

  .powering h2,
  .image-section h2,
  .partnerships h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .services-list {
    gap: 34px;
    margin-top: 34px;
  }

  .service-item {
    min-height: 0;
  }

  .service-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .service-item h3 {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .image-section {
    min-height: 100vh;
    padding: 128px 0 62px;
  }

  .image-section__media {
    background-position: 54% center;
  }

  .image-section p {
    margin-bottom: 18px;
  }

  .partnerships {
    min-height: 520px;
    padding: 42px 0 80px;
  }

  .partnerships p {
    margin-bottom: 22px;
  }

  .outline-button {
    width: 138px;
    height: 32px;
    font-size: 10px;
  }

  .site-footer {
    min-height: 430px;
    padding: 26px 0 22px;
  }

  .footer-logo {
    margin: 0 0 34px;
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-col h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 10px;
    line-height: 1.45;
  }

  .footer-bottom {
    align-items: center;
    margin-top: 22px;
    font-size: 9px;
  }

  .footer-credit {
    font-size: 6px;
  }

  .legal-content {
    padding: 84px 0 38px;
  }

  .legal-content h1 {
    font-size: 31px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .legal-content h2,
  .legal-content h3 {
    margin: 18px 0 14px;
    font-size: 12px;
    line-height: 1.55;
  }

  .legal-content p {
    margin-bottom: 16px;
  }

  .legal-content ul {
    margin-left: 18px;
    margin-bottom: 16px;
  }

  .contact-content {
    padding: 118px 0 24px;
  }

  .contact-content h1 {
    font-size: 48px;
    margin-bottom: 54px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .field.full {
    grid-column: auto;
  }

  .form-submit {
    grid-column: auto;
  }

  .fingerprint-widget {
    left: 36px;
    bottom: 35px;
    width: 64px;
    height: 64px;
  }
}
