:root {
  --green: #006f4f;
  --green-dark: #003f31;
  --green-soft: #e9f4ef;
  --yellow: #f7bc26;
  --red: #d90b2b;
  --cream: #fbf8f1;
  --ink: #18211e;
  --muted: #64716c;
  --line: #dfe5e1;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 63, 49, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

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

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

main {
  overflow-x: clip;
}

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 42px;
  align-items: center;
  height: 40px;
  background: var(--green-dark);
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.announcement-viewport {
  width: 100%;
  max-width: 980px;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
}

.announcement-track {
  display: flex;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.announcement-item {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-icon {
  display: inline-grid;
  flex: 0 0 18px;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1;
}

.announcement-message {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-item:nth-child(3) .announcement-message {
  color: var(--yellow);
  text-transform: none;
}

.announcement-action {
  flex: 0 0 auto;
  margin-left: 5px;
  padding-left: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--yellow);
  white-space: nowrap;
}

.announcement-action:hover {
  color: white;
}

.announcement-arrow,
.announcement-dots button {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.announcement-arrow {
  display: grid;
  width: 42px;
  height: 40px;
  place-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1;
}

.announcement-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.announcement-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
}

.announcement-dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition:
    width 180ms ease,
    background 180ms ease;
}

.announcement-dots button.active {
  width: 17px;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(0, 111, 79, 0.12);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 158px;
  height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  color: #34443e;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(247, 188, 38, 0.7);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(0, 111, 79, 0.22);
}

.button-primary:hover {
  background: #005f44;
}

.button-red {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(217, 11, 43, 0.18);
}

.button-yellow {
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(247, 188, 38, 0.2);
}

.button-full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  min-height: 690px;
  padding: 78px clamp(24px, 7vw, 108px) 88px;
  background:
    radial-gradient(circle at 92% 5%, rgba(247, 188, 38, 0.2), transparent 30%),
    linear-gradient(135deg, #fffdfa 0%, #f6f2e9 100%);
}

.hero::before {
  position: absolute;
  top: 62px;
  right: -90px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(0, 111, 79, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9ce2c8;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 11, 43, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-description {
  max-width: 620px;
  margin: 30px 0 0;
  color: #50605a;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.microcopy {
  margin: 14px 0 0 18px;
  color: #84908c;
  font-size: 12px;
}

.route-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 79, 0.15);
  border-radius: 34px;
  background: var(--green-dark);
  color: white;
  box-shadow: var(--shadow);
}

.route-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.route-top span {
  color: #9ce2c8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-top strong {
  font-size: 14px;
  text-transform: capitalize;
}

.route-map {
  position: relative;
  min-height: 340px;
  padding: 0;
  background:
    radial-gradient(circle at 15% 42%, rgba(156, 226, 200, 0.13), transparent 24%),
    radial-gradient(circle at 88% 61%, rgba(255, 194, 23, 0.11), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.route-map::before,
.route-map::after {
  position: absolute;
  z-index: 0;
  background: rgba(156, 226, 200, 0.11);
  content: "";
  filter: drop-shadow(0 0 20px rgba(156, 226, 200, 0.05));
}

.route-map::before {
  top: 48px;
  left: -18px;
  width: 225px;
  height: 154px;
  border-radius: 56% 44% 63% 37% / 42% 57% 43% 58%;
  clip-path: polygon(0 17%, 22% 4%, 52% 9%, 70% 24%, 95% 28%, 86% 53%, 64% 60%, 54% 88%, 36% 100%, 23% 68%, 4% 57%);
}

.route-map::after {
  right: -30px;
  bottom: 24px;
  width: 190px;
  height: 144px;
  border-radius: 46% 54% 36% 64% / 57% 36% 64% 43%;
  clip-path: polygon(23% 0, 66% 8%, 92% 25%, 100% 52%, 75% 70%, 54% 100%, 31% 84%, 20% 52%, 0 29%);
}

.shipping-landmark {
  position: absolute;
  z-index: 0;
  bottom: 22px;
  display: grid;
  justify-items: center;
  color: rgba(255, 255, 255, 0.13);
}

.shipping-landmark-ny { left: 56px; }
.shipping-landmark-mx { right: 48px; }

.empire-state {
  position: relative;
  display: block;
  width: 29px;
  height: 64px;
  background: currentColor;
  clip-path: polygon(43% 0, 57% 0, 57% 15%, 68% 15%, 68% 30%, 78% 30%, 78% 42%, 91% 42%, 91% 100%, 9% 100%, 9% 42%, 22% 42%, 22% 30%, 32% 30%, 32% 15%, 43% 15%);
}

.empire-state::before {
  position: absolute;
  top: -15px;
  left: 13px;
  width: 3px;
  height: 18px;
  background: currentColor;
  content: "";
}

.bellas-artes {
  position: relative;
  display: block;
  width: 66px;
  height: 45px;
  border-bottom: 5px solid currentColor;
  background: linear-gradient(90deg, transparent 8%, currentColor 9% 15%, transparent 16% 29%, currentColor 30% 36%, transparent 37% 63%, currentColor 64% 70%, transparent 71% 84%, currentColor 85% 91%, transparent 92%);
}

.bellas-artes::before {
  position: absolute;
  top: 2px;
  left: 15px;
  width: 36px;
  height: 24px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
}

.bellas-artes::after {
  position: absolute;
  top: 29px;
  left: 5px;
  width: 56px;
  height: 4px;
  background: currentColor;
  box-shadow: 0 8px 0 currentColor;
  content: "";
}

.shipping-city {
  position: absolute;
  top: 98px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 180px;
}

.shipping-city small {
  margin-top: 17px;
  color: #9ce2c8;
  font-size: 12px;
  font-weight: 700;
}

.shipping-city strong {
  margin-top: 4px;
  font-size: 20px;
}

.shipping-city-mx {
  right: 30px;
  align-items: flex-end;
  text-align: right;
}

.shipping-city-ny { left: 30px; }

.shipping-city-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
}

.shipping-city-mx .shipping-city-check {
  background: var(--yellow);
  color: var(--green-dark);
}

.shipping-route-path {
  position: absolute;
  top: 54px;
  left: 82px;
  right: 82px;
  z-index: 2;
  height: 118px;
  border: 2px dashed rgba(255, 255, 255, 0.68);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 7px rgba(156, 226, 200, 0.28));
}

.shipping-route-plane {
  position: absolute;
  top: -21px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 21px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%) rotate(14deg);
  animation: shipping-plane-travel 4.5s ease-in-out infinite;
}

@keyframes shipping-plane-travel {
  0%,
  100% {
    left: 43%;
    transform: translate(-50%, 7px) rotate(11deg);
  }
  50% {
    left: 57%;
    transform: translate(-50%, -7px) rotate(18deg);
  }
}

.route-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.route-bottom span {
  padding: 18px 24px;
  color: #dcebe5;
  font-size: 12px;
  font-weight: 700;
}

.route-bottom b {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 10px;
}

.route-bottom span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: white;
}

.trust-strip article {
  align-items: center;
  display: flex;
  gap: 15px;
  min-width: 0;
  padding: 27px clamp(18px, 3vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip article > span {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.trust-strip h2 {
  margin: 0;
  font-size: 16px;
}

.trust-strip p {
  margin: 7px 0 0;
  color: #bfe0d4;
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 108px clamp(24px, 7vw, 108px);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.quote-intro h2,
.mexico-return h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  max-width: 600px;
  margin: 0;
}

.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  margin-top: 18px;
}

.service-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-grid article {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfdfc;
}

.process-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.process-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #bfd4cb;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

.process-grid h3 {
  min-height: 54px;
  margin: 34px 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.rates-section {
  background: var(--cream);
}

.weight-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 66px;
}

.weight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 40px rgba(0, 63, 49, 0.05);
}

.weight-card.featured {
  border-color: rgba(247, 188, 38, 0.45);
  background: linear-gradient(145deg, #064c3b 0%, #087356 100%);
  color: white;
  box-shadow: 0 20px 48px rgba(0, 63, 49, 0.2);
}

.rate-label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured .rate-label {
  background: var(--yellow);
  color: var(--green-dark);
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 26px 0 0;
}

.rate-price strong {
  font-size: clamp(54px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.rate-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .rate-price span,
.featured > p {
  color: #ffffff;
}

.weight-card.featured .featured-service-copy {
  color: #ffffff;
}

.featured .rate-price strong {
  color: #ffffff;
}

.rate-includes {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 18px;
  border: 1px solid rgba(0, 111, 79, 0.15);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.25;
}

.rate-includes span {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.weight-card > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.box-rates {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
}

.box-rates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.box-rates-header h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.segmented {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: var(--green-soft);
}

.segmented button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4c625a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.segmented button.active {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 111, 79, 0.18);
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.box-grid.limited {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin: 0 auto;
}

.box-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fcfdfc;
}

.box-shape {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 130px;
  margin-bottom: 24px;
}

.box-shape::before {
  display: block;
  border: 2px solid var(--green);
  border-radius: 5px 5px 9px 9px;
  background:
    linear-gradient(145deg, rgba(247, 188, 38, 0.2), transparent 55%),
    #eee2c8;
  box-shadow: inset -12px -8px 0 rgba(0, 63, 49, 0.06);
  content: "";
}

.box-small::before {
  width: 92px;
  height: 65px;
}

.box-medium::before {
  width: 112px;
  height: 83px;
}

.box-large::before {
  width: 132px;
  height: 92px;
}

.box-xl::before {
  width: 124px;
  height: 110px;
}

.box-shape span {
  position: absolute;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.box-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.box-name-row h4 {
  margin: 0;
  font-size: 17px;
}

.box-name-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.box-name-row .box-price {
  margin: 0;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.box-price-caption {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}

.box-discount {
  margin: 16px 0 0;
  padding: 14px 12px;
  border: 1px solid rgba(0, 111, 79, 0.12);
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.box-discount strong {
  color: var(--red);
  font-size: 13px;
}

.box-availability-note {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 640px;
  margin: 24px auto 0;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff6e0;
  color: #694c08;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
  padding: 112px clamp(24px, 7vw, 108px);
  background:
    radial-gradient(circle at 3% 100%, rgba(247, 188, 38, 0.16), transparent 28%),
    var(--green-dark);
  color: white;
}

.quote-intro {
  position: sticky;
  top: 130px;
  padding-top: 30px;
}

.quote-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: #b9d2c8;
  font-size: 18px;
  line-height: 1.7;
}

.quote-note {
  display: flex;
  gap: 14px;
  max-width: 560px;
  margin-top: 36px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-note > span {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 900;
}

.quote-note p {
  margin: 0;
  color: #c8ded5;
  font-size: 13px;
  line-height: 1.6;
}

.quote-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 32px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.quote-progress {
  display: flex;
  align-items: center;
  max-width: 360px;
  margin: 0 auto 36px;
}

.quote-progress span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: #9aa5a0;
  font-size: 11px;
  font-weight: 900;
}

.quote-progress span.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.quote-progress i {
  flex: 1;
  height: 2px;
  background: var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-card label,
.mode-fieldset {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quote-card label > span,
.mode-fieldset legend {
  color: #394842;
  font-size: 12px;
  font-weight: 800;
}

.quote-card input,
.quote-card select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #d5ded9;
  border-radius: 13px;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
}

.quote-card input:disabled,
.quote-card select:disabled {
  cursor: not-allowed;
  border-color: #e0e5e2;
  background: #edf1ef;
  color: #7e8984;
  opacity: 1;
}

.field-disabled > span {
  color: #7e8984 !important;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 111, 79, 0.1);
}

.area-warning {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: 11px;
  background: #fff5db;
  color: #785a0c;
  font-size: 12px;
  line-height: 1.5;
}

.zip-feedback {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  align-items: center;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid #e2e7e4;
  border-radius: 11px;
  background: #f6f8f7;
  color: #63716b;
  font-size: 12px;
  line-height: 1.5;
}

.zip-feedback.valid,
.zip-feedback.not-required {
  border-color: #b9ddce;
  background: #eaf6f1;
  color: #075b43;
  font-weight: 800;
}

.zip-feedback.mismatch,
.zip-feedback.outside {
  border-color: #f2ccb9;
  background: #fff1e9;
  color: #8a331b;
  font-weight: 700;
}

.zip-feedback a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mode-fieldset {
  margin: 26px 0;
  padding: 0;
  border: 0;
}

.mode-fieldset legend {
  margin-bottom: 10px;
}

.mode-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mode-options button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid #d5ded9;
  border-radius: 15px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.mode-options button.active {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px var(--green);
}

.mode-options strong {
  font-size: 14px;
}

.mode-options span {
  color: var(--muted);
  font-size: 11px;
}

.full-field {
  margin-bottom: 26px;
}

.input-suffix {
  position: relative;
}

.input-suffix > span {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-50%);
}

.full-field small {
  color: var(--muted);
  font-size: 11px;
}

.quote-result {
  padding: 28px;
  border: 1px solid rgba(0, 111, 79, 0.18);
  border-radius: 20px;
  background: var(--green-soft);
  text-align: center;
}

.quote-result > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quote-result > strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
  font-size: 56px;
  letter-spacing: -0.055em;
}

.quote-result > span,
.quote-result > small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.quote-result .button {
  margin-top: 24px;
}

.reset-link {
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.departures-section {
  background: white;
}

.pickup-schedule-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 13px 18px;
  border: 1px solid rgba(0, 111, 79, 0.18);
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pickup-schedule-note span {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 800;
}

.calendar-list {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
}

.calendar-list article {
  display: grid;
  grid-template-columns: 70px 72px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 102px;
  padding: 17px 28px;
  border-bottom: 1px solid var(--line);
}

.calendar-list article:last-child {
  border-bottom: 0;
}

.calendar-list article.next {
  background: var(--green-soft);
}

.calendar-month {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-list article > strong {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.calendar-list h3 {
  margin: 0;
  font-size: 15px;
}

.calendar-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: capitalize;
}

.calendar-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-disclaimer {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.faq-section {
  background: #fffdfa;
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 28px rgba(0, 63, 49, 0.05);
}

.faq-grid details:last-child {
  grid-column: 1 / -1;
}

.faq-grid summary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  flex: 0 0 auto;
  color: var(--green);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.mexico-return {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px clamp(24px, 7vw, 108px);
  background: var(--green);
  color: white;
}

.mexico-return > div {
  max-width: 850px;
}

.mexico-return > div > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c0ded3;
  font-size: 17px;
  line-height: 1.65;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: center;
  padding: 50px clamp(24px, 7vw, 108px) 28px;
  background: #09291f;
  color: white;
}

.footer-brand img {
  width: 150px;
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand p {
  margin: 5px 0 0;
  color: #9dc1b4;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #d5e6df;
  font-size: 12px;
  font-weight: 700;
}

.footer-contact {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #719589;
  font-size: 11px;
}

.developer-credit {
  display: flex;
  grid-column: 1 / -1;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: #8eaca1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.developer-credit-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.developer-credit-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.developer-credit-link:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.developer-credit img {
  display: block;
  width: 112px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: #21a668;
  color: white;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #168352;
  font-size: 10px;
  font-weight: 900;
}

.floating-whatsapp strong {
  font-size: 12px;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    padding-right: 44px;
    padding-left: 44px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.5vw, 72px);
  }

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

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .quote-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 46px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding: 8px 18px;
  }

  .brand img {
    width: 122px;
    height: 52px;
  }

  .site-header .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 66px 24px 58px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 76px);
  }

  .route-visual {
    max-width: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .section,
  .quote-section {
    padding: 80px 24px;
  }

  .split-heading,
  .quote-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .faq-grid details:last-child {
    grid-column: auto;
  }

  .quote-intro {
    position: static;
    padding-top: 0;
  }

  .mexico-return {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 24px;
  }

  .mexico-return .button {
    width: max-content;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 46px 24px 26px;
  }

  .footer-contact {
    grid-column: auto;
    margin: 0;
  }

  .copyright {
    grid-column: auto;
  }

  .developer-credit {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .announcement-bar {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .announcement-arrow {
    width: 34px;
  }

  .announcement-dots {
    display: none;
  }

  .announcement-item {
    gap: 7px;
    padding: 0 5px;
    font-size: 9.5px;
    letter-spacing: 0.02em;
  }

  .announcement-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .announcement-action {
    margin-left: 1px;
    padding-left: 8px;
  }

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

  .process-grid article {
    min-height: auto;
  }

  .developer-credit {
    align-items: center;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
    font-size: 8px;
  }

  .developer-credit img {
    width: 100px;
  }

  .site-header .button {
    width: 44px;
    overflow: hidden;
    padding: 0;
    color: transparent;
    font-size: 0;
  }

  .site-header .button::after {
    color: white;
    content: "WA";
    font-size: 10px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero .eyebrow {
    max-width: 290px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .hero-description {
    font-size: 17px;
  }

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

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

  .text-link {
    text-align: center;
  }

  .microcopy {
    margin-left: 0;
    text-align: center;
  }

  .route-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .route-map {
    min-height: 310px;
  }

  .shipping-route-path {
    top: 50px;
    right: 58px;
    left: 58px;
    height: 106px;
  }

  .shipping-landmark {
    opacity: 0.8;
    transform: scale(0.86);
  }

  .shipping-landmark-ny { left: 42px; }
  .shipping-landmark-mx { right: 34px; }

  .shipping-city {
    top: 92px;
    width: 116px;
  }

  .shipping-city-ny { left: 18px; }
  .shipping-city-mx { right: 18px; }

  .shipping-city strong {
    font-size: 16px;
  }

  .route-bottom {
    grid-template-columns: 1fr;
  }

  .route-bottom span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .quote-intro h2,
  .mexico-return h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .weight-rates,
  .form-grid,
  .mode-options {
    grid-template-columns: 1fr;
  }

  .weight-card {
    min-height: 240px;
  }

  .box-rates {
    padding: 22px;
  }

  .box-rates-header {
    align-items: stretch;
    flex-direction: column;
  }

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

  .segmented button {
    padding: 0 12px;
  }

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

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

  .box-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0 16px;
    align-items: center;
  }

  .box-shape {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 105px;
    margin: 0;
  }

  .box-name-row {
    grid-column: 2;
    grid-row: 1;
  }

  .box-price-caption {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .box-large::before,
  .box-xl::before {
    max-width: 105px;
  }

  .box-discount {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 12px;
  }

  .quote-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .quote-result > strong {
    font-size: 48px;
  }

  .calendar-list article {
    grid-template-columns: 38px 50px 1fr;
    gap: 10px;
    padding: 16px;
  }

  .calendar-list article > strong {
    font-size: 34px;
  }

  .calendar-badge {
    grid-column: 3;
    width: max-content;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    padding: 8px;
  }
}

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

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

  .announcement-track {
    transition: none;
  }
}
