﻿:root {
  --ink: #07162c;
  --ink-soft: #1b2c4a;
  --paper: #ffffff;
  --mist: #eff3fa;
  --cobalt: #2341ab;
  --sky: #1098e8;
  --sun: #f4cc2d;
  --success: #157347;
  --danger: #c53131;
  --info: #1f4ca4;
  --shadow: 0 14px 40px rgba(6, 19, 45, 0.14);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #e6f2ff 0, #f8fbff 35%, #f3f7fd 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

code {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9em;
  background: #edf3ff;
  border-radius: 6px;
  padding: 0.1rem 0.35rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header .container {
  width: min(1280px, 96vw);
}

.section-pad {
  padding: 5.2rem 0;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.5;
}

.ambient-a {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #5ec8ff;
  top: 8%;
  left: -90px;
}

.ambient-b {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #ffe368;
  right: -120px;
  top: 36%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(18, 44, 88, 0.1);
  background: rgba(244, 248, 255, 0.88);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 108px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 122px;
  min-width: 122px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.main-nav a {
  padding: 0.3rem 0.45rem;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  border-color: var(--sun);
  color: var(--cobalt);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #cfdbec;
  background: #fff;
  border-radius: 999px;
  padding: 0.2rem;
  min-height: 40px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.81rem;
  color: #2b4878;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-link:hover,
.lang-link:focus-visible {
  background: #edf4ff;
  color: #163d8f;
}

.lang-link.active {
  background: linear-gradient(130deg, var(--cobalt), #225ec3);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.menu-toggle:focus-visible {
  outline: 2px solid #295fc5;
  outline-offset: 2px;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-close,
.menu-backdrop {
  display: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  background: linear-gradient(130deg, var(--cobalt), #182e84);
  color: var(--paper);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 44, 113, 0.3);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.header-actions .btn-small {
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  border: 1px solid #173f8f;
  box-shadow: 0 6px 16px rgba(16, 45, 108, 0.24);
}

.header-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  line-height: 1;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(12, 39, 93, 0.22);
  color: var(--ink-soft);
}

.btn-block {
  width: 100%;
}

.booking-panel form .btn-block {
  margin-top: 0.85rem;
}

.kicker {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #2449ba;
  margin-bottom: 0.7rem;
}

.hero {
  padding-top: 3.8rem;
}

.language-start {
  padding: 1.05rem 0 0;
}

.language-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid #d5e2f6;
  background: linear-gradient(125deg, #f6fbff, #f2f7ff);
  border-radius: 16px;
  padding: 0.8rem 0.95rem;
}

.language-copy {
  color: #2d4773;
  font-size: 0.92rem;
}

.language-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: #153974;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.hero-copy {
  background: linear-gradient(160deg, #0f2a66, #1847a2 55%, #1897df);
  color: #edf3ff;
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2vw, 2rem);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.07;
  max-width: 16ch;
}

.hero-copy .lead {
  margin-top: 1rem;
  color: #e7efff;
  max-width: 54ch;
}

.hero-copy .kicker {
  color: #ffffff;
}

.hero-copy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-copy .btn-ghost:hover,
.hero-copy .btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.16);
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 0.85rem;
}

.hero-stats h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.hero-stats p {
  font-size: 0.84rem;
  opacity: 0.95;
}

.booking-panel {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  border: 1px solid rgba(11, 41, 90, 0.1);
}

.booking-panel h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.panel-sub {
  margin-top: 0.25rem;
  color: #5a6884;
  font-size: 0.95rem;
}

.tab-switch {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #dbe4f2;
  border-radius: 999px;
  padding: 0.25rem;
  background: #f8fbff;
}

.tab {
  border: 0;
  padding: 0.58rem;
  border-radius: 999px;
  background: transparent;
  color: #4f5f7a;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.tab.active {
  background: linear-gradient(130deg, var(--cobalt), #225ec3);
  color: #fff;
}

.panel {
  display: none;
  margin-top: 0.95rem;
}

.panel.active {
  display: block;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #263f66;
  margin-top: 0.65rem;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdbec;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #3b83df;
  box-shadow: 0 0 0 3px rgba(28, 109, 207, 0.17);
  outline: none;
}

textarea {
  resize: vertical;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.checkline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.checkline.compact {
  margin-top: 1.7rem;
}

.checkline input {
  width: 18px;
  height: 18px;
}

.inline-estimate {
  margin-top: 0.75rem;
  background: #f0f6ff;
  border: 1px solid #d5e5fb;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  color: #183f92;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.helper-note {
  margin-top: 0.6rem;
  color: #4f6182;
  font-size: 0.84rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.status {
  margin-top: 0.9rem;
  min-height: 1.25rem;
  font-weight: 500;
}

.status.ok {
  color: var(--success);
}

.status.error {
  color: var(--danger);
}

.status.info {
  color: var(--info);
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  max-width: 24ch;
}

.service-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  background: #fff;
  border: 1px solid #dce6f5;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(12, 38, 76, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #2f71d1;
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.5rem;
}

.card p {
  color: #4f5e78;
  font-size: 0.95rem;
}

.estimator {
  background: linear-gradient(135deg, #f4f8ff, #f0fbff 45%, #fff8d8);
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.calc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #d7e2f2;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(9, 32, 78, 0.08);
}

.calc-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.6rem;
}

.result {
  margin-top: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: #113a95;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.steps {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  background: #fff;
  border: 1px solid #d6e1f1;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.steps span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, #1d3f9d, #1b8ad4);
  font-weight: 600;
}

.coverage {
  background: linear-gradient(165deg, #11265b, #244fa8 58%, #1c9de2);
  color: #eff4ff;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.coverage h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.chips {
  margin: 0.8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chips span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  font-size: 0.86rem;
}

.tracking {
  background: #fbfdff;
}

.track-box {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.tracking-result {
  margin-top: 0.9rem;
  min-height: 2.2rem;
  padding: 0.95rem;
  border-radius: 12px;
  border: 1px dashed #c7d7f0;
  background: #fff;
  color: #2b3f62;
}

.timeline {
  list-style: none;
  margin-top: 0.7rem;
  display: grid;
  gap: 0.5rem;
}

.timeline li {
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: #eff4fb;
  color: #4b5f84;
}

.timeline li.active {
  background: #e0ecff;
  color: #133d95;
  font-weight: 600;
}

.careers-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(8, 21, 54, 0.92), rgba(13, 41, 99, 0.8)), url("hiring.jpg") right center / cover no-repeat;
  box-shadow: var(--shadow);
}

.careers-card {
  color: #edf4ff;
  padding: clamp(1.4rem, 3vw, 3rem);
  max-width: 620px;
}

.careers-card h2 {
  max-width: 18ch;
}

.careers-card p {
  margin-top: 0.7rem;
  color: #d7e6ff;
}

.faq-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid #d6e1f2;
  border-radius: 14px;
  background: #fff;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.95rem;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #112f67;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer p {
  padding: 0 0.95rem 0.95rem;
  color: #4d5e7d;
}

.faq-item.open .faq-answer {
  max-height: 220px;
}

.site-footer {
  margin-top: 3rem;
  background: #071739;
  color: #d6e4ff;
  padding: 2.2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer-logo {
  width: 170px;
  margin-bottom: 0.6rem;
  background: #fff;
  border-radius: 8px;
  object-fit: contain;
}

.site-footer h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.4rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.site-footer li,
.site-footer p {
  color: #c4d6f6;
}

.content-page {
  padding: 3.4rem 0 4.8rem;
}

.content-card {
  background: #fff;
  border: 1px solid #d8e4f5;
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(10, 34, 77, 0.08);
}

.content-card h1,
.content-card h2 {
  max-width: 100%;
}

.content-card h1 + p {
  margin-top: 1rem;
}

.content-card p + h2 {
  margin-top: 1rem;
}

.content-card p + p {
  margin-top: 1.1rem;
}

.content-card p {
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}

.content-list + p {
  margin-top: 1rem;
}

.content-card h2 + .content-list {
  margin-top: 1rem;
}

.content-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  color: #2f4b76;
}

.content-list li + li {
  margin-top: 0.35rem;
}

.footer-bottom {
  margin-top: 1.1rem;
  border-top: 1px solid rgba(177, 201, 241, 0.18);
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.copyright-note {
  opacity: 0.9;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: 86px;
    gap: 0.55rem;
  }

  .brand img {
    width: 96px;
    min-width: 96px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 95;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid rgba(24, 61, 132, 0.22);
    box-shadow: 0 8px 20px rgba(13, 34, 79, 0.12);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(82vw, 360px);
    max-width: calc(100vw - 10px);
    padding: calc(1rem + env(safe-area-inset-top)) 0.95rem 1.1rem;
    background: linear-gradient(165deg, #f9fbff, #eef4ff 58%, #e7f0ff);
    border-left: 1px solid #d6e3f7;
    border-radius: 22px 0 0 22px;
    box-shadow: -14px 0 34px rgba(8, 24, 59, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: stretch;
    transform: translateX(108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 94;
    will-change: transform;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: #112f67;
    font-weight: 600;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.active,
  .main-nav a[aria-current="page"] {
    border-color: #c4d6f4;
    color: #173f8d;
    background: #fff;
  }

  .menu-close {
    display: inline-flex;
    align-self: flex-end;
    border: 0;
    background: #dce7fb;
    color: #183d84;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.45rem;
    cursor: pointer;
  }

  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(8, 21, 47, 0.45);
    z-index: 89;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .tracking-result,
  .tracking-result * {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .menu-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 0;
    gap: 0.3rem;
  }

  .header-actions .btn-small {
    display: none;
  }

  .lang-switch {
    min-height: 34px;
    padding: 0.14rem;
  }

  .lang-link {
    padding: 0.24rem 0.48rem;
    font-size: 0.73rem;
  }

  .hero-grid,
  .split-grid,
  .footer-grid,
  .estimator-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 0.7rem;
  }

  .track-box {
    grid-template-columns: 1fr;
  }

  .careers-wrap {
    background-position: center;
  }
}

@media (max-width: 1100px) and (min-width: 981px) {
  .site-header .container {
    width: min(1280px, 98vw);
  }

  .nav-wrap {
    min-height: 98px;
    gap: 0.7rem;
  }

  .brand img {
    width: 108px;
    min-width: 108px;
  }

  .main-nav {
    gap: 0.45rem;
    font-size: 0.92rem;
  }

  .main-nav a {
    padding: 0.28rem 0.24rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .lang-switch {
    min-height: 36px;
    padding: 0.16rem;
  }

  .lang-link {
    padding: 0.28rem 0.52rem;
    font-size: 0.74rem;
  }

  .header-actions .btn-small {
    min-height: 38px;
    padding: 0.54rem 0.72rem;
  }

  .header-book-btn {
    min-width: 108px;
    font-size: 0.84rem;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero-stats,
  .input-row {
    grid-template-columns: 1fr;
  }

  h2 {
    max-width: 100%;
  }

  .brand img {
    width: 86px;
    min-width: 86px;
  }

  .lang-switch {
    min-height: 32px;
  }

  .lang-link {
    padding: 0.2rem 0.42rem;
    font-size: 0.7rem;
  }

  .footer-logo {
    width: 170px;
  }

  .checkline.compact {
    margin-top: 0.7rem;
  }

  .calc-card .checkline.compact {
    margin-top: 0.95rem;
  }

  #calcTaxi {
    margin-top: 0.55rem;
  }

  #calcCargo {
    margin-top: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
