:root {
  --ink: #071f41;
  --muted: #536a85;
  --blue: #0b376d;
  --blue-2: #175f9e;
  --sky: #f3f8fd;
  --line: rgba(7, 31, 65, 0.12);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 28px 90px rgba(7, 31, 65, 0.12);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: #ffffff;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 48%, #ffffff 100%),
    #ffffff;
}

body.menu-open {
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(7, 31, 65, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 31, 65, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 76%);
}

.nav-wrap {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  margin: 0;
  padding: 10px 12px 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(7, 38, 74, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(7, 38, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand img {
  width: 148px;
  height: auto;
  max-height: 46px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #354f6c;
  font-size: 15px;
}

.desktop-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-nav a:hover {
  color: var(--blue);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.group-btn,
.calc-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 999px;
  border: 0;
  font-weight: 780;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(7, 31, 65, 0.18);
}

.primary-btn,
.calc-submit {
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 18px 42px rgba(7, 31, 65, 0.22);
}

.secondary-btn {
  padding: 0 22px;
  color: var(--ink);
  border: 1px solid rgba(7, 31, 65, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.group-btn {
  padding: 0 22px;
  color: var(--ink);
  border: 1px solid rgba(7, 31, 65, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 253, 0.94)),
    #ffffff;
  box-shadow: 0 16px 40px rgba(7, 31, 65, 0.11);
}

.group-btn.large {
  min-height: 58px;
  padding: 0 26px;
}

.nav-cta::before,
.primary-btn::before,
.secondary-btn::before,
.group-btn::before,
.calc-submit::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.48) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 560ms ease;
}

.nav-cta:hover::before,
.primary-btn:hover::before,
.secondary-btn:hover::before,
.group-btn:hover::before,
.calc-submit:hover::before,
.faq-item:hover::before {
  transform: translateX(120%);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover,
.group-btn:hover,
.calc-submit:hover {
  transform: translateY(-3px);
}

.nav-cta:active,
.primary-btn:active,
.secondary-btn:active,
.group-btn:active,
.calc-submit:active,
.faq-item:active {
  transform: translateY(1px);
}

.burger-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 38, 74, 0.12);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
}

.burger-button span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition:
    top 180ms ease,
    transform 180ms ease;
}

.burger-button span:first-child {
  top: 17px;
}

.burger-button span:last-child {
  top: 27px;
}

.menu-open .burger-button span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-open .burger-button span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 88px 10px auto;
  z-index: 29;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(7, 38, 74, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.mobile-menu a {
  padding: 15px 16px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--sky);
  font-weight: 760;
}

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

.chat-icon,
.calc-icon,
.plane-icon,
.bag-icon,
.box-icon,
.truck-icon,
.check-icon,
.shield-icon,
.arrow-icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
  color: inherit;
  background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.chat-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.9 20A9 9 0 1 0 4 16.1L2 22Z'/%3E%3C/svg%3E");
}

.plane-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E");
}

.arrow-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

.calc-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='16' height='20' x='4' y='2' rx='2'/%3E%3Cline x1='8' x2='16' y1='6' y2='6'/%3E%3Cline x1='16' x2='16' y1='14' y2='18'/%3E%3Cpath d='M16 10h.01'/%3E%3Cpath d='M12 10h.01'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3C/svg%3E");
}

.bag-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
}

.box-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
}

.truck-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M15 18H9'/%3E%3Cpath d='M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62l-3.48-4.35A1 1 0 0 0 17.52 8H14'/%3E%3Ccircle cx='17' cy='18' r='2'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3C/svg%3E");
}

.check-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.shield-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.service-card .plane-icon {
  transform: none;
}

.hero {
  width: min(1180px, calc(100% - 28px));
  min-height: calc(100dvh - 96px);
  margin: 0 auto;
  padding: 118px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 38px;
}

.eyebrow,
.section-heading span,
.calc-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(7, 31, 65, 0.12);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(7, 31, 65, 0.07);
  font-size: 14px;
  font-weight: 760;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.02;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: #455f7c;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-card,
.service-card,
.calc-card,
.proof-card,
.faq-item {
  border: 1px solid rgba(7, 38, 74, 0.09);
  background: var(--card);
  box-shadow: 0 22px 70px rgba(7, 31, 65, 0.08);
}

.trust-card {
  min-height: 98px;
  padding: 16px;
  border-radius: 22px;
}

.trust-card strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.trust-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(7, 31, 65, 0.1);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 253, 0.9)),
    #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 31, 65, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 31, 65, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, black 0%, transparent 82%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 31, 65, 0.26), transparent);
  transform: rotate(-15deg);
  animation: routeSweep 7s ease-in-out infinite;
}

.visual-orbit {
  position: absolute;
  inset: 86px 70px;
  border: 1px solid rgba(7, 31, 65, 0.14);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.visual-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(7, 31, 65, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(7, 38, 74, 0.14);
  backdrop-filter: blur(10px);
}

.main-card {
  left: 50%;
  top: 50%;
  width: min(390px, calc(100% - 52px));
  min-height: 136px;
  padding: 21px;
  transform: translate(-50%, -50%);
}

.main-logo-badge {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 31, 65, 0.12);
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(7, 31, 65, 0.12),
    inset 0 0 0 10px rgba(243, 248, 253, 0.92);
}

.main-logo-badge img {
  width: 94px;
  height: auto;
  object-fit: contain;
}

.main-card span {
  color: var(--muted);
  font-size: 14px;
}

.main-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 19px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(7, 31, 65, 0.2);
  animation: floatCard 5.5s ease-in-out infinite;
}

.floating-card span:last-child {
  font-weight: 800;
}

.market-card {
  left: 44px;
  top: 102px;
}

.stock-card {
  right: 28px;
  top: 118px;
  background: var(--ink);
  animation-delay: 0.3s;
}

.send-card {
  left: 54px;
  bottom: 92px;
  background: #154e86;
  animation-delay: 0.6s;
}

.done-card {
  right: 58px;
  bottom: 68px;
  color: var(--ink);
  background: #ffffff;
  animation-delay: 0.9s;
}

.section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 66px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2,
.calc-copy h2,
.final-cta h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 26px;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: var(--sky);
}

.icon-box > span {
  width: 25px;
  height: 25px;
}

.service-card h3,
.timeline-item h3,
.proof-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.12;
}

.service-card p,
.timeline-item p,
.calc-copy p,
.proof-card p,
.final-cta p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(7, 31, 65, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
}

.timeline-item.featured {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 26px 80px rgba(7, 31, 65, 0.15);
}

.timeline-item.featured h3,
.timeline-item.featured p {
  color: #ffffff;
}

.step-number {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 850;
}

.featured .step-number {
  color: var(--ink);
  background: #ffffff;
}

.timeline-item h3 {
  margin-top: 0;
}

.timeline-item p {
  font-size: 15px;
  line-height: 1.48;
}

.calculator-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 36px;
  margin-top: 28px;
  padding: 54px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(7, 31, 65, 0.98), rgba(11, 55, 109, 0.96)),
    var(--ink);
  box-shadow: 0 32px 96px rgba(7, 31, 65, 0.18);
}

.calc-copy > span {
  color: #dcecff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.calc-copy h2,
.calc-copy p {
  color: #ffffff;
}

.calc-copy p {
  max-width: 520px;
  color: #d5e2f0;
  font-size: 18px;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #e2edf8;
}

.calc-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.96)),
    #ffffff;
  box-shadow:
    0 30px 80px rgba(7, 31, 65, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field span,
.dims-title {
  color: #17395f;
  font-size: 13px;
  font-weight: 780;
}

.select-field {
  grid-column: span 3;
}

.dims-title {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.compact-field {
  grid-column: span 2;
}

.weight-field {
  grid-column: span 2;
}

.size-toggle {
  grid-column: span 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.size-toggle input {
  width: 22px;
  height: 22px;
  accent-color: var(--blue);
}

.field input,
.field select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(7, 31, 65, 0.14);
  border-radius: 22px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 25px,
    calc(100% - 16px) 25px;
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(11, 55, 109, 0.13);
}

.field input:disabled {
  color: #9fb5c7;
  background: #f2f8fc;
}

.calc-submit {
  width: min(360px, 100%);
  min-height: 62px;
  justify-self: center;
  font-size: 17px;
}

.delivery-table {
  overflow: hidden;
  border: 1px solid rgba(7, 38, 74, 0.08);
  border-radius: 26px;
  background: #edf4fa;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.delivery-table.pulse {
  animation: resultPulse 420ms ease;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
}

.table-head {
  color: #49627d;
  background: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  font-weight: 800;
}

.table-row {
  border-top: 1px solid rgba(7, 38, 74, 0.08);
  color: #415a76;
}

.table-row strong {
  color: var(--ink);
  font-size: 18px;
}

.table-row:last-child {
  min-height: 76px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.table-row:last-child strong {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
}

.estimate-total {
  display: grid;
  gap: 7px;
  justify-items: end;
  line-height: 1.08;
}

.estimate-total small {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
  text-align: right;
  white-space: normal;
}

.calc-note {
  max-width: 620px;
  margin: 0 auto;
  color: #496b8c;
  text-align: center;
  line-height: 1.5;
}

.full {
  width: 100%;
}

.proof {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 16px;
}

.proof-card {
  min-height: 214px;
  padding: 26px;
  border-radius: 26px;
  color: var(--blue);
}

.proof-card.dark {
  color: #ffffff;
  background: var(--ink);
}

.proof-card.dark h3,
.proof-card.dark p {
  color: #ffffff;
}

.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  padding: 20px;
  display: block;
  border-radius: 22px;
  text-align: left;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-origin: center;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 78px rgba(7, 31, 65, 0.11);
}

.faq-item:focus {
  outline: none;
}

.faq-item:focus-visible {
  outline: 3px solid rgba(11, 55, 109, 0.28);
  outline-offset: 3px;
}

.faq-item.open {
  background:
    linear-gradient(135deg, rgba(243, 248, 253, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  border-color: rgba(11, 55, 109, 0.28);
  animation: faqItemOpen 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.chevron {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 31, 65, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.chevron::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
  background: #ffffff;
  border-color: rgba(11, 55, 109, 0.24);
}

.faq-answer {
  display: block;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  color: var(--muted);
  line-height: 1.55;
  transition:
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 220ms ease,
    opacity 220ms ease,
    transform 260ms ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.final-cta,
.site-footer,
.group-section {
  width: min(1180px, calc(100% - 28px));
  margin: 10px auto 34px;
}

.group-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px;
  border: 1px solid rgba(7, 31, 65, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(7, 31, 65, 0.09);
}

.group-section span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.group-section h2 {
  max-width: 650px;
  margin: 8px 0;
  color: var(--ink);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.group-section p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 42%),
    var(--ink);
  box-shadow: 0 28px 80px rgba(7, 31, 65, 0.17);
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  margin-top: 10px;
  color: #d4e8f7;
}

.final-cta .primary-btn {
  min-height: 66px;
  padding: 0 34px;
  border: 2px solid rgba(31, 155, 255, 0.98);
  background: linear-gradient(135deg, #1e9bff, #0b376d);
  box-shadow:
    0 0 0 5px rgba(31, 155, 255, 0.18),
    0 22px 54px rgba(31, 155, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.final-cta .primary-btn:hover {
  box-shadow:
    0 0 0 7px rgba(31, 155, 255, 0.22),
    0 26px 62px rgba(31, 155, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(7, 31, 65, 0.09);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 56px rgba(7, 31, 65, 0.08);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 14px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav a,
.footer-contact a {
  color: var(--ink);
  font-weight: 760;
}

.footer-contact span {
  color: var(--muted);
}

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

.footer-group-button {
  width: fit-content;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sky);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 38, 74, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes routeSweep {
  0%,
  100% {
    opacity: 0.55;
    transform: rotate(-15deg) translateX(-18px);
  }
  50% {
    opacity: 1;
    transform: rotate(-15deg) translateX(18px);
  }
}

@keyframes resultPulse {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  45% {
    transform: scale(1.01);
    box-shadow: 0 18px 44px rgba(7, 31, 65, 0.16);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@keyframes faqItemOpen {
  from {
    transform: translateY(6px) scale(0.992);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .burger-button {
    display: inline-block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .service-grid,
  .proof,
  .calculator-section,
  .faq,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .group-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .calculator-section {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    width: calc(100% - 20px);
    min-height: 64px;
    top: 10px;
    border-radius: 20px;
  }

  .brand img {
    width: 126px;
    height: auto;
    max-height: 38px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero,
  .section,
  .final-cta,
  .site-footer,
  .group-section {
    width: calc(100% - 20px);
  }

  .hero {
    gap: 22px;
    padding: 104px 0 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1;
  }

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

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn,
  .group-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

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

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

  .trust-card {
    min-height: 112px;
    padding: 14px;
  }

  .trust-card strong {
    font-size: 16px;
  }

  .trust-card span {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 370px;
    border-radius: 28px;
  }

  .main-card {
    width: calc(100% - 34px);
    padding: 16px;
  }

  .main-logo-badge {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }

  .main-logo-badge img {
    width: 84px;
  }

  .main-card strong {
    font-size: 19px;
  }

  .floating-card {
    padding: 11px 12px;
    border-radius: 17px;
  }

  .floating-card span:last-child {
    font-size: 12px;
  }

  .market-card {
    left: 14px;
    top: 48px;
  }

  .stock-card {
    right: 12px;
    top: 82px;
  }

  .send-card {
    left: 20px;
    bottom: 64px;
  }

  .done-card {
    right: 18px;
    bottom: 28px;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    display: block;
  }

  .service-card,
  .timeline-item,
  .proof-card,
  .faq-item {
    padding: 20px;
    border-radius: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calculator-section {
    margin-top: 12px;
    padding: 20px;
    border-radius: 26px;
  }

  .calc-card {
    padding: 16px;
    border-radius: 24px;
  }

  .select-field,
  .compact-field,
  .weight-field,
  .size-toggle,
  .dims-title {
    grid-column: auto;
  }

  .field input,
  .field select {
    min-height: 56px;
    border-radius: 19px;
  }

  .size-toggle {
    min-height: 46px;
  }

  .table-head,
  .table-row {
    padding: 0 16px;
  }

  .table-row:last-child {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .estimate-total {
    justify-items: start;
  }

  .estimate-total small {
    text-align: left;
  }

  .calc-note {
    text-align: left;
  }

  .faq {
    gap: 22px;
  }

  .faq-question {
    font-size: 16px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 26px;
  }

  .site-footer,
  .group-section {
    padding: 22px;
    border-radius: 26px;
  }
}

@media (max-width: 390px) {
  .nav-wrap {
    gap: 10px;
    padding-inline: 10px;
  }

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

  .brand img {
    width: 112px;
    height: auto;
    max-height: 34px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-cta {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
  }

  .nav-cta .chat-icon {
    width: 18px;
    height: 18px;
  }

  .hero h1 {
    font-size: clamp(31px, 10vw, 38px);
  }

  .section-heading h2,
  .calc-copy h2,
  .final-cta h2,
  .group-section h2 {
    font-size: clamp(27px, 9vw, 36px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
