:root {
  --navy: #0b1d3a;
  --navy-deep: #07162d;
  --blue: #1e3a8a;
  --blue-bright: #2c4fc4;
  --blue-soft: #8fa6e8;
  --blue-pale: #eaf0ff;
  --blue-line: #b9c8ef;
  --gray: #5f6878;
  --gray-light: #e2e6ed;
  --tint: #f3f5fa;
  --white: #ffffff;
  --success: #7ce0a3;
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --radius: 18px;
  --container: 1180px;
  --nav-height: 82px;
  --shadow: 0 20px 50px -20px rgba(11, 29, 58, 0.25);
  --shadow-small: 0 12px 30px -18px rgba(11, 29, 58, 0.35);
  --shadow-deep: 0 30px 70px -34px rgba(7, 22, 45, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

section,
#top {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

.wrap {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-small);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #5374e8;
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: currentColor;
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(30, 58, 138, 0.55);
}

.btn-primary:hover {
  background: #18327b;
  box-shadow: 0 16px 34px -10px rgba(30, 58, 138, 0.65);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-white:hover {
  background: #eef2ff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 230, 237, 0.9);
  background: var(--white);
  transition: box-shadow 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-small);
}

.nav-inner {
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: min(252px, 25vw);
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.site-nav .brand-logo {
  /* The official source crop has a light-gray matte. Brightening only the
     header instance lets that matte disappear into the white navigation
     without redrawing or altering the supplied Vanguard artwork. */
  filter: brightness(1.055);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.nav-account-btn {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.87rem;
}

.nav-login {
  background: rgba(255, 255, 255, 0.72);
}

.mobile-account-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

/* Hero and calculator */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 92px;
  background: var(--navy);
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-background::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 37%,
      rgba(255, 255, 255, 0.68) 58%,
      rgba(11, 29, 58, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 29, 58, 0.18));
  content: "";
  pointer-events: none;
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  background-image:
    linear-gradient(135deg, transparent 0 58%, rgba(44, 79, 196, 0.055) 58% 69%, transparent 69%),
    radial-gradient(circle, rgba(30, 58, 138, 0.16) 1.4px, transparent 1.5px);
  background-size: 100% 100%, 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%);
  opacity: 0.35;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -170px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(30, 58, 138, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: clamp(44px, 5vw, 68px);
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: clamp(2.6rem, 5.3vw, 4.1rem);
  font-weight: 900;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero .lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--gray);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 26px;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--tint);
  color: var(--gray);
  font-size: 0.84rem;
  line-height: 1.35;
}

.trust-note svg {
  width: 20px;
  flex: 0 0 20px;
  color: var(--blue);
}

.trust-note strong {
  color: var(--navy);
}

.calc-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 36px);
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.calc-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(440px 290px at 100% 0%, rgba(44, 79, 196, 0.58), transparent 66%);
  content: "";
  pointer-events: none;
}

.calc-card::after {
  position: absolute;
  top: -62px;
  right: -54px;
  width: 190px;
  height: 190px;
  border: 24px solid rgba(255, 255, 255, 0.045);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.calc-head,
.calc-body {
  position: relative;
  z-index: 1;
}

.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.calc-title {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calc-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.calc-toggle button {
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.81rem;
  font-weight: 700;
}

.calc-toggle button.active {
  background: var(--white);
  color: var(--navy);
}

.calc-row {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.83rem;
}

.calc-label strong {
  color: var(--white);
  font-size: 0.94rem;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  margin: 8px 0;
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 5px solid var(--blue-bright);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  -webkit-appearance: none;
  appearance: none;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 5px solid var(--blue-bright);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

input[type="range"]:focus-visible {
  outline: 3px solid #89a3ff;
  outline-offset: 7px;
}

.calc-price-box {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.calc-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.calc-price-row strong {
  max-width: 64%;
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: right;
}

.calc-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.28);
}

.calc-total > span:last-child {
  text-align: right;
}

.calc-total .amt {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.calc-total .cur {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.calc-tier-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--blue-bright);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.calc-cta {
  width: 100%;
  margin-top: 19px;
}

.calc-disclaimer {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

/* Retailer logo strip */

.retailer-strip {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), 1240px);
  margin: -26px auto 0;
  overflow: hidden;
  padding: 30px 0 20px;
  border: 1px solid rgba(30, 58, 138, 0.11);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 58px -36px rgba(7, 22, 45, 0.58);
}

.retailer-strip-heading {
  display: flex;
  justify-content: center;
}

.retailer-strip-heading h2 {
  margin: 0 0 20px;
  color: #697284;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.retailer-scroll {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-bottom: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  cursor: grab;
  scrollbar-width: none;
}

.retailer-scroll:active {
  cursor: grabbing;
}

.retailer-scroll::-webkit-scrollbar {
  display: none;
}

.retailer-rail {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(22px, 2.5vw, 34px);
}

.retailer-logo {
  display: flex;
  width: clamp(96px, 8.2vw, 116px);
  height: 70px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 9px 4px;
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.retailer-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.retailer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.retailer-logo-square img {
  max-width: 46px;
  max-height: 46px;
}

.retailer-logo-bestbuy img {
  max-width: 72px;
  max-height: 47px;
}

.retailer-note {
  width: min(100% - 48px, 720px);
  margin: 7px auto 0;
  color: #697284;
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

/* Route band */

.route-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 34px;
  padding: 82px 0 88px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.87) 48%, rgba(243, 247, 255, 0.36) 76%, rgba(234, 241, 255, 0.12) 100%),
    url("assets/vanguard-route-map.jpg") center right / cover no-repeat,
    #edf4ff;
}

.route-band::after {
  position: absolute;
  right: -64px;
  bottom: -94px;
  width: 240px;
  height: 240px;
  border: 38px solid rgba(30, 58, 138, 0.07);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.route-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.route-inner .eyebrow {
  justify-content: center;
}

.route-inner h2 {
  margin: 13px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 900;
}

.route-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #4f5c70;
  line-height: 1.6;
}

.route-map {
  display: grid;
  width: min(100%, 880px);
  grid-template-columns: minmax(0, 1fr) minmax(82px, 0.38fr) minmax(190px, 0.58fr);
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

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

.route-place {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(44, 79, 196, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 38px -28px rgba(11, 29, 58, 0.58);
  backdrop-filter: blur(8px);
  text-align: left;
}

.route-name,
.route-place small {
  display: block;
  grid-column: 2;
}

.route-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}

.route-flag {
  display: flex;
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 79, 196, 0.18);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.45rem;
  box-shadow: 0 8px 18px -12px rgba(7, 22, 45, 0.7);
}

.route-place small {
  margin-top: 5px;
  color: var(--gray);
  font-size: 0.74rem;
  line-height: 1.35;
}

.route-place.destination {
  padding-block: 24px;
  border-color: rgba(80, 116, 230, 0.58);
  background: linear-gradient(145deg, var(--navy-deep), var(--blue));
  color: var(--white);
  box-shadow: 0 24px 44px -26px rgba(7, 22, 45, 0.82);
}

.route-place.destination small {
  color: rgba(255, 255, 255, 0.7);
}

.route-line {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--blue);
}

.route-line span {
  width: 100%;
  border-top: 2px dashed #8fa6e8;
}

.route-line::after {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(44, 79, 196, 0.12);
  content: "";
  transform: translateY(-50%);
  animation: route-progress 3.8s ease-in-out infinite;
}

.route-line svg {
  width: 25px;
  flex: 0 0 25px;
  margin-left: -2px;
}

@keyframes route-progress {
  0%, 14% { left: 4px; opacity: 0; }
  24%, 76% { opacity: 1; }
  86%, 100% { left: calc(100% - 18px); opacity: 0; }
}

/* Sections */

.content-section {
  padding: 104px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 900;
}

.section-head p:not(.eyebrow) {
  margin: 15px 0 0;
  color: var(--gray);
  font-size: 1.04rem;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.svc-card {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  padding: 30px 28px;
  border: 1px solid rgba(125, 155, 241, 0.23);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(44, 79, 196, 0.04));
  box-shadow: 0 18px 38px -32px rgba(0, 0, 0, 0.9);
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #6f91ff, rgba(111, 145, 255, 0));
  content: "";
}

.svc-card:hover {
  border-color: rgba(143, 166, 232, 0.55);
  box-shadow: 0 26px 50px -32px rgba(0, 0, 0, 0.88);
  transform: translateY(-5px);
}

.svc-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid rgba(143, 166, 232, 0.42);
  background: linear-gradient(145deg, #17387f, #315bd0);
  color: var(--white);
  box-shadow: 0 12px 26px -13px rgba(30, 58, 138, 0.9);
}

.svc-icon svg {
  width: 28px;
  height: 28px;
}

.svc-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.svc-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.91rem;
  line-height: 1.58;
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(44, 79, 196, 0.13), transparent 34%),
    var(--navy-deep);
  color: var(--white);
}

.services-section::before,
.services-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.services-section::before {
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background:
    repeating-linear-gradient(132deg, transparent 0 28px, rgba(143, 166, 232, 0.035) 28px 30px),
    radial-gradient(circle at 76% 28%, rgba(44, 79, 196, 0.22), transparent 46%);
}

.services-section::after {
  bottom: -110px;
  left: -70px;
  width: 270px;
  height: 270px;
  border: 42px solid rgba(255, 255, 255, 0.035);
  transform: rotate(45deg);
}

.services-layout {
  position: relative;
  z-index: 1;
}

.services-section .section-head {
  max-width: 670px;
  margin-bottom: 50px;
  padding-top: 0;
}

.services-section .section-head h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.45rem);
}

.services-section .eyebrow {
  color: var(--blue-soft);
}

/* Image-led freight story */

section.freight-showcase {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(640px 340px at 96% 8%, rgba(44, 79, 196, 0.08), transparent 70%),
    var(--white);
}

.freight-feature {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-deep);
}

.freight-feature::after {
  position: absolute;
  top: 38px;
  right: 30px;
  width: 150px;
  height: 128px;
  background-image: radial-gradient(circle, rgba(44, 79, 196, 0.16) 1.2px, transparent 1.3px);
  background-size: 16px 16px;
  content: "";
  mask-image: linear-gradient(135deg, #000, transparent 82%);
  pointer-events: none;
}

.freight-visual {
  position: relative;
  z-index: 2;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
}

.freight-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 72%, rgba(255, 255, 255, 0.16)),
    linear-gradient(0deg, rgba(7, 22, 45, 0.7), transparent 38%);
  content: "";
  pointer-events: none;
}

.freight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}

.freight-visual figcaption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  padding: 12px 16px;
  border-left: 3px solid #89a3ff;
  border-radius: 0 10px 10px 0;
  background: rgba(7, 22, 45, 0.62);
  backdrop-filter: blur(8px);
  color: var(--white);
}

.freight-visual figcaption span,
.freight-visual figcaption strong {
  display: block;
}

.freight-visual figcaption span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.freight-visual figcaption strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.freight-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5.5vw, 72px) clamp(38px, 5vw, 64px) clamp(46px, 5.5vw, 72px) clamp(28px, 3vw, 48px);
  color: var(--navy);
}

.freight-copy::before {
  position: absolute;
  top: 0;
  left: -74px;
  width: 104px;
  height: 100%;
  background: linear-gradient(180deg, rgba(44, 79, 196, 0.9), rgba(143, 166, 232, 0.26));
  clip-path: polygon(70% 0, 100% 0, 30% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.freight-copy .eyebrow {
  color: var(--blue);
}

.freight-copy h2 {
  margin: 16px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 900;
}

.freight-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: var(--gray);
  line-height: 1.65;
}

.journey-list {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.journey-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(30, 58, 138, 0.13);
}

.journey-list li:last-child {
  border-bottom: 1px solid rgba(30, 58, 138, 0.13);
}

.journey-list span {
  display: inline-flex;
  width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(44, 79, 196, 0.28);
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-list strong {
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link svg {
  width: 20px;
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

/* Rates */

.rates-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(760px 460px at 100% 18%, rgba(44, 79, 196, 0.36), transparent 68%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 62%, #102b64);
  color: var(--white);
}

.rates-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: repeating-linear-gradient(132deg, transparent 0 23px, rgba(255, 255, 255, 0.025) 23px 25px);
  content: "";
  pointer-events: none;
}

.rates-section > .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1.5fr);
  column-gap: clamp(38px, 5vw, 64px);
  align-items: start;
}

.rates-section .section-head {
  grid-row: 1 / span 5;
  margin-bottom: 0;
  padding-top: 56px;
}

.rates-section .eyebrow {
  color: var(--blue-soft);
}

.rates-section .section-head h2 {
  color: var(--white);
}

.rates-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.rate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  grid-column: 2;
}

.rate-tab {
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 12px 5px 5px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
}

.rate-tab.active {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.rate-panel {
  display: none;
  grid-column: 2;
}

.rate-panel.active {
  display: block;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(143, 166, 232, 0.24);
  border-radius: 0 24px 24px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 60px -40px rgba(0, 0, 0, 0.72);
}

.rate-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.rate-summary p {
  margin-bottom: 0;
  padding: 13px 15px;
  border-left: 3px solid #7899ff;
  background: rgba(255, 255, 255, 0.045);
  line-height: 1.5;
}

.rate-summary strong {
  color: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(5, 19, 42, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rate-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.air-rate-tables .rate-table {
  min-width: 0;
}

.rate-table th,
.rate-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.rate-table thead th {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.rate-table thead th:last-child {
  text-align: right;
}

.rate-table tbody th {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  font-weight: 500;
  text-align: left;
}

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

.rate-table td.amt {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.91rem;
  font-weight: 700;
  text-align: right;
}

.rate-table tbody tr {
  transition: background 0.18s ease;
}

.rate-table tbody tr:hover {
  background: rgba(143, 166, 232, 0.07);
}

.rate-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sea-explainer,
.biz-tier {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.sea-explainer > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.rate-kicker,
.biz-tier .lbs {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sea-rate-num {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sea-rate-num span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-weight: 500;
}

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

.business-intro {
  max-width: 600px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.biz-tier {
  padding: 23px;
}

.biz-tier .rate {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}

.biz-tier .rate span {
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 500;
}

.biz-tier .save {
  margin-bottom: 0;
  color: var(--success);
  font-size: 0.82rem;
  line-height: 1.5;
}

.panel-cta {
  margin-top: 24px;
}

.fee-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  grid-column: 2;
}

.fee-note svg {
  width: 27px;
  flex: 0 0 27px;
  margin-top: 2px;
  color: var(--blue-soft);
}

.fee-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.62;
}

.fee-note strong {
  color: var(--white);
}

.rates-disclaimer {
  margin: 15px 2px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  grid-column: 2;
}

/* Values and steps */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

#why-vanguard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 380px at 0% 100%, rgba(44, 79, 196, 0.11), transparent 68%),
    linear-gradient(180deg, #f8faff, #eef3ff);
}

#why-vanguard::after {
  position: absolute;
  top: 44px;
  right: 3%;
  width: 190px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(30, 58, 138, 0.16) 1.3px, transparent 1.4px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(135deg, #000, transparent 78%);
  pointer-events: none;
}

#why-vanguard > .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 7vw, 92px);
}

#why-vanguard .section-head {
  margin-bottom: 0;
  padding-top: 16px;
}

#why-vanguard .section-head h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
}

.value-item {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 22px 30px;
  border-left: 1px solid rgba(30, 58, 138, 0.13);
  text-align: center;
  transition: transform 0.22s ease;
}

.value-item::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  transform: translateX(-50%);
}

.value-item:hover {
  transform: translateY(-3px);
}

.value-item:first-child {
  border-left: 0;
}

.value-icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 12px 24px -15px rgba(30, 58, 138, 0.86);
}

.value-icon svg {
  width: 23px;
  height: 23px;
}

.value-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.value-item p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.89rem;
  line-height: 1.58;
}

.how-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(700px 360px at 100% 30%, rgba(44, 79, 196, 0.31), transparent 66%),
    var(--navy-deep);
  color: var(--white);
}

.how-section::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 38%;
  background-image: radial-gradient(circle, rgba(143, 166, 232, 0.12) 1.1px, transparent 1.2px);
  background-size: 17px 17px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 52%);
  pointer-events: none;
}

.how-section > .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(285px, 0.58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(36px, 5vw, 64px);
}

.how-section .section-head {
  margin-bottom: 0;
  padding-top: 18px;
}

.how-section .eyebrow {
  color: var(--blue-soft);
}

.how-section .section-head h2 {
  color: var(--white);
  font-size: clamp(2.15rem, 3.8vw, 2.8rem);
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-grid::before {
  position: absolute;
  top: 20px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 166, 232, 0.18), #6d8ff4 48%, rgba(143, 166, 232, 0.18));
  content: "";
}

.how-step {
  position: relative;
  padding: 0 18px 20px;
  text-align: center;
}

.how-num {
  position: relative;
  z-index: 1;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 23px;
  border: 1px solid rgba(143, 166, 232, 0.6);
  border-radius: 50%;
  background: linear-gradient(145deg, #17387f, #315bd0);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.how-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(143, 166, 232, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #b5c4f3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.how-icon svg {
  width: 29px;
  height: 29px;
}

.how-step h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
  font-weight: 800;
}

.how-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.58;
}

/* Essentials, contact and footer */

.essentials-section {
  position: relative;
  padding: 104px 0;
  background: var(--white);
}

.essentials {
  position: relative;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(220px, 0.58fr) minmax(320px, 0.9fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  background: linear-gradient(115deg, #f7f9ff, #edf3ff 58%, #e5edff);
  color: var(--navy);
  box-shadow: var(--shadow-deep);
}

.essentials::after {
  position: absolute;
  top: -90px;
  right: 12%;
  width: 250px;
  height: 250px;
  border: 38px solid rgba(44, 79, 196, 0.05);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.essentials > * {
  position: relative;
  z-index: 1;
}

.essentials-copy {
  padding: clamp(38px, 4.4vw, 58px);
}

.essentials h2 {
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 2.8vw, 2.1rem);
  font-weight: 900;
}

.essentials p {
  max-width: 520px;
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.65;
}

.essentials-brand-panel {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 4vw, 52px);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep), var(--blue));
  color: var(--white);
}

.essentials-brand-panel::after {
  position: absolute;
  right: -62px;
  bottom: -82px;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 255, 255, 0.045);
  content: "";
  transform: rotate(45deg);
}

.essentials-brand-panel strong,
.essentials-brand-panel span {
  position: relative;
  z-index: 1;
  display: block;
}

.essentials-brand-panel strong {
  max-width: 180px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.essentials-brand-panel span {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.essentials-visual {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.88), transparent 54%),
    linear-gradient(135deg, rgba(44, 79, 196, 0.08), rgba(44, 79, 196, 0.18));
}

.essentials-visual::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -58px;
  z-index: 1;
  width: 100px;
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.72), rgba(143, 166, 232, 0.3));
  clip-path: polygon(66% 0, 100% 0, 34% 100%, 0 100%);
  content: "";
}

.essentials-visual > img {
  position: absolute;
  right: -5%;
  bottom: -6%;
  width: 110%;
  height: 105%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 32px rgba(7, 22, 45, 0.18));
}

.brand-mark {
  display: block;
  width: 78px;
  height: auto;
  margin: 0 0 18px;
  border-radius: 8px;
  background: #f2f2f2;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(115deg, var(--navy-deep), var(--navy) 58%, #102b64),
    var(--navy);
  color: var(--white);
  text-align: left;
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cta-band::before {
  top: -150px;
  left: -110px;
  width: 370px;
  height: 370px;
  border: 56px solid rgba(255, 255, 255, 0.035);
  transform: rotate(45deg);
}

.cta-band::after {
  right: 0;
  bottom: 0;
  width: 32%;
  height: 100%;
  background: repeating-linear-gradient(132deg, transparent 0 25px, rgba(255, 255, 255, 0.03) 25px 27px);
}

.cta-band > .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.cta-band h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 900;
}

.cta-band .eyebrow {
  color: var(--blue-soft);
}

.cta-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.03rem;
  line-height: 1.6;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-style: normal;
}

.cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-meta svg {
  width: 17px;
  height: 17px;
}

footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-deep);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-brand {
  display: inline-flex;
  width: 248px;
  padding: 7px 10px;
  border-radius: 9px;
  background: #f2f2f2;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal span {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-copy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  text-align: center;
}

/* Legal policy pages */

.legal-page {
  background: var(--tint);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  background:
    radial-gradient(560px 280px at 88% 5%, rgba(83, 116, 232, 0.34), transparent 70%),
    linear-gradient(120deg, var(--navy-deep), var(--navy) 58%, #102b64);
  color: var(--white);
}

.legal-hero::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 52px solid rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.legal-hero .wrap {
  position: relative;
  z-index: 1;
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-back:hover {
  color: var(--white);
}

.legal-back svg {
  width: 18px;
  height: 18px;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 4.6rem);
  font-weight: 900;
}

.legal-hero > .wrap > p {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.68;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: clamp(40px, 6vw, 72px);
  padding: 70px 0 94px;
}

.legal-document {
  min-width: 0;
}

.legal-intro {
  margin-bottom: 14px;
  padding: 26px 28px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.legal-intro p {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-intro strong {
  color: var(--navy);
}

.legal-intro a,
.policy-clauses a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.policy-section {
  padding: 42px 0;
  border-bottom: 1px solid rgba(11, 29, 58, 0.12);
}

.policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.policy-heading .policy-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.policy-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(1.35rem, 2.7vw, 1.75rem);
  font-weight: 900;
}

.policy-clauses {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-clauses li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  color: #3f4857;
  font-size: 0.98rem;
  line-height: 1.68;
}

.clause-number {
  color: var(--blue);
  font-weight: 800;
}

.policy-callout {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(44, 79, 196, 0.22);
  border-radius: 12px;
  background: #edf2ff;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.58;
}

.policy-callout.warning {
  border-color: rgba(186, 40, 40, 0.23);
  background: #fff0f0;
  color: #932626;
}

.policy-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 24px;
  color: #3f4857;
  font-size: 0.98rem;
  line-height: 1.58;
}

.policy-lead {
  margin-bottom: 0;
  color: #3f4857;
  font-size: 0.98rem;
  line-height: 1.68;
}

.policy-fees {
  width: 100%;
  margin: 22px 0 26px;
  overflow: hidden;
  border: 1px solid rgba(11, 29, 58, 0.14);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.policy-fees th,
.policy-fees td {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(11, 29, 58, 0.1);
  text-align: left;
  vertical-align: top;
}

.policy-fees th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-fees td {
  color: #3f4857;
  font-size: 0.92rem;
  line-height: 1.5;
}

.policy-fees tbody tr:last-child td {
  border-bottom: 0;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 24px;
  border: 1px solid rgba(11, 29, 58, 0.1);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.legal-sidebar h2 {
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-policy-links {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
}

.legal-policy-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-policy-links a::after {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.legal-policy-links a:hover,
.legal-policy-links a[aria-current="page"] {
  background: var(--tint);
  color: var(--blue);
}

.legal-contact {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 29, 58, 0.1);
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.62;
}

.legal-contact a {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Responsive */

@media (max-width: 1060px) {
  .brand {
    width: 194px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-account-btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
  }

  .retailer-scroll {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    scroll-padding-inline: 24px;
  }

  .retailer-rail {
    gap: 14px;
  }

  .retailer-logo {
    width: 122px;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 62px;
  }

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

  .hero-background img {
    object-position: 64% center;
  }

  .hero-background::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.9) 45%,
        rgba(255, 255, 255, 0.74) 65%,
        rgba(11, 29, 58, 0.3) 100%
      ),
      linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(11, 29, 58, 0.12));
  }

  .hero-copy {
    max-width: 700px;
  }

  .calc-card {
    width: min(100%, 650px);
  }

  .freight-feature {
    grid-template-columns: 1fr;
  }

  .freight-visual {
    min-height: 440px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .freight-copy::before {
    top: -40px;
    left: 0;
    width: 100%;
    height: 62px;
    clip-path: polygon(0 55%, 100% 0, 100% 35%, 0 100%);
  }

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

  .value-item:nth-child(odd) {
    border-left: 0;
  }

  .services-layout,
  #why-vanguard > .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-section .section-head,
  #why-vanguard .section-head {
    max-width: 700px;
    padding-top: 0;
  }

  .biz-tier-cards {
    grid-template-columns: 1fr;
  }

  .rates-section > .wrap,
  .how-section > .wrap,
  .cta-band > .wrap {
    grid-template-columns: 1fr;
  }

  .rates-section .section-head,
  .how-section .section-head {
    grid-row: auto;
    margin-bottom: 44px;
    padding-top: 0;
  }

  .rate-tabs,
  .rate-panel,
  .fee-note,
  .rates-disclaimer {
    grid-column: 1;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .how-grid::before {
    display: none;
  }

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

  .essentials-brand-panel {
    min-height: 270px;
  }

  .essentials-visual {
    min-height: 420px;
  }

  .cta-band > .wrap {
    gap: 36px;
  }
}

@media (max-width: 940px) {
  :root {
    --nav-height: 76px;
  }

  .brand {
    width: 224px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-account-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - var(--nav-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--gray-light);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    visibility: hidden;
  }

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

  .nav-links a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

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

  .mobile-account-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 18px;
  }

  .nav-links .mobile-account-actions .btn {
    min-height: 48px;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
  }

  .nav-links .mobile-account-actions .account-login {
    border-color: var(--navy);
  }

  .nav-links .mobile-account-actions .btn-primary {
    color: var(--white);
  }

  .route-map {
    grid-template-columns: minmax(0, 1fr) minmax(60px, 0.28fr) minmax(170px, 0.62fr);
    gap: 14px;
  }

  .route-place {
    min-width: 0;
    padding: 12px 10px;
  }

  .route-name {
    font-size: 0.86rem;
  }

  .route-place small {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-sidebar {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding: 52px 0 66px;
  }

  .hero-background::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.92) 43%,
        rgba(255, 255, 255, 0.78) 64%,
        rgba(11, 29, 58, 0.32) 100%
      ),
      linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(11, 29, 58, 0.14));
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.2vw, 3.3rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-note {
    align-items: flex-start;
    border-radius: 14px;
  }

  .calc-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-toggle {
    align-self: stretch;
  }

  .calc-toggle button {
    flex: 1;
  }

  .calc-price-row,
  .calc-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .calc-price-row strong,
  .calc-total > span:last-child {
    max-width: none;
    text-align: left;
  }

  .route-map {
    width: min(100%, 320px);
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-origins {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-line {
    width: 34px;
    height: 34px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .route-line span {
    display: none;
  }

  .route-place {
    width: 100%;
  }

  .route-place small {
    display: block;
  }

  .content-section,
  .rates-section,
  .how-section,
  .cta-band {
    padding: 68px 0;
  }

  section.freight-showcase {
    padding: 68px 0;
  }

  .retailer-strip {
    width: calc(100% - 20px);
    margin-top: -18px;
    padding: 27px 0 17px;
    border-radius: 18px;
  }

  .retailer-strip-heading h2 {
    margin-bottom: 17px;
    font-size: 0.7rem;
  }

  .retailer-scroll {
    padding-right: 16px;
    padding-left: 16px;
    scroll-padding-inline: 16px;
  }

  .retailer-rail {
    gap: 12px;
  }

  .retailer-logo {
    width: 108px;
    height: 62px;
  }

  .retailer-logo img {
    max-height: 40px;
  }

  .retailer-logo-square img {
    max-width: 42px;
    max-height: 42px;
  }

  .retailer-note {
    width: min(100% - 32px, 520px);
    margin-top: 5px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .services-grid,
  .values-grid,
  .rate-grid-2,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    border-radius: 18px;
    clip-path: none;
  }

  .value-item,
  .value-item:first-child {
    min-height: 0;
    padding: 26px 12px 30px;
    border-top: 1px solid rgba(30, 58, 138, 0.12);
    border-left: 0;
  }

  .value-item:first-child {
    border-top: 0;
  }

  .rate-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rate-tab {
    width: 100%;
    border-radius: 10px;
  }

  .rate-panel.active {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .rate-summary {
    grid-template-columns: 1fr;
  }

  .fee-note {
    padding: 20px;
  }

  .freight-visual {
    min-height: 300px;
  }

  .freight-feature {
    border-radius: 22px;
  }

  .freight-copy {
    padding: 36px 26px 40px;
  }

  .freight-visual figcaption {
    bottom: 22px;
    left: 22px;
  }

  .essentials {
    min-height: 0;
    padding: 0;
    text-align: center;
  }

  .essentials-copy {
    padding: 40px 24px 28px;
  }

  .essentials p {
    margin-right: auto;
    margin-left: auto;
  }

  .essentials-brand-panel {
    min-height: 235px;
    align-items: center;
    padding: 34px 24px;
    text-align: center;
  }

  .essentials-brand-panel strong {
    max-width: none;
  }

  .essentials-brand-panel .brand-mark {
    margin-right: auto;
    margin-left: auto;
  }

  .essentials-visual {
    min-height: 330px;
  }

  .essentials-visual::before {
    display: none;
  }

  .how-section .section-head {
    margin-bottom: 38px;
  }

  .how-step {
    display: grid;
    grid-template-columns: 42px 58px minmax(0, 1fr);
    align-items: start;
    gap: 0 12px;
    padding: 0 0 32px;
    text-align: left;
  }

  .how-step::after {
    position: absolute;
    top: 46px;
    bottom: 0;
    left: 20px;
    border-left: 1px dashed rgba(143, 166, 232, 0.42);
    content: "";
  }

  .how-step:last-child::after {
    display: none;
  }

  .how-num,
  .how-icon {
    margin: 0;
  }

  .how-num {
    grid-row: 1 / span 2;
  }

  .how-icon {
    grid-row: 1 / span 2;
  }

  .how-step h3,
  .how-step p {
    grid-column: 3;
  }

  .btn-row .btn {
    width: 100%;
  }

  .footer-legal {
    align-items: stretch;
  }

  .footer-legal span {
    width: 100%;
    margin: 0 0 4px;
    text-align: center;
  }

  .footer-legal a {
    justify-content: center;
  }

  .legal-hero {
    padding: 54px 0 56px;
  }

  .legal-back {
    margin-bottom: 22px;
  }

  .legal-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .legal-layout {
    padding: 46px 0 70px;
  }

  .legal-intro,
  .legal-sidebar {
    padding: 21px;
  }

  .policy-section {
    padding: 34px 0;
  }

  .policy-heading {
    gap: 12px;
  }

  .policy-heading .policy-index {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .policy-heading h2 {
    margin-top: 4px;
  }

  .policy-clauses li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    font-size: 0.94rem;
  }

  .policy-fees {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 188px;
  }

  .calc-card {
    padding: 23px 19px;
    border-radius: 20px;
  }

  .calc-price-box {
    padding: 18px;
  }

  .footer-brand {
    width: min(100%, 238px);
  }
}

@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;
  }

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

@media print {
  .site-nav,
  footer,
  .legal-back,
  .legal-sidebar {
    display: none !important;
  }

  .legal-page,
  body {
    background: var(--white);
  }

  .legal-hero {
    padding: 24px 0;
    background: var(--white);
    color: var(--navy);
  }

  .legal-hero::after {
    display: none;
  }

  .legal-meta span {
    border-color: #b9c0cb;
    background: var(--white);
    color: var(--navy);
  }

  .legal-hero > .wrap > p {
    color: var(--gray);
  }

  .legal-layout {
    display: block;
    padding: 24px 0;
  }

  .legal-intro,
  .policy-fees {
    box-shadow: none;
  }

  .policy-heading,
  .policy-callout,
  .policy-clauses li {
    break-inside: avoid;
  }
}
  color: var(--white);
